| 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("//mojo/public/mojo_application_manifest.gni") | 5 import("//mojo/public/mojo_application_manifest.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 android_generated_java_resources = [ | 10 android_generated_java_resources = [ |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "chrome_main_delegate.cc", | 319 "chrome_main_delegate.cc", |
| 320 "chrome_main_delegate.h", | 320 "chrome_main_delegate.h", |
| 321 ] | 321 ] |
| 322 | 322 |
| 323 deps = [ | 323 deps = [ |
| 324 "//base", | 324 "//base", |
| 325 "//chrome/browser", | 325 "//chrome/browser", |
| 326 "//chrome/browser/policy:path_parser", | 326 "//chrome/browser/policy:path_parser", |
| 327 "//chrome/child", | 327 "//chrome/child", |
| 328 "//chrome/common", | 328 "//chrome/common", |
| 329 "//chrome/gpu", |
| 329 "//chrome/renderer", | 330 "//chrome/renderer", |
| 330 "//chrome/utility", | 331 "//chrome/utility", |
| 331 "//components/crash/content/app", | 332 "//components/crash/content/app", |
| 332 "//components/crash/content/app:lib", | 333 "//components/crash/content/app:lib", |
| 333 "//components/startup_metric_utils/browser:lib", | 334 "//components/startup_metric_utils/browser:lib", |
| 334 "//content/public/app:both", | 335 "//content/public/app:both", |
| 335 "//content/public/common", | 336 "//content/public/common", |
| 336 "//ui/base", | 337 "//ui/base", |
| 337 ] | 338 ] |
| 338 | 339 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 base_manifest = "${root_out_dir}/content_renderer_manifest.json" | 381 base_manifest = "${root_out_dir}/content_renderer_manifest.json" |
| 381 base_deps = [ "//content/public/app:renderer_manifest" ] | 382 base_deps = [ "//content/public/app:renderer_manifest" ] |
| 382 } | 383 } |
| 383 | 384 |
| 384 group("mojo_manifests") { | 385 group("mojo_manifests") { |
| 385 data_deps = [ | 386 data_deps = [ |
| 386 ":chrome_manifest", | 387 ":chrome_manifest", |
| 387 ":chrome_renderer_manifest", | 388 ":chrome_renderer_manifest", |
| 388 ] | 389 ] |
| 389 } | 390 } |
| OLD | NEW |