| 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 29 matching lines...) Expand all Loading... |
| 40 '../testing/gtest.gyp:gtest', | 40 '../testing/gtest.gyp:gtest', |
| 41 ], | 41 ], |
| 42 'include_dirs': [ | 42 'include_dirs': [ |
| 43 '..' | 43 '..' |
| 44 ], | 44 ], |
| 45 'sources': [ | 45 'sources': [ |
| 46 'file_descriptor_set_posix_unittest.cc', | 46 'file_descriptor_set_posix_unittest.cc', |
| 47 'ipc_channel_posix_unittest.cc', | 47 'ipc_channel_posix_unittest.cc', |
| 48 'ipc_fuzzing_tests.cc', | 48 'ipc_fuzzing_tests.cc', |
| 49 'ipc_message_unittest.cc', | 49 'ipc_message_unittest.cc', |
| 50 'ipc_message_utils_unittest.cc', |
| 50 'ipc_send_fds_test.cc', | 51 'ipc_send_fds_test.cc', |
| 51 'ipc_sync_channel_unittest.cc', | 52 'ipc_sync_channel_unittest.cc', |
| 52 'ipc_sync_message_unittest.cc', | 53 'ipc_sync_message_unittest.cc', |
| 53 'ipc_sync_message_unittest.h', | 54 'ipc_sync_message_unittest.h', |
| 54 'ipc_tests.cc', | 55 'ipc_tests.cc', |
| 55 'ipc_tests.h', | 56 'ipc_tests.h', |
| 56 'sync_socket_unittest.cc', | 57 'sync_socket_unittest.cc', |
| 57 ], | 58 ], |
| 58 'conditions': [ | 59 'conditions': [ |
| 59 ['toolkit_uses_gtk == 1', { | 60 ['toolkit_uses_gtk == 1', { |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'variables': { | 134 'variables': { |
| 134 'test_suite_name': 'ipc_tests', | 135 'test_suite_name': 'ipc_tests', |
| 135 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ipc_tests
<(SHARED_LIB_SUFFIX)', | 136 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ipc_tests
<(SHARED_LIB_SUFFIX)', |
| 136 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], | 137 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], |
| 137 }, | 138 }, |
| 138 'includes': [ '../build/apk_test.gypi' ], | 139 'includes': [ '../build/apk_test.gypi' ], |
| 139 }], | 140 }], |
| 140 }], | 141 }], |
| 141 ], | 142 ], |
| 142 } | 143 } |
| OLD | NEW |