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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 'unix_domain_socket_util_unittest.cc', | 67 'unix_domain_socket_util_unittest.cc', |
68 ], | 68 ], |
69 }], | 69 }], |
70 ['OS == "android" and gtest_target_type == "shared_library"', { | 70 ['OS == "android" and gtest_target_type == "shared_library"', { |
71 'dependencies': [ | 71 'dependencies': [ |
72 '../testing/android/native_test.gyp:native_test_native_code', | 72 '../testing/android/native_test.gyp:native_test_native_code', |
73 ], | 73 ], |
74 }], | 74 }], |
75 ['os_posix == 1 and OS != "mac" and OS != "android"', { | 75 ['os_posix == 1 and OS != "mac" and OS != "android"', { |
76 'conditions': [ | 76 'conditions': [ |
77 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 77 ['use_allocator!="none"', { |
78 ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (
use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', { | |
79 'dependencies': [ | 78 'dependencies': [ |
80 '../base/allocator/allocator.gyp:allocator', | 79 '../base/allocator/allocator.gyp:allocator', |
81 ], | 80 ], |
82 }], | 81 }], |
83 ], | 82 ], |
84 }] | 83 }] |
85 ], | 84 ], |
86 }, | 85 }, |
87 { | 86 { |
88 'target_name': 'ipc_perftests', | 87 'target_name': 'ipc_perftests', |
(...skipping 17 matching lines...) Expand all Loading... |
106 'ipc_test_base.h', | 105 'ipc_test_base.h', |
107 ], | 106 ], |
108 'conditions': [ | 107 'conditions': [ |
109 ['OS == "android" and gtest_target_type == "shared_library"', { | 108 ['OS == "android" and gtest_target_type == "shared_library"', { |
110 'dependencies': [ | 109 'dependencies': [ |
111 '../testing/android/native_test.gyp:native_test_native_code', | 110 '../testing/android/native_test.gyp:native_test_native_code', |
112 ], | 111 ], |
113 }], | 112 }], |
114 ['os_posix == 1 and OS != "mac" and OS != "android"', { | 113 ['os_posix == 1 and OS != "mac" and OS != "android"', { |
115 'conditions': [ | 114 'conditions': [ |
116 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 115 ['use_allocator!="none"', { |
117 ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (
use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', { | |
118 'dependencies': [ | 116 'dependencies': [ |
119 '../base/allocator/allocator.gyp:allocator', | 117 '../base/allocator/allocator.gyp:allocator', |
120 ], | 118 ], |
121 }], | 119 }], |
122 ], | 120 ], |
123 }] | 121 }] |
124 ], | 122 ], |
125 }, | 123 }, |
126 { | 124 { |
127 'target_name': 'test_support_ipc', | 125 'target_name': 'test_support_ipc', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 'ipc_perftests', | 190 'ipc_perftests', |
193 ], | 191 ], |
194 'variables': { | 192 'variables': { |
195 'test_suite_name': 'ipc_perftests', | 193 'test_suite_name': 'ipc_perftests', |
196 }, | 194 }, |
197 'includes': [ '../build/apk_test.gypi' ], | 195 'includes': [ '../build/apk_test.gypi' ], |
198 }], | 196 }], |
199 }], | 197 }], |
200 ], | 198 ], |
201 } | 199 } |
OLD | NEW |