| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
| 7 import("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") |
| 8 | 8 |
| 9 # Applied by targets internal to content. | 9 # Applied by targets internal to content. |
| 10 config("content_implementation") { | 10 config("content_implementation") { |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "grit/content_resources.h", | 116 "grit/content_resources.h", |
| 117 "content_resources.pak", | 117 "content_resources.pak", |
| 118 ] | 118 ] |
| 119 grit_flags = [ | 119 grit_flags = [ |
| 120 "-E", | 120 "-E", |
| 121 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 121 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 122 ] | 122 ] |
| 123 deps = [ | 123 deps = [ |
| 124 "//content/public/app:browser_manifest", | 124 "//content/public/app:browser_manifest", |
| 125 "//content/public/app:gpu_manifest", | 125 "//content/public/app:gpu_manifest", |
| 126 "//content/public/app:packaged_services_manifest", |
| 126 "//content/public/app:plugin_manifest", | 127 "//content/public/app:plugin_manifest", |
| 127 "//content/public/app:renderer_manifest", | 128 "//content/public/app:renderer_manifest", |
| 128 "//content/public/app:utility_manifest", | 129 "//content/public/app:utility_manifest", |
| 129 "//mojo/public/js:bindings", | 130 "//mojo/public/js:bindings", |
| 130 "//services/catalog:manifest", | 131 "//services/catalog:manifest", |
| 131 ] | 132 ] |
| 132 } | 133 } |
| 133 | 134 |
| 134 # This target exists to "hold" the content_export header so we can do proper | 135 # This target exists to "hold" the content_export header so we can do proper |
| 135 # inclusion testing of it. | 136 # inclusion testing of it. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 149 sources = [ | 150 sources = [ |
| 150 "app/sandbox_helper_win.cc", | 151 "app/sandbox_helper_win.cc", |
| 151 "public/app/sandbox_helper_win.h", | 152 "public/app/sandbox_helper_win.h", |
| 152 ] | 153 ] |
| 153 | 154 |
| 154 deps = [ | 155 deps = [ |
| 155 "//sandbox", | 156 "//sandbox", |
| 156 ] | 157 ] |
| 157 } | 158 } |
| 158 } | 159 } |
| OLD | NEW |