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

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

Issue 1852523003: Remove NPAPI test plugin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_last_plugin_layout_tests
Patch Set: fix isolate Created 4 years, 8 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 | « content/content_shell.gypi ('k') | content/shell/tools/plugin/PluginObject.h » ('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 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 "//ui/base", 247 "//ui/base",
248 "//ui/base/ime", 248 "//ui/base/ime",
249 "//ui/events:events_base", 249 "//ui/events:events_base",
250 "//ui/gfx", 250 "//ui/gfx",
251 "//ui/gfx/geometry", 251 "//ui/gfx/geometry",
252 "//ui/gfx/ipc", 252 "//ui/gfx/ipc",
253 "//ui/gfx/ipc/skia", 253 "//ui/gfx/ipc/skia",
254 "//ui/gl", 254 "//ui/gl",
255 "//url", 255 "//url",
256 "//v8", 256 "//v8",
257
258 #'copy_test_netscape_plugin', TODO(GYP)
259 ] 257 ]
260 if (enable_plugins) { 258 if (enable_plugins) {
261 deps += [ 259 deps += [
262 "//content/ppapi_plugin", 260 "//content/ppapi_plugin",
263 "//ppapi:blink_deprecated_test_plugin", 261 "//ppapi:blink_deprecated_test_plugin",
264 "//ppapi:blink_test_plugin", 262 "//ppapi:blink_test_plugin",
265 "//ppapi/shared_impl", 263 "//ppapi/shared_impl",
266 ] 264 ]
267 } 265 }
268 if (mojo_media_host == "browser") { 266 if (mojo_media_host == "browser") {
(...skipping 20 matching lines...) Expand all
289 # the tests that needed it had this as a dep instead of adding it here. 287 # the tests that needed it had this as a dep instead of adding it here.
290 data_deps = [ 288 data_deps = [
291 "//tools/xdisplaycheck", 289 "//tools/xdisplaycheck",
292 ] 290 ]
293 291
294 deps += [ "//ui/events/devices" ] 292 deps += [ "//ui/events/devices" ]
295 } 293 }
296 294
297 if (is_android) { 295 if (is_android) {
298 deps += [ "//content/shell/android:content_shell_jni_headers" ] 296 deps += [ "//content/shell/android:content_shell_jni_headers" ]
299 #deps -= [ "copy_test_netscape_plugin" ] TODO(GYP)
300 } 297 }
301 298
302 if (is_posix && !is_mac) { 299 if (is_posix && !is_mac) {
303 deps += [ 300 deps += [
304 "//components/crash/content/app", 301 "//components/crash/content/app",
305 "//components/crash/content/browser", 302 "//components/crash/content/browser",
306 ] 303 ]
307 } 304 }
308 305
309 if (use_aura) { 306 if (use_aura) {
(...skipping 17 matching lines...) Expand all
327 } else { 324 } else {
328 sources += [ "browser/shell_aura.cc" ] 325 sources += [ "browser/shell_aura.cc" ]
329 } 326 }
330 } else { 327 } else {
331 sources -= [ 328 sources -= [
332 "browser/shell_platform_data_aura.cc", 329 "browser/shell_platform_data_aura.cc",
333 "browser/shell_platform_data_aura.h", 330 "browser/shell_platform_data_aura.h",
334 ] 331 ]
335 } 332 }
336 333
337 # The test plugin relies on X11.
338 if (is_linux && !use_x11) {
339 #deps -= [ 'copy_test_netscape_plugin' ] TODO(GYP)
340 }
341
342 if (is_chromeos) { 334 if (is_chromeos) {
343 deps += [ 335 deps += [
344 "//chromeos", 336 "//chromeos",
345 "//ui/wm:test_support", 337 "//ui/wm:test_support",
346 ] 338 ]
347 } 339 }
348 340
349 if (is_linux) { 341 if (is_linux) {
350 deps += [ "//third_party/freetype2" ] 342 deps += [ "//third_party/freetype2" ]
351 } 343 }
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 ":content_shell_lib", 526 ":content_shell_lib",
535 ] 527 ]
536 } 528 }
537 } 529 }
538 530
539 mojom("mojo_bindings") { 531 mojom("mojo_bindings") {
540 sources = [ 532 sources = [
541 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", 533 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
542 ] 534 ]
543 } 535 }
OLDNEW
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/tools/plugin/PluginObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698