| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//third_party/WebKit/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| (...skipping 1930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1941 if (enable_mojo_media) { | 1941 if (enable_mojo_media) { |
| 1942 configs += [ "//media/mojo/services:mojo_media_config" ] | 1942 configs += [ "//media/mojo/services:mojo_media_config" ] |
| 1943 } | 1943 } |
| 1944 | 1944 |
| 1945 if (use_ozone) { | 1945 if (use_ozone) { |
| 1946 deps += [ "//ui/ozone" ] | 1946 deps += [ "//ui/ozone" ] |
| 1947 } | 1947 } |
| 1948 | 1948 |
| 1949 if (enable_webvr) { | 1949 if (enable_webvr) { |
| 1950 deps += [ "//device/vr" ] | 1950 deps += [ "//device/vr" ] |
| 1951 } else { |
| 1952 deps += [ "//device/vr:mojo_bindings" ] |
| 1951 } | 1953 } |
| 1952 | 1954 |
| 1953 if (enable_ipc_fuzzer) { | 1955 if (enable_ipc_fuzzer) { |
| 1954 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] | 1956 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] |
| 1955 } | 1957 } |
| 1956 | 1958 |
| 1957 if (use_minikin_hyphenation) { | 1959 if (use_minikin_hyphenation) { |
| 1958 sources += [ | 1960 sources += [ |
| 1959 "hyphenation/hyphenation_impl.cc", | 1961 "hyphenation/hyphenation_impl.cc", |
| 1960 "hyphenation/hyphenation_impl.h", | 1962 "hyphenation/hyphenation_impl.h", |
| 1961 ] | 1963 ] |
| 1962 } | 1964 } |
| 1963 } | 1965 } |
| 1964 | 1966 |
| 1965 # See comment at the top of //content/BUILD.gn for how this works. | 1967 # See comment at the top of //content/BUILD.gn for how this works. |
| 1966 group("for_content_tests") { | 1968 group("for_content_tests") { |
| 1967 visibility = [ "//content/test/*" ] | 1969 visibility = [ "//content/test/*" ] |
| 1968 if (!is_component_build) { | 1970 if (!is_component_build) { |
| 1969 public_deps = [ | 1971 public_deps = [ |
| 1970 ":browser", | 1972 ":browser", |
| 1971 ] | 1973 ] |
| 1972 } else { | 1974 } else { |
| 1973 public_deps = [ | 1975 public_deps = [ |
| 1974 "//third_party/leveldatabase", | 1976 "//third_party/leveldatabase", |
| 1975 ] | 1977 ] |
| 1976 } | 1978 } |
| 1977 } | 1979 } |
| OLD | NEW |