| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 # As a result, we check deps for //content/test/* only in non-component builds | 53 # As a result, we check deps for //content/test/* only in non-component builds |
| 54 # (which should verify the dependencies are correct for both component and | 54 # (which should verify the dependencies are correct for both component and |
| 55 # non-component cases equally). There are targets like | 55 # non-component cases equally). There are targets like |
| 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/public/browser:browser_sources", | 64 "//content/public/browser:browser_sources", |
| 64 "//content/public/child:child_sources", | 65 "//content/public/child:child_sources", |
| 65 "//content/public/gpu:gpu_sources", | 66 "//content/public/gpu:gpu_sources", |
| 66 "//content/public/common:common_sources", | 67 "//content/public/common:common_sources", |
| 67 "//content/public/renderer:renderer_sources", | 68 "//content/public/renderer:renderer_sources", |
| 68 "//content/public/utility:utility_sources", | 69 "//content/public/utility:utility_sources", |
| 69 ] | 70 ] |
| 70 | 71 |
| 71 if (enable_plugins) { | 72 if (enable_plugins) { |
| 72 content_shared_components += | 73 content_shared_components += |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |