| 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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 sources -= [ "../common/plugin_list_unittest.cc" ] | 859 sources -= [ "../common/plugin_list_unittest.cc" ] |
| 860 } | 860 } |
| 861 | 861 |
| 862 if (use_ozone) { | 862 if (use_ozone) { |
| 863 deps += [ "//ui/ozone" ] | 863 deps += [ "//ui/ozone" ] |
| 864 } else { | 864 } else { |
| 865 sources -= | 865 sources -= |
| 866 [ "../browser/compositor/software_output_device_ozone_unittest.cc" ] | 866 [ "../browser/compositor/software_output_device_ozone_unittest.cc" ] |
| 867 } | 867 } |
| 868 | 868 |
| 869 if (is_mac && use_openssl) { | 869 if (is_mac) { |
| 870 deps += [ "//third_party/boringssl" ] | 870 deps += [ "//third_party/boringssl" ] |
| 871 } | 871 } |
| 872 | 872 |
| 873 if (use_x11) { | 873 if (use_x11) { |
| 874 deps += [ "//ui/gfx/x" ] | 874 deps += [ "//ui/gfx/x" ] |
| 875 } | 875 } |
| 876 } | 876 } |
| 877 | 877 |
| 878 test("content_perftests") { | 878 test("content_perftests") { |
| 879 # See comment at the top of //content/BUILD.gn for why this is disabled in | 879 # See comment at the top of //content/BUILD.gn for why this is disabled in |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 "//gpu:test_support", | 1018 "//gpu:test_support", |
| 1019 "//media/base/android", | 1019 "//media/base/android", |
| 1020 "//media/base/android:media_java", | 1020 "//media/base/android:media_java", |
| 1021 "//media/capture/video/android:capture_java", | 1021 "//media/capture/video/android:capture_java", |
| 1022 "//testing/gmock", | 1022 "//testing/gmock", |
| 1023 "//ui/android:ui_java", | 1023 "//ui/android:ui_java", |
| 1024 ] | 1024 ] |
| 1025 } | 1025 } |
| 1026 } | 1026 } |
| 1027 } | 1027 } |
| OLD | NEW |