OLD | NEW |
(Empty) | |
| 1 # 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 vars = { |
| 6 "chrev": "@119173" |
| 7 } |
| 8 |
| 9 deps = { |
| 10 "src/base": |
| 11 "http://src.chromium.org/svn/trunk/src/base" + Var("chrev"), |
| 12 |
| 13 "src/build": |
| 14 "http://src.chromium.org/svn/trunk/src/build" + Var("chrev"), |
| 15 |
| 16 "src/third_party/icu": |
| 17 "http://src.chromium.org/svn/trunk/deps/third_party/icu42" + Var("chrev"), |
| 18 |
| 19 "src/third_party/modp_b64": |
| 20 "http://src.chromium.org/svn/trunk/src/third_party/modp_b64" + Var("chrev"), |
| 21 |
| 22 "src/third_party/nss": |
| 23 "http://src.chromium.org/svn/trunk/deps/third_party/nss" + Var("chrev"), |
| 24 |
| 25 "src/third_party/sqlite": |
| 26 "http://src.chromium.org/svn/trunk/src/third_party/sqlite" + Var("chrev"), |
| 27 |
| 28 "src/third_party/wtl": |
| 29 "http://src.chromium.org/svn/trunk/src/third_party/wtl" + Var("chrev"), |
| 30 |
| 31 "src/third_party/zlib": |
| 32 "http://src.chromium.org/svn/trunk/src/third_party/zlib" + Var("chrev"), |
| 33 |
| 34 "src/testing": |
| 35 "http://src.chromium.org/svn/trunk/src/testing" + Var("chrev"), |
| 36 |
| 37 "src/testing/gmock": |
| 38 "http://googlemock.googlecode.com/svn/trunk@374", |
| 39 |
| 40 "src/testing/gtest": |
| 41 "http://googletest.googlecode.com/svn/trunk@492", |
| 42 |
| 43 "src/tools/gyp": |
| 44 "http://gyp.googlecode.com/svn/trunk@1233", |
| 45 |
| 46 "src/tools/win": |
| 47 "http://src.chromium.org/svn/trunk/src/tools/win" + Var("chrev"), |
| 48 |
| 49 # If using rlz with chrome's networking library, add it and its dependencies |
| 50 # here. |
| 51 } |
| 52 |
| 53 include_rules = [ |
| 54 "+build", |
| 55 "+net", # This is only used when force_rlz_use_chrome_net=1 is passed to gyp. |
| 56 "+third_party/zlib", |
| 57 ] |
| 58 |
| 59 hooks = [ |
| 60 { |
| 61 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 62 "pattern": ".", |
| 63 "action": ["python", "src/build/gyp_chromium", "src/rlz/rlz.gyp"], |
| 64 } |
| 65 ] |
| 66 |
OLD | NEW |