| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 # //content/browser:for_content_tests that allow content/test to depend on the | 56 # //content/browser:for_content_tests that allow content/test to depend on the |
| 57 # //content/browser target only in non-component builds (when there are no | 57 # //content/browser target only in non-component builds (when there are no |
| 58 # linking problems) for when check is enabled. | 58 # linking problems) for when check is enabled. |
| 59 | 59 |
| 60 if (!is_nacl_nonsfi) { | 60 if (!is_nacl_nonsfi) { |
| 61 content_shared_components = [ | 61 content_shared_components = [ |
| 62 "//content/gpu:gpu_sources", | 62 "//content/gpu:gpu_sources", |
| 63 "//content/network:network_sources", | 63 "//content/network:network_sources", |
| 64 "//content/public/browser:browser_sources", | 64 "//content/public/browser:browser_sources", |
| 65 "//content/public/child:child_sources", | 65 "//content/public/child:child_sources", |
| 66 "//content/public/common:common_sources", |
| 66 "//content/public/gpu:gpu_sources", | 67 "//content/public/gpu:gpu_sources", |
| 67 "//content/public/common:common_sources", | 68 "//content/public/network:network_sources", |
| 68 "//content/public/renderer:renderer_sources", | 69 "//content/public/renderer:renderer_sources", |
| 69 "//content/public/utility:utility_sources", | 70 "//content/public/utility:utility_sources", |
| 70 ] | 71 ] |
| 71 | 72 |
| 72 if (enable_plugins) { | 73 if (enable_plugins) { |
| 73 content_shared_components += | 74 content_shared_components += |
| 74 [ "//content/ppapi_plugin:ppapi_plugin_sources" ] | 75 [ "//content/ppapi_plugin:ppapi_plugin_sources" ] |
| 75 } | 76 } |
| 76 } | 77 } |
| 77 | 78 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 sources = [ | 151 sources = [ |
| 151 "app/sandbox_helper_win.cc", | 152 "app/sandbox_helper_win.cc", |
| 152 "public/app/sandbox_helper_win.h", | 153 "public/app/sandbox_helper_win.h", |
| 153 ] | 154 ] |
| 154 | 155 |
| 155 deps = [ | 156 deps = [ |
| 156 "//sandbox", | 157 "//sandbox", |
| 157 ] | 158 ] |
| 158 } | 159 } |
| 159 } | 160 } |
| OLD | NEW |