| OLD | NEW |
| 1 # DEPS files look like -*- Python -*- | 1 # DEPS files look like -*- Python -*- |
| 2 | 2 |
| 3 vars = { | 3 vars = { |
| 4 # When possible, keep chrome_rev and chromebinaries_rev at the same | 4 # When possible, keep chrome_rev and chromebinaries_rev at the same |
| 5 # value. chromebinaries_rev should match LKGR so that we can download | 5 # value. chromebinaries_rev should match LKGR so that we can download |
| 6 # the binaries, but sometimes chrome_rev needs to be more recent to get | 6 # the binaries, but sometimes chrome_rev needs to be more recent to get |
| 7 # source changes when LKGR is lagging too far back. | 7 # source changes when LKGR is lagging too far back. |
| 8 "chromebinaries_rev": "147940", | 8 "chromebinaries_rev": "147940", |
| 9 "chrome_rev": "147940", | 9 "chrome_rev": "147940", |
| 10 # NOTE! These four should match their counterparts in chromium/src/DEPS. | 10 # NOTE! These four should match their counterparts in chromium/src/DEPS. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 deps = { | 29 deps = { |
| 30 "base": | 30 "base": |
| 31 Var("chromium_trunk") + "/src/base@" + Var("chrome_rev"), | 31 Var("chromium_trunk") + "/src/base@" + Var("chrome_rev"), |
| 32 "build": | 32 "build": |
| 33 Var("chromium_trunk") + "/src/build@" + Var("chrome_rev"), | 33 Var("chromium_trunk") + "/src/build@" + Var("chrome_rev"), |
| 34 "chrome/test/pyautolib": | 34 "chrome/test/pyautolib": |
| 35 Var("chromium_trunk") + "/src/chrome/test/pyautolib@" + Var("chrome_rev"), | 35 Var("chromium_trunk") + "/src/chrome/test/pyautolib@" + Var("chrome_rev"), |
| 36 "gpu": | 36 "gpu": |
| 37 Var("chromium_trunk") + "/src/gpu@" + Var("chrome_rev"), | 37 Var("chromium_trunk") + "/src/gpu@" + Var("chrome_rev"), |
| 38 "media": |
| 39 Var("chromium_trunk") + "/src/media@" + Var("chrome_rev"), |
| 38 "native_client/tools/perf_expectations": | 40 "native_client/tools/perf_expectations": |
| 39 Var("chromium_trunk") + "/src/tools/perf_expectations@" + Var("chrome_rev"), | 41 Var("chromium_trunk") + "/src/tools/perf_expectations@" + Var("chrome_rev"), |
| 40 "net/tools/testserver": | 42 "net/tools/testserver": |
| 41 Var("chromium_trunk") + "/src/net/tools/testserver@" + Var("chrome_rev"), | 43 Var("chromium_trunk") + "/src/net/tools/testserver@" + Var("chrome_rev"), |
| 42 "ppapi": | 44 "ppapi": |
| 43 Var("chromium_trunk") + "/src/ppapi@" + Var("chrome_rev"), | 45 Var("chromium_trunk") + "/src/ppapi@" + Var("chrome_rev"), |
| 44 "testing/gtest": | 46 "testing/gtest": |
| 45 "http://googletest.googlecode.com/svn/trunk@" + Var("gtest_rev"), | 47 "http://googletest.googlecode.com/svn/trunk@" + Var("gtest_rev"), |
| 46 "third_party": | 48 "third_party": |
| 47 Var("native_client_trunk") + "/src/third_party@" + Var("tools_rev"), | 49 Var("native_client_trunk") + "/src/third_party@" + Var("tools_rev"), |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 { | 123 { |
| 122 "pattern": ".", | 124 "pattern": ".", |
| 123 "action": ["python", "native_client/build/gyp_nacl"], | 125 "action": ["python", "native_client/build/gyp_nacl"], |
| 124 }, | 126 }, |
| 125 ] | 127 ] |
| 126 | 128 |
| 127 include_rules = [ | 129 include_rules = [ |
| 128 "+native_client/src/include", | 130 "+native_client/src/include", |
| 129 "+gtest", | 131 "+gtest", |
| 130 ] | 132 ] |
| OLD | NEW |