| 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", | |
| 148 "//base", | 147 "//base", |
| 149 "//content/public/common", | 148 "//content/public/common", |
| 150 "//content/public/renderer", | 149 "//content/public/renderer", |
| 151 "//ipc", | 150 "//ipc", |
| 152 "//net", | 151 "//net", |
| 153 "//ppapi/c", | 152 "//ppapi/c", |
| 154 "//ppapi/proxy:ipc", | 153 "//ppapi/proxy:ipc", |
| 155 "//ppapi/shared_impl", | 154 "//ppapi/shared_impl", |
| 156 "//third_party/WebKit/public:blink", | 155 "//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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 "loader/nacl_helper_linux.cc", | 252 "loader/nacl_helper_linux.cc", |
| 253 "loader/nacl_helper_linux.h", | 253 "loader/nacl_helper_linux.h", |
| 254 "loader/nacl_trusted_listener.cc", | 254 "loader/nacl_trusted_listener.cc", |
| 255 "loader/nacl_trusted_listener.h", | 255 "loader/nacl_trusted_listener.h", |
| 256 "loader/nonsfi/nonsfi_listener.cc", | 256 "loader/nonsfi/nonsfi_listener.cc", |
| 257 "loader/nonsfi/nonsfi_listener.h", | 257 "loader/nonsfi/nonsfi_listener.h", |
| 258 "loader/nonsfi/nonsfi_main.cc", | 258 "loader/nonsfi/nonsfi_main.cc", |
| 259 "loader/nonsfi/nonsfi_main.h", | 259 "loader/nonsfi/nonsfi_main.h", |
| 260 ] | 260 ] |
| 261 deps = [ | 261 deps = [ |
| 262 ":nacl_helper_nonsfi_sandbox", |
| 262 ":nacl_switches", | 263 ":nacl_switches", |
| 263 ":nacl_helper_nonsfi_sandbox", | |
| 264 "//base", | 264 "//base", |
| 265 "//components/tracing", | 265 "//components/tracing", |
| 266 "//content", | 266 "//content", |
| 267 "//ipc", | 267 "//ipc", |
| 268 "//native_client/src/nonsfi/irt:nacl_sys_private", | 268 "//native_client/src/nonsfi/irt:nacl_sys_private", |
| 269 "//native_client/src/nonsfi/loader:elf_loader", | 269 "//native_client/src/nonsfi/loader:elf_loader", |
| 270 "//native_client/src/untrusted/nacl:nacl", | 270 "//native_client/src/untrusted/nacl:nacl", |
| 271 "//ppapi/proxy", | 271 "//ppapi/proxy", |
| 272 "//sandbox/linux:sandbox", | 272 "//sandbox/linux:sandbox", |
| 273 ] | 273 ] |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 | 349 |
| 350 if (is_linux) { | 350 if (is_linux) { |
| 351 sources += [ | 351 sources += [ |
| 352 "common/nacl_paths.cc", | 352 "common/nacl_paths.cc", |
| 353 "common/nacl_paths.h", | 353 "common/nacl_paths.h", |
| 354 ] | 354 ] |
| 355 | 355 |
| 356 defines = [ "__STDC_LIMIT_MACROS=1" ] | 356 defines = [ "__STDC_LIMIT_MACROS=1" ] |
| 357 } | 357 } |
| 358 } | 358 } |
| OLD | NEW |