[go: nahoru, domu]

blob: a42d5f34e4cb60bf160be2ad65b9d09a8efe379d [file] [log] [blame]
jam@chromium.org6dba1dd2012-06-26 00:39:451# Copyright (c) 2012 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4#
5# This DEPS file exists so that it can capture the dependenciez of RLZ. This
6# allows external projects to check it out and build it independently from all
7# of chrome.
8
9vars = {
10 "chrev": "@119173"
11}
12
13deps = {
14 "src/base":
15 "http://src.chromium.org/svn/trunk/src/base" + Var("chrev"),
16
17 "src/build":
18 "http://src.chromium.org/svn/trunk/src/build" + Var("chrev"),
19
20 "src/third_party/icu":
21 "http://src.chromium.org/svn/trunk/deps/third_party/icu42" + Var("chrev"),
22
23 "src/third_party/modp_b64":
24 "http://src.chromium.org/svn/trunk/src/third_party/modp_b64" + Var("chrev"),
25
26 "src/third_party/nss":
27 "http://src.chromium.org/svn/trunk/deps/third_party/nss" + Var("chrev"),
28
29 "src/third_party/sqlite":
30 "http://src.chromium.org/svn/trunk/src/third_party/sqlite" + Var("chrev"),
31
32 "src/third_party/wtl":
33 "http://src.chromium.org/svn/trunk/src/third_party/wtl" + Var("chrev"),
34
35 "src/third_party/zlib":
36 "http://src.chromium.org/svn/trunk/src/third_party/zlib" + Var("chrev"),
37
38 "src/testing":
39 "http://src.chromium.org/svn/trunk/src/testing" + Var("chrev"),
40
41 "src/testing/gmock":
42 "http://googlemock.googlecode.com/svn/trunk@374",
43
44 "src/testing/gtest":
45 "http://googletest.googlecode.com/svn/trunk@492",
46
47 "src/tools/gyp":
48 "http://gyp.googlecode.com/svn/trunk@1233",
49
50 "src/tools/win":
51 "http://src.chromium.org/svn/trunk/src/tools/win" + Var("chrev"),
52
53 # If using rlz with chrome's networking library, add it and its dependencies
54 # here.
55}
56
57include_rules = [
58 "+build",
Wenzhao Zangc39cff62018-04-04 21:08:1759 "+chromeos/dbus",
Wenzhao Zang8242fb62018-03-24 01:40:5160 "+chromeos/system",
jam@chromium.org6dba1dd2012-06-26 00:39:4561 "+net", # This is only used when force_rlz_use_chrome_net=1 is passed to gyp.
62 "+third_party/zlib",
63]
64
65hooks = [
66 {
67 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
68 "pattern": ".",
69 "action": ["python", "src/build/gyp_chromium", "src/rlz/rlz.gyp"],
70 }
71]
72