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 import("//mojo/public/mojo_application_manifest.gni") |
10 | 10 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 "$root_gen_dir/blink/grit/devtools_resources_map.h", | 113 "$root_gen_dir/blink/grit/devtools_resources_map.h", |
114 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", | 114 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", |
115 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", | 115 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", |
116 ], | 116 ], |
117 ".") | 117 ".") |
118 | 118 |
119 # Non-iOS deps. | 119 # Non-iOS deps. |
120 deps += [ | 120 deps += [ |
121 "//cc", | 121 "//cc", |
122 "//cc/surfaces", | 122 "//cc/surfaces", |
| 123 "//components/filesystem:lib", |
123 "//components/leveldb:lib", | 124 "//components/leveldb:lib", |
124 "//components/profile_service:lib", | 125 "//components/profile_service:lib", |
125 "//components/scheduler:common", | 126 "//components/scheduler:common", |
126 "//content/app/resources", | 127 "//content/app/resources", |
127 "//content/app/strings", | 128 "//content/app/strings", |
128 "//content/browser/devtools:gen_devtools_protocol_handler", | 129 "//content/browser/devtools:gen_devtools_protocol_handler", |
129 "//content/browser/devtools:resources", | 130 "//content/browser/devtools:resources", |
130 "//content/common:mojo_bindings", | 131 "//content/common:mojo_bindings", |
131 "//content/public/common:mojo_bindings", | 132 "//content/public/common:mojo_bindings", |
132 "//device/bluetooth", | 133 "//device/bluetooth", |
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 type = "exe" | 550 type = "exe" |
550 application_name = "chrome" | 551 application_name = "chrome" |
551 source = "mojo/chrome_manifest.json" | 552 source = "mojo/chrome_manifest.json" |
552 } | 553 } |
553 | 554 |
554 mojo_application_manifest("chrome_renderer_manifest") { | 555 mojo_application_manifest("chrome_renderer_manifest") { |
555 type = "exe" | 556 type = "exe" |
556 application_name = "chrome_renderer" | 557 application_name = "chrome_renderer" |
557 source = "mojo/chrome_renderer_manifest.json" | 558 source = "mojo/chrome_renderer_manifest.json" |
558 } | 559 } |
OLD | NEW |