| 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", |
| 122 "//content/public/app:renderer_manifest", | 123 "//content/public/app:renderer_manifest", |
| 123 "//content/public/app:utility_manifest", | 124 "//content/public/app:utility_manifest", |
| 124 "//services/catalog:manifest", | 125 "//services/catalog:manifest", |
| 125 ] | 126 ] |
| 126 } | 127 } |
| 127 | 128 |
| 128 # This target exists to "hold" the content_export header so we can do proper | 129 # This target exists to "hold" the content_export header so we can do proper |
| 129 # inclusion testing of it. | 130 # inclusion testing of it. |
| 130 source_set("export") { | 131 source_set("export") { |
| 131 # Must only be used inside of content. | 132 # Must only be used inside of content. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 143 sources = [ | 144 sources = [ |
| 144 "app/sandbox_helper_win.cc", | 145 "app/sandbox_helper_win.cc", |
| 145 "public/app/sandbox_helper_win.h", | 146 "public/app/sandbox_helper_win.h", |
| 146 ] | 147 ] |
| 147 | 148 |
| 148 deps = [ | 149 deps = [ |
| 149 "//sandbox", | 150 "//sandbox", |
| 150 ] | 151 ] |
| 151 } | 152 } |
| 152 } | 153 } |
| OLD | NEW |