| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/browser/policy:path_parser", |
| 326 "//chrome/child", | 326 "//chrome/child", |
| 327 "//chrome/common", | 327 "//chrome/common", |
| 328 "//chrome/plugin", | |
| 329 "//chrome/renderer", | 328 "//chrome/renderer", |
| 330 "//chrome/utility", | 329 "//chrome/utility", |
| 331 "//components/crash/content/app", | 330 "//components/crash/content/app", |
| 332 "//components/crash/content/app:lib", | 331 "//components/crash/content/app:lib", |
| 333 "//components/startup_metric_utils/browser:lib", | 332 "//components/startup_metric_utils/browser:lib", |
| 334 "//content/public/app:both", | 333 "//content/public/app:both", |
| 335 "//content/public/common", | 334 "//content/public/common", |
| 336 "//ui/base", | 335 "//ui/base", |
| 337 ] | 336 ] |
| 338 | 337 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 357 deps += [ "//pdf" ] | 356 deps += [ "//pdf" ] |
| 358 } | 357 } |
| 359 | 358 |
| 360 if (enable_plugins && enable_nacl) { | 359 if (enable_plugins && enable_nacl) { |
| 361 deps += [ | 360 deps += [ |
| 362 "//components/nacl/browser", | 361 "//components/nacl/browser", |
| 363 "//components/nacl/renderer/plugin:nacl_trusted_plugin", | 362 "//components/nacl/renderer/plugin:nacl_trusted_plugin", |
| 364 ] | 363 ] |
| 365 } | 364 } |
| 366 } | 365 } |
| OLD | NEW |