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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 | 372 |
373 if (use_aura && !is_win) { | 373 if (use_aura && !is_win) { |
374 deps += [ "//ui/events:test_support" ] | 374 deps += [ "//ui/events:test_support" ] |
375 } | 375 } |
376 | 376 |
377 if (!use_aura && !is_mac) { | 377 if (!use_aura && !is_mac) { |
378 sources -= | 378 sources -= |
379 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] | 379 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] |
380 } | 380 } |
381 | 381 |
382 if (!is_android && !is_ios && !is_linux) { | |
383 # Npapi test plugin doesn't build on Android or iOS. | |
384 #data_deps += [ 'copy_npapi_test_plugin' ] TODO(GYP) | |
385 } | |
386 | |
387 if (enable_webrtc) { | 382 if (enable_webrtc) { |
388 sources += rebase_path( | 383 sources += rebase_path( |
389 content_tests_gypi_values.content_browsertests_webrtc_sources, | 384 content_tests_gypi_values.content_browsertests_webrtc_sources, |
390 ".", | 385 ".", |
391 "//content") | 386 "//content") |
392 deps += [ "//testing/perf" ] | 387 deps += [ "//testing/perf" ] |
393 } | 388 } |
394 | 389 |
395 if (enable_plugins) { | 390 if (enable_plugins) { |
396 sources += rebase_path( | 391 sources += rebase_path( |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 "//gpu/blink", | 690 "//gpu/blink", |
696 "//testing/gtest", | 691 "//testing/gtest", |
697 "//third_party/WebKit/public:blink", | 692 "//third_party/WebKit/public:blink", |
698 "//ui/base", | 693 "//ui/base", |
699 "//ui/gfx", | 694 "//ui/gfx", |
700 "//ui/gfx/geometry", | 695 "//ui/gfx/geometry", |
701 "//ui/gl", | 696 "//ui/gl", |
702 ] | 697 ] |
703 } | 698 } |
704 } | 699 } |
OLD | NEW |