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