| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 # //content/browser target only in non-component builds (when there are no | 55 # //content/browser target only in non-component builds (when there are no |
| 56 # linking problems) for when check is enabled. | 56 # linking problems) for when check is enabled. |
| 57 | 57 |
| 58 if (!is_nacl_nonsfi) { | 58 if (!is_nacl_nonsfi) { |
| 59 content_shared_components = [ | 59 content_shared_components = [ |
| 60 "//content/gpu:gpu_sources", | 60 "//content/gpu:gpu_sources", |
| 61 "//content/public/browser:browser_sources", | 61 "//content/public/browser:browser_sources", |
| 62 "//content/public/child:child_sources", | 62 "//content/public/child:child_sources", |
| 63 "//content/public/gpu:gpu_sources", | 63 "//content/public/gpu:gpu_sources", |
| 64 "//content/public/common:common_sources", | 64 "//content/public/common:common_sources", |
| 65 "//content/public/plugin:plugin_sources", | |
| 66 "//content/public/renderer:renderer_sources", | 65 "//content/public/renderer:renderer_sources", |
| 67 "//content/public/utility:utility_sources", | 66 "//content/public/utility:utility_sources", |
| 68 ] | 67 ] |
| 69 | 68 |
| 70 if (enable_plugins) { | 69 if (enable_plugins) { |
| 71 content_shared_components += | 70 content_shared_components += |
| 72 [ "//content/ppapi_plugin:ppapi_plugin_sources" ] | 71 [ "//content/ppapi_plugin:ppapi_plugin_sources" ] |
| 73 } | 72 } |
| 74 } | 73 } |
| 75 | 74 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 sources = [ | 130 sources = [ |
| 132 "app/sandbox_helper_win.cc", | 131 "app/sandbox_helper_win.cc", |
| 133 "public/app/sandbox_helper_win.h", | 132 "public/app/sandbox_helper_win.h", |
| 134 ] | 133 ] |
| 135 | 134 |
| 136 deps = [ | 135 deps = [ |
| 137 "//sandbox", | 136 "//sandbox", |
| 138 ] | 137 ] |
| 139 } | 138 } |
| 140 } | 139 } |
| OLD | NEW |