| 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 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 "../browser/compositor/reflector_impl_unittest.cc", | 845 "../browser/compositor/reflector_impl_unittest.cc", |
| 846 "../browser/compositor/software_browser_compositor_output_surface_unittest
.cc", | 846 "../browser/compositor/software_browser_compositor_output_surface_unittest
.cc", |
| 847 ] | 847 ] |
| 848 } | 848 } |
| 849 | 849 |
| 850 if (!is_win && !is_mac) { | 850 if (!is_win && !is_mac) { |
| 851 sources -= [ "../common/plugin_list_unittest.cc" ] | 851 sources -= [ "../common/plugin_list_unittest.cc" ] |
| 852 } | 852 } |
| 853 | 853 |
| 854 if (use_ozone) { | 854 if (use_ozone) { |
| 855 sources += | |
| 856 rebase_path(content_tests_gypi_values.content_unittests_ozone_sources, | |
| 857 ".", | |
| 858 "//content") | |
| 859 deps += [ "//ui/ozone" ] | 855 deps += [ "//ui/ozone" ] |
| 860 } else { | 856 } else { |
| 861 sources -= | 857 sources -= |
| 862 [ "../browser/compositor/software_output_device_ozone_unittest.cc" ] | 858 [ "../browser/compositor/software_output_device_ozone_unittest.cc" ] |
| 863 } | 859 } |
| 864 | 860 |
| 865 if (is_mac && use_openssl) { | 861 if (is_mac && use_openssl) { |
| 866 deps += [ "//third_party/boringssl" ] | 862 deps += [ "//third_party/boringssl" ] |
| 867 } | 863 } |
| 868 | 864 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1014 "//gpu:test_support", | 1010 "//gpu:test_support", |
| 1015 "//media/base/android", | 1011 "//media/base/android", |
| 1016 "//media/base/android:media_java", | 1012 "//media/base/android:media_java", |
| 1017 "//media/capture/video/android:capture_java", | 1013 "//media/capture/video/android:capture_java", |
| 1018 "//testing/gmock", | 1014 "//testing/gmock", |
| 1019 "//ui/android:ui_java", | 1015 "//ui/android:ui_java", |
| 1020 ] | 1016 ] |
| 1021 } | 1017 } |
| 1022 } | 1018 } |
| 1023 } | 1019 } |
| OLD | NEW |