| 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 10 | 11 |
| 11 content_tests_gypi_values = | 12 content_tests_gypi_values = |
| 12 exec_script("//build/gypi_to_gn.py", | 13 exec_script("//build/gypi_to_gn.py", |
| 13 [ | 14 [ |
| 14 rebase_path("../content_tests.gypi"), | 15 rebase_path("../content_tests.gypi"), |
| 15 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", | 16 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", |
| 16 ], | 17 ], |
| 17 "scope", | 18 "scope", |
| 18 [ "../content_tests.gypi" ]) | 19 [ "../content_tests.gypi" ]) |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 content_tests_gypi_values.content_browsertests_android_sources, | 357 content_tests_gypi_values.content_browsertests_android_sources, |
| 357 ".", | 358 ".", |
| 358 "//content") | 359 "//content") |
| 359 sources -= | 360 sources -= |
| 360 [ "../browser/battery_status/battery_monitor_impl_browsertest.cc" ] | 361 [ "../browser/battery_status/battery_monitor_impl_browsertest.cc" ] |
| 361 deps += [ | 362 deps += [ |
| 362 "//content/shell/android:content_shell_jni_headers", | 363 "//content/shell/android:content_shell_jni_headers", |
| 363 "//content/shell:content_shell_lib", | 364 "//content/shell:content_shell_lib", |
| 364 "//testing/android:native_test_util", | 365 "//testing/android:native_test_util", |
| 365 ] | 366 ] |
| 367 |
| 368 use_launcher = false |
| 366 } | 369 } |
| 367 | 370 |
| 368 if (is_mac) { | 371 if (is_mac) { |
| 369 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] | 372 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] |
| 370 deps += [ | 373 deps += [ |
| 371 # Needed for Content Shell.app's Helper. | 374 # Needed for Content Shell.app's Helper. |
| 372 #"//content/shell:content_shell", #TODO(GYP) enable for mac | 375 #"//content/shell:content_shell", #TODO(GYP) enable for mac |
| 373 ] | 376 ] |
| 374 } | 377 } |
| 375 | 378 |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 "//content/public/common", | 689 "//content/public/common", |
| 687 "//testing/gtest", | 690 "//testing/gtest", |
| 688 "//third_party/WebKit/public:blink", | 691 "//third_party/WebKit/public:blink", |
| 689 "//ui/base", | 692 "//ui/base", |
| 690 "//ui/gfx", | 693 "//ui/gfx", |
| 691 "//ui/gfx/geometry", | 694 "//ui/gfx/geometry", |
| 692 "//ui/gl", | 695 "//ui/gl", |
| 693 ] | 696 ] |
| 694 } | 697 } |
| 695 } | 698 } |
| OLD | NEW |