OLD | NEW |
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 if (enable_nacl) { | 10 if (enable_nacl) { |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 "renderer/ppb_nacl_private_impl.h", | 137 "renderer/ppb_nacl_private_impl.h", |
138 "renderer/progress_event.cc", | 138 "renderer/progress_event.cc", |
139 "renderer/progress_event.h", | 139 "renderer/progress_event.h", |
140 "renderer/trusted_plugin_channel.cc", | 140 "renderer/trusted_plugin_channel.cc", |
141 "renderer/trusted_plugin_channel.h", | 141 "renderer/trusted_plugin_channel.h", |
142 ] | 142 ] |
143 | 143 |
144 deps = [ | 144 deps = [ |
145 ":nacl_common", | 145 ":nacl_common", |
146 ":nacl_switches", | 146 ":nacl_switches", |
| 147 "renderer/plugin:nacl_trusted_plugin", |
147 "//base", | 148 "//base", |
148 "//content/public/common", | 149 "//content/public/common", |
149 "//content/public/renderer", | 150 "//content/public/renderer", |
150 "//ipc", | 151 "//ipc", |
151 "//net", | 152 "//net", |
152 "//ppapi/c", | 153 "//ppapi/c", |
153 "//ppapi/proxy:ipc", | 154 "//ppapi/proxy:ipc", |
154 "//ppapi/shared_impl", | 155 "//ppapi/shared_impl", |
155 "//third_party/WebKit/public:blink", | 156 "//third_party/WebKit/public:blink", |
156 "renderer/plugin:nacl_trusted_plugin", | |
157 ] | 157 ] |
158 } | 158 } |
159 | 159 |
160 # TODO(GYP): Delete this after we've converted everything to GN. | 160 # TODO(GYP): Delete this after we've converted everything to GN. |
161 # The _run targets exist only for compatibility w/ GYP. | 161 # The _run targets exist only for compatibility w/ GYP. |
162 group("nacl_loader_unittests_run") { | 162 group("nacl_loader_unittests_run") { |
163 testonly = true | 163 testonly = true |
164 deps = [ | 164 deps = [ |
165 ":nacl_loader_unittests", | 165 ":nacl_loader_unittests", |
166 ] | 166 ] |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 | 365 |
366 if (is_linux) { | 366 if (is_linux) { |
367 sources += [ | 367 sources += [ |
368 "common/nacl_paths.cc", | 368 "common/nacl_paths.cc", |
369 "common/nacl_paths.h", | 369 "common/nacl_paths.h", |
370 ] | 370 ] |
371 | 371 |
372 defines = [ "__STDC_LIMIT_MACROS=1" ] | 372 defines = [ "__STDC_LIMIT_MACROS=1" ] |
373 } | 373 } |
374 } | 374 } |
OLD | NEW |