Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(605)

Side by Side Diff: content/browser/BUILD.gn

Issue 2458833005: Move printing defines to buildflag system. (Closed)
Patch Set: Missing file Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
9 10
10 source_set("browser") { 11 source_set("browser") {
11 # Only the public target should depend on this. All other targets (even 12 # Only the public target should depend on this. All other targets (even
12 # internal content ones) should depend on the public one. 13 # internal content ones) should depend on the public one.
13 visibility = [ 14 visibility = [
14 ":for_content_tests", # See top of //content/BUILD.gn for why. 15 ":for_content_tests", # See top of //content/BUILD.gn for why.
15 "//content/public/browser:browser_sources", 16 "//content/public/browser:browser_sources",
16 ] 17 ]
17 if (is_android) { 18 if (is_android) {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 "//media/mojo/interfaces", 85 "//media/mojo/interfaces",
85 "//media/mojo/interfaces:image_capture", 86 "//media/mojo/interfaces:image_capture",
86 "//mojo/common", 87 "//mojo/common",
87 "//mojo/edk/system", 88 "//mojo/edk/system",
88 "//mojo/public/cpp/bindings", 89 "//mojo/public/cpp/bindings",
89 "//mojo/public/js", 90 "//mojo/public/js",
90 "//net", 91 "//net",
91 "//net:extras", 92 "//net:extras",
92 "//net:http_server", 93 "//net:http_server",
93 "//ppapi/features", 94 "//ppapi/features",
95 "//printing/features",
94 "//services/file:lib", 96 "//services/file:lib",
95 "//services/file/public/cpp", 97 "//services/file/public/cpp",
96 "//services/file/public/interfaces", 98 "//services/file/public/interfaces",
97 "//services/service_manager", 99 "//services/service_manager",
98 "//services/service_manager/public/cpp", 100 "//services/service_manager/public/cpp",
99 "//services/service_manager/public/interfaces", 101 "//services/service_manager/public/interfaces",
100 "//services/service_manager/runner/common", 102 "//services/service_manager/runner/common",
101 "//services/service_manager/runner/host:lib", 103 "//services/service_manager/runner/host:lib",
102 "//skia", 104 "//skia",
103 "//sql", 105 "//sql",
(...skipping 1838 matching lines...) Expand 10 before | Expand all | Expand 10 after
1942 if (!is_component_build) { 1944 if (!is_component_build) {
1943 public_deps = [ 1945 public_deps = [
1944 ":browser", 1946 ":browser",
1945 ] 1947 ]
1946 } else { 1948 } else {
1947 public_deps = [ 1949 public_deps = [
1948 "//third_party/leveldatabase", 1950 "//third_party/leveldatabase",
1949 ] 1951 ]
1950 } 1952 }
1951 } 1953 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698