| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 'proxy/mock_resource.h', | 146 'proxy/mock_resource.h', |
| 147 'proxy/plugin_dispatcher_unittest.cc', | 147 'proxy/plugin_dispatcher_unittest.cc', |
| 148 'proxy/plugin_resource_tracker_unittest.cc', | 148 'proxy/plugin_resource_tracker_unittest.cc', |
| 149 'proxy/plugin_var_tracker_unittest.cc', | 149 'proxy/plugin_var_tracker_unittest.cc', |
| 150 'proxy/ppb_var_unittest.cc', | 150 'proxy/ppb_var_unittest.cc', |
| 151 'proxy/ppp_instance_private_proxy_unittest.cc', | 151 'proxy/ppp_instance_private_proxy_unittest.cc', |
| 152 'proxy/ppp_instance_proxy_unittest.cc', | 152 'proxy/ppp_instance_proxy_unittest.cc', |
| 153 'proxy/ppp_messaging_proxy_unittest.cc', | 153 'proxy/ppp_messaging_proxy_unittest.cc', |
| 154 'proxy/printing_resource_unittest.cc', | 154 'proxy/printing_resource_unittest.cc', |
| 155 'proxy/serialized_var_unittest.cc', | 155 'proxy/serialized_var_unittest.cc', |
| 156 'proxy/websocket_resource_unittest.cc', |
| 156 'shared_impl/resource_tracker_unittest.cc', | 157 'shared_impl/resource_tracker_unittest.cc', |
| 157 'shared_impl/tracked_callback_unittest.cc', | 158 'shared_impl/tracked_callback_unittest.cc', |
| 158 'shared_impl/var_tracker_unittest.cc', | 159 'shared_impl/var_tracker_unittest.cc', |
| 159 ], | 160 ], |
| 160 'conditions': [ | 161 'conditions': [ |
| 161 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 162 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
| 162 'conditions': [ | 163 'conditions': [ |
| 163 [ 'linux_use_tcmalloc == 1', { | 164 [ 'linux_use_tcmalloc == 1', { |
| 164 'dependencies': [ | 165 'dependencies': [ |
| 165 '../base/allocator/allocator.gyp:allocator', | 166 '../base/allocator/allocator.gyp:allocator', |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 'dependencies': [ | 425 'dependencies': [ |
| 425 'ppapi_example_skeleton', | 426 'ppapi_example_skeleton', |
| 426 'ppapi.gyp:ppapi_cpp', | 427 'ppapi.gyp:ppapi_cpp', |
| 427 ], | 428 ], |
| 428 'sources': [ | 429 'sources': [ |
| 429 'examples/printing/printing.cc', | 430 'examples/printing/printing.cc', |
| 430 ], | 431 ], |
| 431 }, | 432 }, |
| 432 ], | 433 ], |
| 433 } | 434 } |
| OLD | NEW |