| 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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 "//testing/android/native_test:native_test_support", | 535 "//testing/android/native_test:native_test_support", |
| 536 ] | 536 ] |
| 537 deps -= [ "//device/battery" ] | 537 deps -= [ "//device/battery" ] |
| 538 android_manifest = | 538 android_manifest = |
| 539 "${target_gen_dir}/content_browsertests_manifest/AndroidManifest.xml" | 539 "${target_gen_dir}/content_browsertests_manifest/AndroidManifest.xml" |
| 540 use_default_launcher = false | 540 use_default_launcher = false |
| 541 } | 541 } |
| 542 | 542 |
| 543 if (is_mac) { | 543 if (is_mac) { |
| 544 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] | 544 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] |
| 545 deps += [ | 545 deps += [ "//content/shell:content_shell" ] |
| 546 # Needed for Content Shell.app's Helper. | |
| 547 #"//content/shell:content_shell", #TODO(GYP) enable for mac | |
| 548 ] | |
| 549 } | 546 } |
| 550 | 547 |
| 551 if (use_aura && !is_win) { | 548 if (use_aura && !is_win) { |
| 552 deps += [ "//ui/events:test_support" ] | 549 deps += [ "//ui/events:test_support" ] |
| 553 } | 550 } |
| 554 | 551 |
| 555 if (!use_aura && !is_mac) { | 552 if (!use_aura && !is_mac) { |
| 556 sources -= | 553 sources -= |
| 557 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] | 554 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] |
| 558 } | 555 } |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 931 "//gpu:test_support", | 928 "//gpu:test_support", |
| 932 "//media/base/android", | 929 "//media/base/android", |
| 933 "//media/base/android:media_java", | 930 "//media/base/android:media_java", |
| 934 "//media/capture/video/android:capture_java", | 931 "//media/capture/video/android:capture_java", |
| 935 "//testing/gmock", | 932 "//testing/gmock", |
| 936 "//ui/android:ui_java", | 933 "//ui/android:ui_java", |
| 937 ] | 934 ] |
| 938 } | 935 } |
| 939 } | 936 } |
| 940 } | 937 } |
| OLD | NEW |