| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'variables': { | 10 'variables': { |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 'nacl/loader/nacl_ipc_adapter_unittest.cc', | 185 'nacl/loader/nacl_ipc_adapter_unittest.cc', |
| 186 'nacl/loader/nacl_validation_query_unittest.cc', | 186 'nacl/loader/nacl_validation_query_unittest.cc', |
| 187 'nacl/loader/run_all_unittests.cc', | 187 'nacl/loader/run_all_unittests.cc', |
| 188 ], | 188 ], |
| 189 'dependencies': [ | 189 'dependencies': [ |
| 190 'nacl', | 190 'nacl', |
| 191 '../base/base.gyp:test_support_base', | 191 '../base/base.gyp:test_support_base', |
| 192 '../ipc/ipc.gyp:test_support_ipc', | 192 '../ipc/ipc.gyp:test_support_ipc', |
| 193 '../testing/gtest.gyp:gtest', | 193 '../testing/gtest.gyp:gtest', |
| 194 ], | 194 ], |
| 195 'conditions': [ | |
| 196 ['OS=="linux"', { | |
| 197 'sources': [ | |
| 198 # TODO(mazda): Move this to browser_tests once we have | |
| 199 # established a way to run browser_tests on ARM Chrome OS | |
| 200 # devices (http://crbug.com/364729). | |
| 201 'nacl/loader/nonsfi/irt_icache_unittest.cc', | |
| 202 # TODO(hamaji): Currently, we build them twice. Stop building | |
| 203 # them for components_unittests. See crbug.com/364751 | |
| 204 'nacl/loader/nonsfi/nonsfi_sandbox_sigsys_unittest.cc', | |
| 205 'nacl/loader/nonsfi/nonsfi_sandbox_unittest.cc', | |
| 206 ], | |
| 207 'dependencies': [ | |
| 208 'nacl_linux', | |
| 209 '../sandbox/sandbox.gyp:sandbox_linux_test_utils', | |
| 210 ], | |
| 211 }], | |
| 212 ], | |
| 213 }, | 195 }, |
| 214 ], | 196 ], |
| 215 'conditions': [ | 197 'conditions': [ |
| 216 ['OS=="linux"', { | 198 ['OS=="linux"', { |
| 217 'targets': [ | 199 'targets': [ |
| 218 { | 200 { |
| 219 'target_name': 'nacl_helper', | 201 'target_name': 'nacl_helper', |
| 220 'type': 'executable', | 202 'type': 'executable', |
| 221 'include_dirs': [ | 203 'include_dirs': [ |
| 222 '..', | 204 '..', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 243 'type': 'static_library', | 225 'type': 'static_library', |
| 244 'include_dirs': [ | 226 'include_dirs': [ |
| 245 '..', | 227 '..', |
| 246 ], | 228 ], |
| 247 'defines': [ | 229 'defines': [ |
| 248 # Allow .cc files to know if they're being compiled as part | 230 # Allow .cc files to know if they're being compiled as part |
| 249 # of nacl_helper. | 231 # of nacl_helper. |
| 250 'IN_NACL_HELPER=1', | 232 'IN_NACL_HELPER=1', |
| 251 ], | 233 ], |
| 252 'sources': [ | 234 'sources': [ |
| 253 '../ppapi/nacl_irt/irt_manifest.h', | |
| 254 '../ppapi/nacl_irt/manifest_service.cc', | |
| 255 '../ppapi/nacl_irt/manifest_service.h', | |
| 256 '../ppapi/nacl_irt/plugin_main.cc', | |
| 257 '../ppapi/nacl_irt/plugin_main.h', | |
| 258 '../ppapi/nacl_irt/plugin_startup.cc', | |
| 259 '../ppapi/nacl_irt/plugin_startup.h', | |
| 260 '../ppapi/nacl_irt/ppapi_dispatcher.cc', | |
| 261 '../ppapi/nacl_irt/ppapi_dispatcher.h', | |
| 262 'nacl/loader/nonsfi/abi_conversion.cc', | |
| 263 'nacl/loader/nonsfi/abi_conversion.h', | |
| 264 'nacl/loader/nonsfi/elf_loader.cc', | |
| 265 'nacl/loader/nonsfi/elf_loader.h', | |
| 266 'nacl/loader/nonsfi/irt_basic.cc', | |
| 267 'nacl/loader/nonsfi/irt_clock.cc', | |
| 268 'nacl/loader/nonsfi/irt_exception_handling.cc', | |
| 269 'nacl/loader/nonsfi/irt_fdio.cc', | |
| 270 'nacl/loader/nonsfi/irt_futex.cc', | |
| 271 'nacl/loader/nonsfi/irt_icache.cc', | |
| 272 'nacl/loader/nonsfi/irt_interfaces.cc', | |
| 273 'nacl/loader/nonsfi/irt_interfaces.h', | |
| 274 'nacl/loader/nonsfi/irt_memory.cc', | |
| 275 'nacl/loader/nonsfi/irt_ppapi.cc', | |
| 276 'nacl/loader/nonsfi/irt_random.cc', | |
| 277 'nacl/loader/nonsfi/irt_resource_open.cc', | |
| 278 'nacl/loader/nonsfi/irt_thread.cc', | |
| 279 'nacl/loader/nonsfi/irt_util.h', | |
| 280 'nacl/loader/nonsfi/nonsfi_listener.cc', | |
| 281 'nacl/loader/nonsfi/nonsfi_listener.h', | |
| 282 'nacl/loader/nonsfi/nonsfi_main.cc', | |
| 283 'nacl/loader/nonsfi/nonsfi_main.h', | |
| 284 'nacl/loader/nonsfi/nonsfi_sandbox.cc', | |
| 285 'nacl/loader/nonsfi/nonsfi_sandbox.h', | |
| 286 'nacl/loader/sandbox_linux/nacl_bpf_sandbox_linux.cc', | 235 'nacl/loader/sandbox_linux/nacl_bpf_sandbox_linux.cc', |
| 287 'nacl/loader/sandbox_linux/nacl_sandbox_linux.cc', | 236 'nacl/loader/sandbox_linux/nacl_sandbox_linux.cc', |
| 288 ], | 237 ], |
| 289 'dependencies': [ | 238 'dependencies': [ |
| 290 'nacl', | 239 'nacl', |
| 291 'nacl_common', | 240 'nacl_common', |
| 292 'nacl_switches', | 241 'nacl_switches', |
| 293 '../components/tracing.gyp:tracing', | |
| 294 '../crypto/crypto.gyp:crypto', | 242 '../crypto/crypto.gyp:crypto', |
| 295 '../sandbox/sandbox.gyp:sandbox', | 243 '../sandbox/sandbox.gyp:sandbox', |
| 296 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | |
| 297 ], | 244 ], |
| 298 'conditions': [ | 245 'conditions': [ |
| 299 ['use_glib == 1', { | 246 ['use_glib == 1', { |
| 300 'dependencies': [ | 247 'dependencies': [ |
| 301 '../build/linux/system.gyp:glib', | 248 '../build/linux/system.gyp:glib', |
| 302 ], | 249 ], |
| 303 }], | 250 }], |
| 304 ['os_posix == 1 and OS != "mac"', { | 251 ['os_posix == 1 and OS != "mac"', { |
| 305 'conditions': [ | 252 'conditions': [ |
| 306 ['use_allocator!="none"', { | 253 ['use_allocator!="none"', { |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 ], | 453 ], |
| 507 'include_dirs': [ | 454 'include_dirs': [ |
| 508 '..', | 455 '..', |
| 509 ], | 456 ], |
| 510 'dependencies': [ | 457 'dependencies': [ |
| 511 '../content/content.gyp:content_common', | 458 '../content/content.gyp:content_common', |
| 512 ], | 459 ], |
| 513 }, | 460 }, |
| 514 ] | 461 ] |
| 515 } | 462 } |
| OLD | NEW |