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

Side by Side Diff: BUILD.gn

Issue 495353003: Move WebMediaPlayerImpl and its dependencies to media/blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 3 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
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "//extensions/common/api", 44 "//extensions/common/api",
45 "//extensions/renderer", 45 "//extensions/renderer",
46 "//gin", 46 "//gin",
47 "//gpu", 47 "//gpu",
48 "//google_apis", 48 "//google_apis",
49 "//google_apis/gcm", 49 "//google_apis/gcm",
50 "//ipc", 50 "//ipc",
51 "//ipc/mojo", 51 "//ipc/mojo",
52 "//jingle:notifier", 52 "//jingle:notifier",
53 "//media", 53 "//media",
54 "//media/blink",
54 "//media/cast", 55 "//media/cast",
55 "//mojo", 56 "//mojo",
56 "//net", 57 "//net",
57 "//pdf", 58 "//pdf",
58 "//ppapi:ppapi_c", 59 "//ppapi:ppapi_c",
59 "//printing", 60 "//printing",
60 "//remoting/client/plugin", 61 "//remoting/client/plugin",
61 "//sandbox", 62 "//sandbox",
62 "//sdch", 63 "//sdch",
63 "//skia", 64 "//skia",
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 "//chrome/renderer", # Blocked on content. 188 "//chrome/renderer", # Blocked on content.
188 "//chrome/service", # Blocked on content. 189 "//chrome/service", # Blocked on content.
189 "//chrome/utility", # Blocked on content. 190 "//chrome/utility", # Blocked on content.
190 "//content", 191 "//content",
191 "//content/shell:content_shell", # Blocked on content. 192 "//content/shell:content_shell", # Blocked on content.
192 "//content/test:test_support", # Blocked on content. 193 "//content/test:test_support", # Blocked on content.
193 "//extensions/browser", 194 "//extensions/browser",
194 "//extensions/common", 195 "//extensions/common",
195 "//extensions/common/api", 196 "//extensions/common/api",
196 "//extensions/renderer", 197 "//extensions/renderer",
198 "//media/blink", # Blocked on blink
197 "//pdf", # Not compiled on Android in GYP yet, either. 199 "//pdf", # Not compiled on Android in GYP yet, either.
198 "//ppapi:ppapi_c", 200 "//ppapi:ppapi_c",
199 "//sandbox", 201 "//sandbox",
200 "//third_party/libusb", 202 "//third_party/libusb",
201 "//ui/keyboard", # Blocked on content. 203 "//ui/keyboard", # Blocked on content.
202 204
203 # Blocked on neon stuff in vp8 205 # Blocked on neon stuff in vp8
204 "//third_party/WebKit/public:all_blink", 206 "//third_party/WebKit/public:all_blink",
205 207
206 # Seems to not be compiled on Android. Otherwise it will need a config.h. 208 # Seems to not be compiled on Android. Otherwise it will need a config.h.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 ] 241 ]
240 } 242 }
241 243
242 # Non-mobile builds. 244 # Non-mobile builds.
243 if (!is_android && !is_ios) { 245 if (!is_android && !is_ios) {
244 deps += [ 246 deps += [
245 "//device/usb", 247 "//device/usb",
246 ] 248 ]
247 } 249 }
248 } 250 }
OLDNEW
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698