| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'sandbox', | 8 'target_name': 'sandbox', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'sources': [ | 10 'sources': [ |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 '..', | 104 '..', |
| 105 ], | 105 ], |
| 106 'link_settings': { | 106 'link_settings': { |
| 107 'libraries': [ | 107 'libraries': [ |
| 108 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 108 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 109 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 109 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 110 ], | 110 ], |
| 111 }, | 111 }, |
| 112 }, | 112 }, |
| 113 ], | 113 ], |
| 114 'conditions': [ |
| 115 ['test_isolation_mode != "noop"', { |
| 116 'targets': [ |
| 117 { |
| 118 'target_name': 'sandbox_mac_unittests_run', |
| 119 'type': 'none', |
| 120 'dependencies': [ |
| 121 'sandbox_mac_unittests', |
| 122 ], |
| 123 'includes': [ '../../build/isolate.gypi' ], |
| 124 'sources': [ '../sandbox_mac_unittests.isolate' ], |
| 125 }, |
| 126 ], |
| 127 }], |
| 128 ], |
| 114 } | 129 } |
| OLD | NEW |