| 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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 deps += [ "//chromeos" ] | 575 deps += [ "//chromeos" ] |
| 576 } | 576 } |
| 577 if (is_android) { | 577 if (is_android) { |
| 578 sources += rebase_path( | 578 sources += rebase_path( |
| 579 content_tests_gypi_values.content_unittests_android_sources, | 579 content_tests_gypi_values.content_unittests_android_sources, |
| 580 ".", | 580 ".", |
| 581 "//content") | 581 "//content") |
| 582 sources -= [ | 582 sources -= [ |
| 583 "../browser/geolocation/network_location_provider_unittest.cc", | 583 "../browser/geolocation/network_location_provider_unittest.cc", |
| 584 "../browser/geolocation/wifi_data_provider_common_unittest.cc", | 584 "../browser/geolocation/wifi_data_provider_common_unittest.cc", |
| 585 "../browser/renderer_host/begin_frame_observer_proxy_unittest.cc", |
| 585 "../browser/webui/url_data_manager_backend_unittest.cc", | 586 "../browser/webui/url_data_manager_backend_unittest.cc", |
| 586 ] | 587 ] |
| 587 deps += [ "//testing/android/native_test:native_test_native_code" ] | 588 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 588 } | 589 } |
| 589 if (!is_android && !is_ios) { | 590 if (!is_android && !is_ios) { |
| 590 deps += [ "//third_party/libvpx" ] | 591 deps += [ "//third_party/libvpx" ] |
| 591 } | 592 } |
| 592 | 593 |
| 593 if (use_aura) { | 594 if (use_aura) { |
| 594 deps += [ | 595 deps += [ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 "//content/public/common", | 707 "//content/public/common", |
| 707 "//testing/gtest", | 708 "//testing/gtest", |
| 708 "//third_party/WebKit/public:blink", | 709 "//third_party/WebKit/public:blink", |
| 709 "//ui/base", | 710 "//ui/base", |
| 710 "//ui/gfx", | 711 "//ui/gfx", |
| 711 "//ui/gfx/geometry", | 712 "//ui/gfx/geometry", |
| 712 "//ui/gl", | 713 "//ui/gl", |
| 713 ] | 714 ] |
| 714 } | 715 } |
| 715 } | 716 } |
| OLD | NEW |