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

Side by Side Diff: content/shell/BUILD.gn

Issue 1649933002: [Chromecast] Hook up mojo media pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed link error for enable_mojo_media=utility config Created 4 years, 10 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 "//v8", 237 "//v8",
238 238
239 #'copy_test_netscape_plugin', TODO(GYP) 239 #'copy_test_netscape_plugin', TODO(GYP)
240 ] 240 ]
241 if (enable_plugins) { 241 if (enable_plugins) {
242 deps += [ 242 deps += [
243 "//content/ppapi_plugin", 243 "//content/ppapi_plugin",
244 "//ppapi:blink_test_plugin", 244 "//ppapi:blink_test_plugin",
245 ] 245 ]
246 } 246 }
247 if (enable_mojo_media != "none") {
248 deps += [ "//media/mojo/services:default_application" ]
249 }
247 250
248 if (is_win) { 251 if (is_win) {
249 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) 252 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP)
250 sources += [ 253 sources += [
251 "common/v8_breakpad_support_win.cc", 254 "common/v8_breakpad_support_win.cc",
252 "common/v8_breakpad_support_win.h", 255 "common/v8_breakpad_support_win.h",
253 ] 256 ]
254 } 257 }
255 258
256 if (is_linux) { 259 if (is_linux) {
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 sources = [ 494 sources = [
492 "app/shell_content_main.cc", 495 "app/shell_content_main.cc",
493 "app/shell_content_main.h", 496 "app/shell_content_main.h",
494 ] 497 ]
495 498
496 deps = [ 499 deps = [
497 ":content_shell_lib", 500 ":content_shell_lib",
498 ] 501 ]
499 } 502 }
500 } 503 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698