Chromium Code Reviews| 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("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 809 if (is_mac) { | 809 if (is_mac) { |
| 810 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] | 810 sources += [ "../renderer/external_popup_menu_browsertest.cc" ] |
| 811 deps += [ "//content/shell:content_shell" ] | 811 deps += [ "//content/shell:content_shell" ] |
| 812 data += [ "$root_out_dir/Content Shell.app/" ] | 812 data += [ "$root_out_dir/Content Shell.app/" ] |
| 813 } | 813 } |
| 814 | 814 |
| 815 if (is_chromeos) { | 815 if (is_chromeos) { |
| 816 deps += [ "//chromeos" ] | 816 deps += [ "//chromeos" ] |
| 817 } | 817 } |
| 818 | 818 |
| 819 if (use_aura) { | |
| 820 sources += [ "../browser/web_contents/drag_and_drop_browsertest.cc" ] | |
|
Łukasz Anforowicz
2016/11/01 23:43:42
Hopefully aura-only only is okay for now. aura-on
| |
| 821 } | |
| 822 | |
| 819 if (use_aura && !is_win) { | 823 if (use_aura && !is_win) { |
| 820 deps += [ "//ui/events:test_support" ] | 824 deps += [ "//ui/events:test_support" ] |
| 821 } | 825 } |
| 822 | 826 |
| 823 if (!use_aura && !is_mac) { | 827 if (!use_aura && !is_mac) { |
| 824 sources -= | 828 sources -= |
| 825 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] | 829 [ "../browser/compositor/image_transport_factory_browsertest.cc" ] |
| 826 } | 830 } |
| 827 | 831 |
| 828 if (enable_webrtc) { | 832 if (enable_webrtc) { |
| (...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1693 if (is_android) { | 1697 if (is_android) { |
| 1694 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1698 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1695 } | 1699 } |
| 1696 } | 1700 } |
| 1697 | 1701 |
| 1698 group("fuzzers") { | 1702 group("fuzzers") { |
| 1699 deps = [ | 1703 deps = [ |
| 1700 "//content/test/fuzzer", | 1704 "//content/test/fuzzer", |
| 1701 ] | 1705 ] |
| 1702 } | 1706 } |
| OLD | NEW |