| 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("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 1883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1894 | 1894 |
| 1895 if (!use_ozone) { | 1895 if (!use_ozone) { |
| 1896 sources -= [ | 1896 sources -= [ |
| 1897 "compositor/software_output_device_ozone.cc", | 1897 "compositor/software_output_device_ozone.cc", |
| 1898 "compositor/software_output_device_ozone.h", | 1898 "compositor/software_output_device_ozone.h", |
| 1899 ] | 1899 ] |
| 1900 } | 1900 } |
| 1901 deps += [ "//ui/compositor" ] | 1901 deps += [ "//ui/compositor" ] |
| 1902 } | 1902 } |
| 1903 | 1903 |
| 1904 if (is_android || is_mac) { | |
| 1905 deps += [ "//gpu/ipc/common:gpu_surface_tracker" ] | |
| 1906 } | |
| 1907 | |
| 1908 if (enable_web_speech) { | 1904 if (enable_web_speech) { |
| 1909 deps += [ "//third_party/flac" ] | 1905 deps += [ "//third_party/flac" ] |
| 1910 } | 1906 } |
| 1911 | 1907 |
| 1912 if (is_linux && use_dbus) { | 1908 if (is_linux && use_dbus) { |
| 1913 deps += [ "//dbus" ] | 1909 deps += [ "//dbus" ] |
| 1914 } | 1910 } |
| 1915 | 1911 |
| 1916 if (is_linux) { | 1912 if (is_linux) { |
| 1917 deps += [ "//third_party/boringssl" ] | 1913 deps += [ "//third_party/boringssl" ] |
| (...skipping 30 matching lines...) Expand all Loading... |
| 1948 if (!is_component_build) { | 1944 if (!is_component_build) { |
| 1949 public_deps = [ | 1945 public_deps = [ |
| 1950 ":browser", | 1946 ":browser", |
| 1951 ] | 1947 ] |
| 1952 } else { | 1948 } else { |
| 1953 public_deps = [ | 1949 public_deps = [ |
| 1954 "//third_party/leveldatabase", | 1950 "//third_party/leveldatabase", |
| 1955 ] | 1951 ] |
| 1956 } | 1952 } |
| 1957 } | 1953 } |
| OLD | NEW |