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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |