| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 android_generated_java_resources = [ | 9 android_generated_java_resources = [ |
| 10 "java/res/values-am/generated_resources.xml", | 10 "java/res/values-am/generated_resources.xml", |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 visibility = [ "//chrome/test:test_support" ] | 315 visibility = [ "//chrome/test:test_support" ] |
| 316 | 316 |
| 317 sources = [ | 317 sources = [ |
| 318 "chrome_main_delegate.cc", | 318 "chrome_main_delegate.cc", |
| 319 "chrome_main_delegate.h", | 319 "chrome_main_delegate.h", |
| 320 ] | 320 ] |
| 321 | 321 |
| 322 deps = [ | 322 deps = [ |
| 323 "//base", | 323 "//base", |
| 324 "//chrome/browser", | 324 "//chrome/browser", |
| 325 "//chrome/browser/policy:path_parser", |
| 325 "//chrome/child", | 326 "//chrome/child", |
| 326 "//chrome/common", | 327 "//chrome/common", |
| 327 "//chrome/plugin", | 328 "//chrome/plugin", |
| 328 "//chrome/renderer", | 329 "//chrome/renderer", |
| 329 "//chrome/utility", | 330 "//chrome/utility", |
| 330 "//components/crash/content/app", | 331 "//components/crash/content/app", |
| 331 "//components/crash/content/app:lib", | 332 "//components/crash/content/app:lib", |
| 332 "//components/startup_metric_utils/browser:lib", | 333 "//components/startup_metric_utils/browser:lib", |
| 333 "//content/public/app:both", | 334 "//content/public/app:both", |
| 334 "//content/public/common", | 335 "//content/public/common", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 345 deps += [ | 346 deps += [ |
| 346 "//chrome:chrome_initial", | 347 "//chrome:chrome_initial", |
| 347 "//sandbox/win:sandbox", | 348 "//sandbox/win:sandbox", |
| 348 ] | 349 ] |
| 349 } | 350 } |
| 350 | 351 |
| 351 if (is_chromeos) { | 352 if (is_chromeos) { |
| 352 deps += [ "//chrome/browser/chromeos" ] | 353 deps += [ "//chrome/browser/chromeos" ] |
| 353 } | 354 } |
| 354 | 355 |
| 355 if (enable_configuration_policy) { | |
| 356 deps += [ "//chrome/browser/policy:path_parser" ] | |
| 357 } | |
| 358 | |
| 359 if (enable_pdf) { | 356 if (enable_pdf) { |
| 360 deps += [ "//pdf" ] | 357 deps += [ "//pdf" ] |
| 361 } | 358 } |
| 362 | 359 |
| 363 if (enable_plugins && enable_nacl) { | 360 if (enable_plugins && enable_nacl) { |
| 364 deps += [ | 361 deps += [ |
| 365 "//components/nacl/browser", | 362 "//components/nacl/browser", |
| 366 "//components/nacl/renderer/plugin:nacl_trusted_plugin", | 363 "//components/nacl/renderer/plugin:nacl_trusted_plugin", |
| 367 ] | 364 ] |
| 368 } | 365 } |
| 369 } | 366 } |
| OLD | NEW |