| 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 | 7 |
| 8 # Applied by targets internal to content. | 8 # Applied by targets internal to content. |
| 9 config("content_implementation") { | 9 config("content_implementation") { |
| 10 defines = [ "CONTENT_IMPLEMENTATION" ] | 10 defines = [ "CONTENT_IMPLEMENTATION" ] |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "grit/content_resources.h", | 112 "grit/content_resources.h", |
| 113 "content_resources.pak", | 113 "content_resources.pak", |
| 114 ] | 114 ] |
| 115 grit_flags = [ | 115 grit_flags = [ |
| 116 "-E", | 116 "-E", |
| 117 "root_out_dir=" + rebase_path(root_out_dir, root_build_dir), | 117 "root_out_dir=" + rebase_path(root_out_dir, root_build_dir), |
| 118 ] | 118 ] |
| 119 deps = [ | 119 deps = [ |
| 120 "//content/public/app:browser_manifest", | 120 "//content/public/app:browser_manifest", |
| 121 "//content/public/app:gpu_manifest", | 121 "//content/public/app:gpu_manifest", |
| 122 "//content/public/app:plugin_manifest", | |
| 123 "//content/public/app:renderer_manifest", | 122 "//content/public/app:renderer_manifest", |
| 124 "//content/public/app:utility_manifest", | 123 "//content/public/app:utility_manifest", |
| 125 "//services/catalog:manifest", | 124 "//services/catalog:manifest", |
| 126 ] | 125 ] |
| 127 } | 126 } |
| 128 | 127 |
| 129 # This target exists to "hold" the content_export header so we can do proper | 128 # This target exists to "hold" the content_export header so we can do proper |
| 130 # inclusion testing of it. | 129 # inclusion testing of it. |
| 131 source_set("export") { | 130 source_set("export") { |
| 132 # Must only be used inside of content. | 131 # Must only be used inside of content. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 144 sources = [ | 143 sources = [ |
| 145 "app/sandbox_helper_win.cc", | 144 "app/sandbox_helper_win.cc", |
| 146 "public/app/sandbox_helper_win.h", | 145 "public/app/sandbox_helper_win.h", |
| 147 ] | 146 ] |
| 148 | 147 |
| 149 deps = [ | 148 deps = [ |
| 150 "//sandbox", | 149 "//sandbox", |
| 151 ] | 150 ] |
| 152 } | 151 } |
| 153 } | 152 } |
| OLD | NEW |