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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 "//base", | 325 "//base", |
326 "//chrome/browser", | 326 "//chrome/browser", |
327 "//chrome/browser/policy:path_parser", | 327 "//chrome/browser/policy:path_parser", |
328 "//chrome/child", | 328 "//chrome/child", |
329 "//chrome/common", | 329 "//chrome/common", |
330 "//chrome/gpu", | 330 "//chrome/gpu", |
331 "//chrome/renderer", | 331 "//chrome/renderer", |
332 "//chrome/utility", | 332 "//chrome/utility", |
333 "//components/crash/content/app", | 333 "//components/crash/content/app", |
334 "//components/crash/content/app:lib", | 334 "//components/crash/content/app:lib", |
| 335 |
| 336 # TODO(crbug.com/625122) This dependency is only needed if is_desktop_linux |
| 337 # is true. |
| 338 "//components/os_crypt", |
335 "//components/startup_metric_utils/browser:lib", | 339 "//components/startup_metric_utils/browser:lib", |
336 "//content/public/app:both", | 340 "//content/public/app:both", |
337 "//content/public/common", | 341 "//content/public/common", |
338 "//ui/base", | 342 "//ui/base", |
339 ] | 343 ] |
340 | 344 |
341 if (is_mac) { | 345 if (is_mac) { |
342 sources += [ "chrome_main_mac.mm" ] | 346 sources += [ "chrome_main_mac.mm" ] |
343 | 347 |
344 deps += [ "//chrome:chrome_framework" ] | 348 deps += [ "//chrome:chrome_framework" ] |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |