| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 ] | 490 ] |
| 491 | 491 |
| 492 libs = [ "oleacc.lib" ] | 492 libs = [ "oleacc.lib" ] |
| 493 } | 493 } |
| 494 | 494 |
| 495 if (is_android) { | 495 if (is_android) { |
| 496 sources += rebase_path( | 496 sources += rebase_path( |
| 497 content_tests_gypi_values.content_browsertests_android_sources, | 497 content_tests_gypi_values.content_browsertests_android_sources, |
| 498 ".", | 498 ".", |
| 499 "//content") | 499 "//content") |
| 500 sources -= | 500 sources -= [ |
| 501 [ "../browser/battery_status/battery_monitor_impl_browsertest.cc" ] | 501 "../browser/battery_status/battery_monitor_impl_browsertest.cc", |
| 502 "../browser/media/session/media_session_delegate_default_browsertest.cc", |
| 503 ] |
| 502 deps += [ | 504 deps += [ |
| 503 ":content_browsertests_java", | 505 ":content_browsertests_java", |
| 504 ":content_browsertests_manifest", | 506 ":content_browsertests_manifest", |
| 505 "//content/shell:content_shell_lib", | 507 "//content/shell:content_shell_lib", |
| 506 "//content/shell/android:content_shell_assets", | 508 "//content/shell/android:content_shell_assets", |
| 507 "//content/shell/android:content_shell_jni_headers", | 509 "//content/shell/android:content_shell_jni_headers", |
| 508 "//testing/android/native_test:native_test_support", | 510 "//testing/android/native_test:native_test_support", |
| 509 ] | 511 ] |
| 510 deps -= [ "//device/battery" ] | 512 deps -= [ "//device/battery" ] |
| 511 android_manifest = | 513 android_manifest = |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 "//gpu:test_support", | 929 "//gpu:test_support", |
| 928 "//media/base/android", | 930 "//media/base/android", |
| 929 "//media/base/android:media_java", | 931 "//media/base/android:media_java", |
| 930 "//media/capture/video/android:capture_java", | 932 "//media/capture/video/android:capture_java", |
| 931 "//testing/gmock", | 933 "//testing/gmock", |
| 932 "//ui/android:ui_java", | 934 "//ui/android:ui_java", |
| 933 ] | 935 ] |
| 934 } | 936 } |
| 935 } | 937 } |
| 936 } | 938 } |
| OLD | NEW |