Chromium Code Reviews| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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': [ | 195 'conditions': [ | 
| 196 ['OS=="linux"', { | 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': [ | 197 'dependencies': [ | 
| 208 'nacl_linux', | 198 'nacl_linux', | 
| 
 
Mark Seaborn
2015/10/15 18:10:10
You might want to check whether these 2 dependenci
 
hidehiko
2015/10/19 04:39:17
Done.
 
 | |
| 209 '../sandbox/sandbox.gyp:sandbox_linux_test_utils', | 199 '../sandbox/sandbox.gyp:sandbox_linux_test_utils', | 
| 210 ], | 200 ], | 
| 211 }], | 201 }], | 
| 212 ], | 202 ], | 
| 213 }, | 203 }, | 
| 214 ], | 204 ], | 
| 215 'conditions': [ | 205 'conditions': [ | 
| 216 ['OS=="linux"', { | 206 ['OS=="linux"', { | 
| 217 'targets': [ | 207 'targets': [ | 
| 218 { | 208 { | 
| (...skipping 24 matching lines...) Expand all Loading... | |
| 243 'type': 'static_library', | 233 'type': 'static_library', | 
| 244 'include_dirs': [ | 234 'include_dirs': [ | 
| 245 '..', | 235 '..', | 
| 246 ], | 236 ], | 
| 247 'defines': [ | 237 'defines': [ | 
| 248 # Allow .cc files to know if they're being compiled as part | 238 # Allow .cc files to know if they're being compiled as part | 
| 249 # of nacl_helper. | 239 # of nacl_helper. | 
| 250 'IN_NACL_HELPER=1', | 240 'IN_NACL_HELPER=1', | 
| 251 ], | 241 ], | 
| 252 'sources': [ | 242 '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', | 243 'nacl/loader/sandbox_linux/nacl_bpf_sandbox_linux.cc', | 
| 287 'nacl/loader/sandbox_linux/nacl_sandbox_linux.cc', | 244 'nacl/loader/sandbox_linux/nacl_sandbox_linux.cc', | 
| 288 ], | 245 ], | 
| 289 'dependencies': [ | 246 'dependencies': [ | 
| 290 'nacl', | 247 'nacl', | 
| 291 'nacl_common', | 248 'nacl_common', | 
| 292 'nacl_switches', | 249 'nacl_switches', | 
| 293 '../components/tracing.gyp:tracing', | |
| 294 '../crypto/crypto.gyp:crypto', | 250 '../crypto/crypto.gyp:crypto', | 
| 295 '../sandbox/sandbox.gyp:sandbox', | 251 '../sandbox/sandbox.gyp:sandbox', | 
| 296 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | |
| 297 ], | 252 ], | 
| 298 'conditions': [ | 253 'conditions': [ | 
| 299 ['use_glib == 1', { | 254 ['use_glib == 1', { | 
| 300 'dependencies': [ | 255 'dependencies': [ | 
| 301 '../build/linux/system.gyp:glib', | 256 '../build/linux/system.gyp:glib', | 
| 302 ], | 257 ], | 
| 303 }], | 258 }], | 
| 304 ['os_posix == 1 and OS != "mac"', { | 259 ['os_posix == 1 and OS != "mac"', { | 
| 305 'conditions': [ | 260 'conditions': [ | 
| 306 ['use_allocator!="none"', { | 261 ['use_allocator!="none"', { | 
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 506 ], | 461 ], | 
| 507 'include_dirs': [ | 462 'include_dirs': [ | 
| 508 '..', | 463 '..', | 
| 509 ], | 464 ], | 
| 510 'dependencies': [ | 465 'dependencies': [ | 
| 511 '../content/content.gyp:content_common', | 466 '../content/content.gyp:content_common', | 
| 512 ], | 467 ], | 
| 513 }, | 468 }, | 
| 514 ] | 469 ] | 
| 515 } | 470 } | 
| OLD | NEW |