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("//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 Loading... |
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 Loading... |
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 } |
OLD | NEW |