| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 }], | 82 }], |
| 83 ['OS == "android"', { | 83 ['OS == "android"', { |
| 84 'sources!': [ | 84 'sources!': [ |
| 85 # These multiprocess tests don't work on Android. | 85 # These multiprocess tests don't work on Android. |
| 86 'ipc_channel_unittest.cc', | 86 'ipc_channel_unittest.cc', |
| 87 ], | 87 ], |
| 88 'dependencies': [ | 88 'dependencies': [ |
| 89 '../testing/android/native_test.gyp:native_test_native_code', | 89 '../testing/android/native_test.gyp:native_test_native_code', |
| 90 ], | 90 ], |
| 91 }], | 91 }], |
| 92 ['OS == "mac"', { |
| 93 'dependencies': [ |
| 94 '../sandbox/sandbox.gyp:seatbelt', |
| 95 ], |
| 96 }], |
| 92 ], | 97 ], |
| 93 }, | 98 }, |
| 94 { | 99 { |
| 95 'target_name': 'ipc_perftests', | 100 'target_name': 'ipc_perftests', |
| 96 'type': '<(gtest_target_type)', | 101 'type': '<(gtest_target_type)', |
| 97 # TODO(viettrungluu): Figure out which dependencies are really needed. | 102 # TODO(viettrungluu): Figure out which dependencies are really needed. |
| 98 'dependencies': [ | 103 'dependencies': [ |
| 99 'ipc', | 104 'ipc', |
| 100 'test_support_ipc', | 105 'test_support_ipc', |
| 101 '../base/base.gyp:base', | 106 '../base/base.gyp:base', |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 '../build/isolate.gypi', | 239 '../build/isolate.gypi', |
| 235 ], | 240 ], |
| 236 'sources': [ | 241 'sources': [ |
| 237 'ipc_tests.isolate', | 242 'ipc_tests.isolate', |
| 238 ], | 243 ], |
| 239 }, | 244 }, |
| 240 ], | 245 ], |
| 241 }], | 246 }], |
| 242 ], | 247 ], |
| 243 } | 248 } |
| OLD | NEW |