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 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1892 } | 1892 } |
1893 | 1893 |
1894 if (enable_web_speech) { | 1894 if (enable_web_speech) { |
1895 deps += [ "//third_party/flac" ] | 1895 deps += [ "//third_party/flac" ] |
1896 } | 1896 } |
1897 | 1897 |
1898 if (is_linux && use_dbus) { | 1898 if (is_linux && use_dbus) { |
1899 deps += [ "//dbus" ] | 1899 deps += [ "//dbus" ] |
1900 } | 1900 } |
1901 | 1901 |
1902 if (enable_browser_cdms) { | |
1903 sources += [ | |
1904 "media/cdm/browser_cdm_manager.cc", | |
1905 "media/cdm/browser_cdm_manager.h", | |
1906 ] | |
1907 } | |
1908 | |
1909 if (is_linux) { | 1902 if (is_linux) { |
1910 deps += [ "//third_party/boringssl" ] | 1903 deps += [ "//third_party/boringssl" ] |
1911 } | 1904 } |
1912 | 1905 |
1913 if (enable_mojo_media) { | 1906 if (enable_mojo_media) { |
1914 configs += [ "//media/mojo/services:mojo_media_config" ] | 1907 configs += [ "//media/mojo/services:mojo_media_config" ] |
1915 } | 1908 } |
1916 | 1909 |
1917 if (use_ozone) { | 1910 if (use_ozone) { |
1918 deps += [ "//ui/ozone" ] | 1911 deps += [ "//ui/ozone" ] |
(...skipping 29 matching lines...) Expand all Loading... |
1948 if (!is_component_build) { | 1941 if (!is_component_build) { |
1949 public_deps = [ | 1942 public_deps = [ |
1950 ":browser", | 1943 ":browser", |
1951 ] | 1944 ] |
1952 } else { | 1945 } else { |
1953 public_deps = [ | 1946 public_deps = [ |
1954 "//third_party/leveldatabase", | 1947 "//third_party/leveldatabase", |
1955 ] | 1948 ] |
1956 } | 1949 } |
1957 } | 1950 } |
OLD | NEW |