| 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 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 ] | 758 ] |
| 759 | 759 |
| 760 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] | 760 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] |
| 761 } | 761 } |
| 762 if (!is_android && !is_ios) { | 762 if (!is_android && !is_ios) { |
| 763 deps += [ "//third_party/libvpx" ] | 763 deps += [ "//third_party/libvpx" ] |
| 764 } | 764 } |
| 765 | 765 |
| 766 if (use_aura) { | 766 if (use_aura) { |
| 767 deps += [ | 767 deps += [ |
| 768 "//content/public/renderer:renderer_sources", |
| 769 "//content/renderer/mus:mus", |
| 768 "//ui/aura", | 770 "//ui/aura", |
| 769 "//ui/aura_extra", | 771 "//ui/aura_extra", |
| 770 "//ui/wm", | 772 "//ui/wm", |
| 771 ] | 773 ] |
| 774 sources += [ "../renderer/mus/compositor_mus_connection_unittest.cc" ] |
| 772 } else { | 775 } else { |
| 773 sources -= [ | 776 sources -= [ |
| 774 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", | 777 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", |
| 775 "../browser/renderer_host/web_input_event_aura_unittest.cc", | 778 "../browser/renderer_host/web_input_event_aura_unittest.cc", |
| 776 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc", | 779 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc", |
| 777 "../browser/web_contents/aura/overscroll_window_animation_unittest.cc", | 780 "../browser/web_contents/aura/overscroll_window_animation_unittest.cc", |
| 778 "../browser/web_contents/aura/overscroll_window_delegate_unittest.cc", | 781 "../browser/web_contents/aura/overscroll_window_delegate_unittest.cc", |
| 779 "../browser/web_contents/web_contents_view_aura_unittest.cc", | 782 "../browser/web_contents/web_contents_view_aura_unittest.cc", |
| 780 ] | 783 ] |
| 781 } | 784 } |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 "//gpu:test_support", | 930 "//gpu:test_support", |
| 928 "//media/base/android", | 931 "//media/base/android", |
| 929 "//media/base/android:media_java", | 932 "//media/base/android:media_java", |
| 930 "//media/capture/video/android:capture_java", | 933 "//media/capture/video/android:capture_java", |
| 931 "//testing/gmock", | 934 "//testing/gmock", |
| 932 "//ui/android:ui_java", | 935 "//ui/android:ui_java", |
| 933 ] | 936 ] |
| 934 } | 937 } |
| 935 } | 938 } |
| 936 } | 939 } |
| OLD | NEW |