| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 if (is_android) { | 364 if (is_android) { |
| 365 sources += rebase_path( | 365 sources += rebase_path( |
| 366 content_tests_gypi_values.content_browsertests_android_sources, | 366 content_tests_gypi_values.content_browsertests_android_sources, |
| 367 ".", | 367 ".", |
| 368 "//content") | 368 "//content") |
| 369 sources -= | 369 sources -= |
| 370 [ "../browser/battery_status/battery_monitor_impl_browsertest.cc" ] | 370 [ "../browser/battery_status/battery_monitor_impl_browsertest.cc" ] |
| 371 deps += [ | 371 deps += [ |
| 372 "//content/shell/android:content_shell_jni_headers", | 372 "//content/shell/android:content_shell_jni_headers", |
| 373 "//content/shell:content_shell_lib", | 373 "//content/shell:content_shell_lib", |
| 374 "//testing/android/native_test:native_test_util", | 374 "//testing/android/native_test:native_test_support", |
| 375 ] | 375 ] |
| 376 | 376 |
| 377 use_launcher = false | 377 use_launcher = false |
| 378 } | 378 } |
| 379 | 379 |
| 380 if (is_mac) { | 380 if (is_mac) { |
| 381 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] | 381 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] |
| 382 deps += [ | 382 deps += [ |
| 383 # Needed for Content Shell.app's Helper. | 383 # Needed for Content Shell.app's Helper. |
| 384 #"//content/shell:content_shell", #TODO(GYP) enable for mac | 384 #"//content/shell:content_shell", #TODO(GYP) enable for mac |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 "//gpu/blink", | 711 "//gpu/blink", |
| 712 "//testing/gtest", | 712 "//testing/gtest", |
| 713 "//third_party/WebKit/public:blink", | 713 "//third_party/WebKit/public:blink", |
| 714 "//ui/base", | 714 "//ui/base", |
| 715 "//ui/gfx", | 715 "//ui/gfx", |
| 716 "//ui/gfx/geometry", | 716 "//ui/gfx/geometry", |
| 717 "//ui/gl", | 717 "//ui/gl", |
| 718 ] | 718 ] |
| 719 } | 719 } |
| 720 } | 720 } |
| OLD | NEW |