| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 ] | 351 ] |
| 352 } | 352 } |
| 353 | 353 |
| 354 if (is_chromeos) { | 354 if (is_chromeos) { |
| 355 deps += [ | 355 deps += [ |
| 356 "//chrome/browser/chromeos", | 356 "//chrome/browser/chromeos", |
| 357 "//components/metrics:leak_detector", | 357 "//components/metrics:leak_detector", |
| 358 ] | 358 ] |
| 359 } | 359 } |
| 360 | 360 |
| 361 if (is_desktop_linux) { |
| 362 deps += [ "//components/os_crypt" ] |
| 363 } |
| 364 |
| 361 if (enable_pdf) { | 365 if (enable_pdf) { |
| 362 deps += [ "//pdf" ] | 366 deps += [ "//pdf" ] |
| 363 } | 367 } |
| 364 | 368 |
| 365 if (enable_plugins && enable_nacl) { | 369 if (enable_plugins && enable_nacl) { |
| 366 deps += [ | 370 deps += [ |
| 367 "//components/nacl/browser", | 371 "//components/nacl/browser", |
| 368 "//components/nacl/renderer/plugin:nacl_trusted_plugin", | 372 "//components/nacl/renderer/plugin:nacl_trusted_plugin", |
| 369 ] | 373 ] |
| 370 } | 374 } |
| (...skipping 16 matching lines...) Expand all Loading... |
| 387 base_deps = [ "//content/public/app:renderer_manifest" ] | 391 base_deps = [ "//content/public/app:renderer_manifest" ] |
| 388 } | 392 } |
| 389 | 393 |
| 390 group("mojo_manifests") { | 394 group("mojo_manifests") { |
| 391 data_deps = [ | 395 data_deps = [ |
| 392 ":chrome_manifest", | 396 ":chrome_manifest", |
| 393 ":chrome_renderer_manifest", | 397 ":chrome_renderer_manifest", |
| 394 ] | 398 ] |
| 395 } | 399 } |
| 396 } | 400 } |
| OLD | NEW |