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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 "//ui/base", | 304 "//ui/base", |
305 "//ui/base/ime", | 305 "//ui/base/ime", |
306 "//ui/gfx", | 306 "//ui/gfx", |
307 "//ui/gfx/geometry", | 307 "//ui/gfx/geometry", |
308 "//ui/gl", | 308 "//ui/gl", |
309 "//ui/resources", | 309 "//ui/resources", |
310 "//ui/shell_dialogs", | 310 "//ui/shell_dialogs", |
311 "//ui/snapshot", | 311 "//ui/snapshot", |
312 ] | 312 ] |
313 | 313 |
| 314 data_deps = [] |
| 315 |
314 if (!is_chromeos) { | 316 if (!is_chromeos) { |
315 sources -= | 317 sources -= |
316 [ "../browser/web_contents/touch_editable_impl_aura_browsertest.cc" ] | 318 [ "../browser/web_contents/touch_editable_impl_aura_browsertest.cc" ] |
317 } | 319 } |
318 | 320 |
319 if (is_win) { | 321 if (is_win) { |
320 sources += rebase_path( | 322 sources += rebase_path( |
321 content_tests_gypi_values.content_browsertests_win_sources, | 323 content_tests_gypi_values.content_browsertests_win_sources, |
322 ".", | 324 ".", |
323 "//content") | 325 "//content") |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 | 386 |
385 if (use_aura && !is_win) { | 387 if (use_aura && !is_win) { |
386 deps += [ "//ui/events:test_support" ] | 388 deps += [ "//ui/events:test_support" ] |
387 } | 389 } |
388 | 390 |
389 if (!use_aura && !is_mac) { | 391 if (!use_aura && !is_mac) { |
390 sources -= | 392 sources -= |
391 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] | 393 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] |
392 } | 394 } |
393 | 395 |
| 396 if (use_aura && !is_win) { |
| 397 sources -= [ "../browser/plugin_browsertest.cc" ] |
| 398 } |
| 399 |
394 if (!is_android && !is_ios && !is_linux) { | 400 if (!is_android && !is_ios && !is_linux) { |
395 # Npapi test plugin doesn't build on Android or iOS. | 401 # Npapi test plugin doesn't build on Android or iOS. |
396 #data_deps += [ 'copy_npapi_test_plugin' ] TODO(GYP) | 402 #data_deps += [ 'copy_npapi_test_plugin' ] TODO(GYP) |
397 } | 403 } |
398 | 404 |
399 if (enable_webrtc) { | 405 if (enable_webrtc) { |
400 sources += rebase_path( | 406 sources += rebase_path( |
401 content_tests_gypi_values.content_browsertests_webrtc_sources, | 407 content_tests_gypi_values.content_browsertests_webrtc_sources, |
402 ".", | 408 ".", |
403 "//content") | 409 "//content") |
404 deps += [ "//testing/perf" ] | 410 deps += [ "//testing/perf" ] |
405 } | 411 } |
406 | 412 |
407 if (enable_plugins) { | 413 if (enable_plugins) { |
408 sources += rebase_path( | 414 sources += rebase_path( |
409 content_tests_gypi_values.content_browsertests_plugins_sources, | 415 content_tests_gypi_values.content_browsertests_plugins_sources, |
410 ".", | 416 ".", |
411 "//content") | 417 "//content") |
412 #deps += [ "//ppapi:ppapi_tests" ] # TODO(GYP) | 418 data_deps += [ "//ppapi:ppapi_tests" ] |
413 } | 419 } |
414 | 420 |
415 if (enable_web_speech) { | 421 if (enable_web_speech) { |
416 sources += rebase_path( | 422 sources += rebase_path( |
417 content_tests_gypi_values.content_browsertests_speech_sources, | 423 content_tests_gypi_values.content_browsertests_speech_sources, |
418 ".", | 424 ".", |
419 "//content") | 425 "//content") |
420 } | 426 } |
421 | 427 |
422 if (!is_chrome_branded) { | 428 if (!is_chrome_branded) { |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
696 "//content/public/common", | 702 "//content/public/common", |
697 "//testing/gtest", | 703 "//testing/gtest", |
698 "//third_party/WebKit/public:blink", | 704 "//third_party/WebKit/public:blink", |
699 "//ui/base", | 705 "//ui/base", |
700 "//ui/gfx", | 706 "//ui/gfx", |
701 "//ui/gfx/geometry", | 707 "//ui/gfx/geometry", |
702 "//ui/gl", | 708 "//ui/gl", |
703 ] | 709 ] |
704 } | 710 } |
705 } | 711 } |
OLD | NEW |