OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'ipc.gypi', | 10 'ipc.gypi', |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 'sync_socket_unittest.cc', | 74 'sync_socket_unittest.cc', |
75 'unix_domain_socket_util_unittest.cc', | 75 'unix_domain_socket_util_unittest.cc', |
76 ], | 76 ], |
77 'conditions': [ | 77 'conditions': [ |
78 ['OS == "win" or OS == "ios"', { | 78 ['OS == "win" or OS == "ios"', { |
79 'sources!': [ | 79 'sources!': [ |
80 'unix_domain_socket_util_unittest.cc', | 80 'unix_domain_socket_util_unittest.cc', |
81 ], | 81 ], |
82 }], | 82 }], |
83 ['OS == "android"', { | 83 ['OS == "android"', { |
| 84 'sources!': [ |
| 85 # These multiprocess tests don't work on Android. |
| 86 'ipc_channel_unittest.cc', |
| 87 ], |
84 'dependencies': [ | 88 'dependencies': [ |
85 '../testing/android/native_test.gyp:native_test_native_code', | 89 '../testing/android/native_test.gyp:native_test_native_code', |
86 ], | 90 ], |
87 }], | 91 }], |
88 ['os_posix == 1 and OS != "mac" and OS != "android"', { | 92 ['os_posix == 1 and OS != "mac" and OS != "android"', { |
89 'conditions': [ | 93 'conditions': [ |
90 ['use_allocator!="none"', { | 94 ['use_allocator!="none"', { |
91 'dependencies': [ | 95 'dependencies': [ |
92 '../base/allocator/allocator.gyp:allocator', | 96 '../base/allocator/allocator.gyp:allocator', |
93 ], | 97 ], |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 '../build/isolate.gypi', | 252 '../build/isolate.gypi', |
249 ], | 253 ], |
250 'sources': [ | 254 'sources': [ |
251 'ipc_tests.isolate', | 255 'ipc_tests.isolate', |
252 ], | 256 ], |
253 }, | 257 }, |
254 ], | 258 ], |
255 }], | 259 }], |
256 ], | 260 ], |
257 } | 261 } |
OLD | NEW |