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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'ppapi_tests', | 8 'target_name': 'ppapi_tests', |
9 'type': 'loadable_module', | 9 'type': 'loadable_module', |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 'proxy/plugin_resource_tracker_unittest.cc', | 151 'proxy/plugin_resource_tracker_unittest.cc', |
152 'proxy/plugin_var_tracker_unittest.cc', | 152 'proxy/plugin_var_tracker_unittest.cc', |
153 'proxy/ppb_var_unittest.cc', | 153 'proxy/ppb_var_unittest.cc', |
154 'proxy/ppp_instance_private_proxy_unittest.cc', | 154 'proxy/ppp_instance_private_proxy_unittest.cc', |
155 'proxy/ppp_instance_proxy_unittest.cc', | 155 'proxy/ppp_instance_proxy_unittest.cc', |
156 'proxy/ppp_messaging_proxy_unittest.cc', | 156 'proxy/ppp_messaging_proxy_unittest.cc', |
157 'proxy/printing_resource_unittest.cc', | 157 'proxy/printing_resource_unittest.cc', |
158 'proxy/serialized_var_unittest.cc', | 158 'proxy/serialized_var_unittest.cc', |
159 'proxy/websocket_resource_unittest.cc', | 159 'proxy/websocket_resource_unittest.cc', |
160 'shared_impl/resource_tracker_unittest.cc', | 160 'shared_impl/resource_tracker_unittest.cc', |
| 161 'shared_impl/thread_aware_callback_unittest.cc', |
161 'shared_impl/time_conversion_unittest.cc', | 162 'shared_impl/time_conversion_unittest.cc', |
162 'shared_impl/tracked_callback_unittest.cc', | 163 'shared_impl/tracked_callback_unittest.cc', |
163 'shared_impl/var_tracker_unittest.cc', | 164 'shared_impl/var_tracker_unittest.cc', |
164 ], | 165 ], |
165 'conditions': [ | 166 'conditions': [ |
166 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 167 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
167 'conditions': [ | 168 'conditions': [ |
168 [ 'linux_use_tcmalloc == 1', { | 169 [ 'linux_use_tcmalloc == 1', { |
169 'dependencies': [ | 170 'dependencies': [ |
170 '../base/allocator/allocator.gyp:allocator', | 171 '../base/allocator/allocator.gyp:allocator', |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 'dependencies': [ | 450 'dependencies': [ |
450 'ppapi_example_skeleton', | 451 'ppapi_example_skeleton', |
451 'ppapi.gyp:ppapi_cpp', | 452 'ppapi.gyp:ppapi_cpp', |
452 ], | 453 ], |
453 'sources': [ | 454 'sources': [ |
454 'examples/printing/printing.cc', | 455 'examples/printing/printing.cc', |
455 ], | 456 ], |
456 }, | 457 }, |
457 ], | 458 ], |
458 } | 459 } |
OLD | NEW |