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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//mojo/public/mojo_application_manifest.gni") |
9 | 10 |
10 source_set("browser") { | 11 source_set("browser") { |
11 # Only the public target should depend on this. All other targets (even | 12 # Only the public target should depend on this. All other targets (even |
12 # internal content ones) should depend on the public one. | 13 # internal content ones) should depend on the public one. |
13 visibility = [ "//content/public/browser:browser_sources" ] | 14 visibility = [ "//content/public/browser:browser_sources" ] |
14 | 15 |
15 configs += [ | 16 configs += [ |
16 "//build/config:precompiled_headers", | 17 "//build/config:precompiled_headers", |
17 "//content/public/common:mojo_shell_client", | 18 "//content/public/common:mojo_shell_client", |
18 ] | 19 ] |
19 defines = [] | 20 defines = [] |
20 libs = [] | 21 libs = [] |
21 ldflags = [] | 22 ldflags = [] |
22 | 23 |
23 # Shared deps. See also non-iOS deps below. | 24 # Shared deps. See also non-iOS deps below. |
24 deps = [ | 25 deps = [ |
| 26 ":chrome_renderer_manifest", |
25 "//base", | 27 "//base", |
26 "//base:base_static", | 28 "//base:base_static", |
27 "//components/mime_util", | 29 "//components/mime_util", |
28 "//components/url_formatter", | 30 "//components/url_formatter", |
29 "//content:resources", | 31 "//content:resources", |
30 "//content/browser/background_sync:background_sync_proto", | 32 "//content/browser/background_sync:background_sync_proto", |
31 "//content/browser/cache_storage:cache_storage_proto", | 33 "//content/browser/cache_storage:cache_storage_proto", |
32 "//content/browser/notifications:notification_proto", | 34 "//content/browser/notifications:notification_proto", |
33 "//content/browser/service_worker:service_worker_proto", | 35 "//content/browser/service_worker:service_worker_proto", |
34 "//content/browser/speech/proto", | 36 "//content/browser/speech/proto", |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 | 530 |
529 if (enable_webvr && is_android) { | 531 if (enable_webvr && is_android) { |
530 sources += [ | 532 sources += [ |
531 "vr/android/cardboard/cardboard_vr_device.cc", | 533 "vr/android/cardboard/cardboard_vr_device.cc", |
532 "vr/android/cardboard/cardboard_vr_device.h", | 534 "vr/android/cardboard/cardboard_vr_device.h", |
533 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 535 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
534 "vr/android/cardboard/cardboard_vr_device_provider.h", | 536 "vr/android/cardboard/cardboard_vr_device_provider.h", |
535 ] | 537 ] |
536 } | 538 } |
537 } | 539 } |
| 540 |
| 541 mojo_application_manifest("chrome_renderer_manifest") { |
| 542 type = "exe" |
| 543 application_name = "chrome_renderer" |
| 544 source = "mojo/chrome_renderer_manifest.json" |
| 545 } |
OLD | NEW |