OLD | NEW |
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("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 "//v8", | 238 "//v8", |
239 | 239 |
240 #'copy_test_netscape_plugin', TODO(GYP) | 240 #'copy_test_netscape_plugin', TODO(GYP) |
241 ] | 241 ] |
242 if (enable_plugins) { | 242 if (enable_plugins) { |
243 deps += [ | 243 deps += [ |
244 "//content/ppapi_plugin", | 244 "//content/ppapi_plugin", |
245 "//ppapi:blink_test_plugin", | 245 "//ppapi:blink_test_plugin", |
246 ] | 246 ] |
247 } | 247 } |
248 if (enable_mojo_media != "none") { | 248 if (enable_mojo_media == "browser") { |
249 deps += [ "//media/mojo/services:default_application" ] | 249 deps += [ "//media/mojo/services:application" ] |
250 } | 250 } |
251 | 251 |
252 if (is_win) { | 252 if (is_win) { |
253 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) | 253 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) |
254 sources += [ | 254 sources += [ |
255 "common/v8_breakpad_support_win.cc", | 255 "common/v8_breakpad_support_win.cc", |
256 "common/v8_breakpad_support_win.h", | 256 "common/v8_breakpad_support_win.h", |
257 ] | 257 ] |
258 } | 258 } |
259 | 259 |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 sources = [ | 495 sources = [ |
496 "app/shell_content_main.cc", | 496 "app/shell_content_main.cc", |
497 "app/shell_content_main.h", | 497 "app/shell_content_main.h", |
498 ] | 498 ] |
499 | 499 |
500 deps = [ | 500 deps = [ |
501 ":content_shell_lib", | 501 ":content_shell_lib", |
502 ] | 502 ] |
503 } | 503 } |
504 } | 504 } |
OLD | NEW |