| 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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 deps -= [ "//device/battery" ] | 546 deps -= [ "//device/battery" ] |
| 547 android_manifest = | 547 android_manifest = |
| 548 "${target_gen_dir}/content_browsertests_manifest/AndroidManifest.xml" | 548 "${target_gen_dir}/content_browsertests_manifest/AndroidManifest.xml" |
| 549 isolate_file = "//content/content_browsertests.isolate" | 549 isolate_file = "//content/content_browsertests.isolate" |
| 550 | 550 |
| 551 use_default_launcher = false | 551 use_default_launcher = false |
| 552 } | 552 } |
| 553 | 553 |
| 554 if (is_mac) { | 554 if (is_mac) { |
| 555 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] | 555 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] |
| 556 deps += [ | 556 deps += [ "//content/shell:content_shell" ] |
| 557 # Needed for Content Shell.app's Helper. | |
| 558 #"//content/shell:content_shell", #TODO(GYP) enable for mac | |
| 559 ] | |
| 560 } | 557 } |
| 561 | 558 |
| 562 if (use_aura && !is_win) { | 559 if (use_aura && !is_win) { |
| 563 deps += [ "//ui/events:test_support" ] | 560 deps += [ "//ui/events:test_support" ] |
| 564 } | 561 } |
| 565 | 562 |
| 566 if (!use_aura && !is_mac) { | 563 if (!use_aura && !is_mac) { |
| 567 sources -= | 564 sources -= |
| 568 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] | 565 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] |
| 569 } | 566 } |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 "//gpu:test_support", | 985 "//gpu:test_support", |
| 989 "//media/base/android", | 986 "//media/base/android", |
| 990 "//media/base/android:media_java", | 987 "//media/base/android:media_java", |
| 991 "//media/capture/video/android:capture_java", | 988 "//media/capture/video/android:capture_java", |
| 992 "//testing/gmock", | 989 "//testing/gmock", |
| 993 "//ui/android:ui_java", | 990 "//ui/android:ui_java", |
| 994 ] | 991 ] |
| 995 } | 992 } |
| 996 } | 993 } |
| 997 } | 994 } |
| OLD | NEW |