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/manifest.gni") | 8 import("//build/config/win/manifest.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 "//ui/gfx", | 230 "//ui/gfx", |
231 "//ui/gfx/geometry", | 231 "//ui/gfx/geometry", |
232 "//ui/gfx/ipc", | 232 "//ui/gfx/ipc", |
233 "//ui/gl", | 233 "//ui/gl", |
234 "//url", | 234 "//url", |
235 "//v8", | 235 "//v8", |
236 | 236 |
237 #'copy_test_netscape_plugin', TODO(GYP) | 237 #'copy_test_netscape_plugin', TODO(GYP) |
238 ] | 238 ] |
239 if (enable_plugins) { | 239 if (enable_plugins) { |
240 deps += [ "//content/ppapi_plugin" ] | 240 deps += [ |
| 241 "//content/ppapi_plugin", |
| 242 "//ppapi:blink_test_plugin", |
| 243 ] |
241 } | 244 } |
242 | 245 |
243 if (is_win) { | 246 if (is_win) { |
244 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) | 247 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) |
245 sources += [ | 248 sources += [ |
246 "common/v8_breakpad_support_win.cc", | 249 "common/v8_breakpad_support_win.cc", |
247 "common/v8_breakpad_support_win.h", | 250 "common/v8_breakpad_support_win.h", |
248 ] | 251 ] |
249 } | 252 } |
250 | 253 |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 sources = [ | 485 sources = [ |
483 "app/shell_content_main.cc", | 486 "app/shell_content_main.cc", |
484 "app/shell_content_main.h", | 487 "app/shell_content_main.h", |
485 ] | 488 ] |
486 | 489 |
487 deps = [ | 490 deps = [ |
488 ":content_shell_lib", | 491 ":content_shell_lib", |
489 ] | 492 ] |
490 } | 493 } |
491 } | 494 } |
OLD | NEW |