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

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

Issue 2191733002: make use of use_gconf & use_glib gn args in content/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo fixup Created 4 years, 4 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//content/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 10
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 272
273 if (use_atk) { 273 if (use_atk) {
274 sources += 274 sources +=
275 rebase_path(content_browser_gypi_values.auralinux_browser_sources, 275 rebase_path(content_browser_gypi_values.auralinux_browser_sources,
276 ".", 276 ".",
277 "//content") 277 "//content")
278 278
279 configs += [ 279 configs += [
280 "//build/config/linux/atk", 280 "//build/config/linux/atk",
281 "//build/config/linux/atk:warnings", 281 "//build/config/linux/atk:warnings",
282 "//build/config/linux/gconf",
283 "//build/config/linux:glib",
284 ] 282 ]
283
284 if (use_gconf) {
285 configs += [ "//build/config/linux/gconf" ]
286 }
287
288 if (use_glib) {
289 configs += [ "//build/config/linux:glib" ]
290 }
285 } 291 }
286 292
287 if (is_linux && use_aura) { 293 if (is_linux && use_aura) {
288 deps += [ "//build/linux:fontconfig" ] 294 deps += [ "//build/linux:fontconfig" ]
289 } 295 }
290 296
291 if (use_x11) { 297 if (use_x11) {
292 configs += [ "//build/config/linux:x11" ] 298 configs += [ "//build/config/linux:x11" ]
293 deps += [ "//ui/gfx/x" ] 299 deps += [ "//ui/gfx/x" ]
294 } 300 }
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 if (!is_component_build) { 534 if (!is_component_build) {
529 public_deps = [ 535 public_deps = [
530 ":browser", 536 ":browser",
531 ] 537 ]
532 } else { 538 } else {
533 public_deps = [ 539 public_deps = [
534 "//third_party/leveldatabase", 540 "//third_party/leveldatabase",
535 ] 541 ]
536 } 542 }
537 } 543 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698