| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'shared_impl/resource_tracker_unittest.cc', | 156 'shared_impl/resource_tracker_unittest.cc', |
| 157 'shared_impl/tracked_callback_unittest.cc', | 157 'shared_impl/tracked_callback_unittest.cc', |
| 158 'shared_impl/var_tracker_unittest.cc', | 158 'shared_impl/var_tracker_unittest.cc', |
| 159 ], | 159 ], |
| 160 'conditions': [ |
| 161 [ 'linux_use_tcmalloc==1', { |
| 162 'dependencies': [ |
| 163 '../base/allocator/allocator.gyp:allocator', |
| 164 ], |
| 165 }], |
| 166 ], |
| 160 }, | 167 }, |
| 161 { | 168 { |
| 162 'target_name': 'ppapi_example_skeleton', | 169 'target_name': 'ppapi_example_skeleton', |
| 163 'suppress_wildcard': 1, | 170 'suppress_wildcard': 1, |
| 164 'type': 'none', | 171 'type': 'none', |
| 165 'direct_dependent_settings': { | 172 'direct_dependent_settings': { |
| 166 'product_name': '>(_target_name)', | 173 'product_name': '>(_target_name)', |
| 167 'conditions': [ | 174 'conditions': [ |
| 168 ['os_posix==1 and OS!="mac"', { | 175 ['os_posix==1 and OS!="mac"', { |
| 169 'cflags': ['-fvisibility=hidden'], | 176 'cflags': ['-fvisibility=hidden'], |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 'dependencies': [ | 420 'dependencies': [ |
| 414 'ppapi_example_skeleton', | 421 'ppapi_example_skeleton', |
| 415 'ppapi.gyp:ppapi_cpp', | 422 'ppapi.gyp:ppapi_cpp', |
| 416 ], | 423 ], |
| 417 'sources': [ | 424 'sources': [ |
| 418 'examples/printing/printing.cc', | 425 'examples/printing/printing.cc', |
| 419 ], | 426 ], |
| 420 }, | 427 }, |
| 421 ], | 428 ], |
| 422 } | 429 } |
| OLD | NEW |