OLD | NEW |
---|---|
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
338 'nacl/browser/nacl_validation_cache_unittest.cc', | 338 'nacl/browser/nacl_validation_cache_unittest.cc', |
339 'nacl/browser/pnacl_host_unittest.cc', | 339 'nacl/browser/pnacl_host_unittest.cc', |
340 'nacl/browser/pnacl_translation_cache_unittest.cc', | 340 'nacl/browser/pnacl_translation_cache_unittest.cc', |
341 'nacl/browser/test_nacl_browser_delegate.cc', | 341 'nacl/browser/test_nacl_browser_delegate.cc', |
342 ], | 342 ], |
343 'dependencies': [ | 343 'dependencies': [ |
344 'nacl.gyp:nacl_browser', | 344 'nacl.gyp:nacl_browser', |
345 'nacl.gyp:nacl_common', | 345 'nacl.gyp:nacl_common', |
346 ], | 346 ], |
347 }], | 347 }], |
348 ['disable_nacl==0 and OS == "linux"', { | |
Mark Seaborn
2014/04/15 23:03:14
Nit: removes spaces around "==" to follow usual Gy
hamaji
2014/04/16 02:10:48
Done.
| |
349 'sources': [ | |
350 'nacl/loader/nonsfi/nonsfi_sandbox_unittest.cc', | |
351 ], | |
352 'dependencies': [ | |
353 'nacl.gyp:nacl_loader', | |
354 '../sandbox/sandbox.gyp:sandbox_linux_test_utils', | |
355 ], | |
356 }], | |
348 ['OS == "mac"', { | 357 ['OS == "mac"', { |
349 'link_settings': { | 358 'link_settings': { |
350 'libraries': [ | 359 'libraries': [ |
351 '$(SDKROOT)/System/Library/Frameworks/AddressBook.framework', | 360 '$(SDKROOT)/System/Library/Frameworks/AddressBook.framework', |
352 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 361 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
353 '$(SDKROOT)/System/Library/Frameworks/ImageCaptureCore.framewo rk', | 362 '$(SDKROOT)/System/Library/Frameworks/ImageCaptureCore.framewo rk', |
354 ], | 363 ], |
355 }, | 364 }, |
356 'sources!': [ | 365 'sources!': [ |
357 'password_manager/core/browser/password_store_default_unittest.c c', | 366 'password_manager/core/browser/password_store_default_unittest.c c', |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
645 'dependencies': [ | 654 'dependencies': [ |
646 '../base/allocator/allocator.gyp:allocator', | 655 '../base/allocator/allocator.gyp:allocator', |
647 ], | 656 ], |
648 }], | 657 }], |
649 ], | 658 ], |
650 }, | 659 }, |
651 ], | 660 ], |
652 }], | 661 }], |
653 ], | 662 ], |
654 } | 663 } |
OLD | NEW |