Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: DEPS

Issue 10829369: Add media dep to NaCl in preparation of shared target. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698