| 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("//tools/grit/repack.gni") | 11 import("//tools/grit/repack.gni") |
| 11 import("//tools/grit/grit_rule.gni") | 12 import("//tools/grit/grit_rule.gni") |
| 12 if (is_android) { | 13 if (is_android) { |
| 13 import("//build/config/android/config.gni") | 14 import("//build/config/android/config.gni") |
| 14 } | 15 } |
| 15 | 16 |
| 16 declare_args() { | 17 declare_args() { |
| 17 content_shell_product_name = "Content Shell" | 18 content_shell_product_name = "Content Shell" |
| 18 content_shell_version = "99.77.34.5" | 19 content_shell_version = "99.77.34.5" |
| 19 } | 20 } |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 "//v8", | 238 "//v8", |
| 238 | 239 |
| 239 #'copy_test_netscape_plugin', TODO(GYP) | 240 #'copy_test_netscape_plugin', TODO(GYP) |
| 240 ] | 241 ] |
| 241 if (enable_plugins) { | 242 if (enable_plugins) { |
| 242 deps += [ | 243 deps += [ |
| 243 "//content/ppapi_plugin", | 244 "//content/ppapi_plugin", |
| 244 "//ppapi:blink_test_plugin", | 245 "//ppapi:blink_test_plugin", |
| 245 ] | 246 ] |
| 246 } | 247 } |
| 248 if (enable_mojo_media != "none") { |
| 249 deps += [ "//media/mojo/services:default_application" ] |
| 250 } |
| 247 | 251 |
| 248 if (is_win) { | 252 if (is_win) { |
| 249 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) | 253 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) |
| 250 sources += [ | 254 sources += [ |
| 251 "common/v8_breakpad_support_win.cc", | 255 "common/v8_breakpad_support_win.cc", |
| 252 "common/v8_breakpad_support_win.h", | 256 "common/v8_breakpad_support_win.h", |
| 253 ] | 257 ] |
| 254 } | 258 } |
| 255 | 259 |
| 256 if (is_linux) { | 260 if (is_linux) { |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 sources = [ | 495 sources = [ |
| 492 "app/shell_content_main.cc", | 496 "app/shell_content_main.cc", |
| 493 "app/shell_content_main.h", | 497 "app/shell_content_main.h", |
| 494 ] | 498 ] |
| 495 | 499 |
| 496 deps = [ | 500 deps = [ |
| 497 ":content_shell_lib", | 501 ":content_shell_lib", |
| 498 ] | 502 ] |
| 499 } | 503 } |
| 500 } | 504 } |
| OLD | NEW |