| 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_example', | 8 'target_name': 'ppapi_example', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'ppapi.gyp:ppapi_cpp' | 10 'ppapi.gyp:ppapi_cpp' |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 'ppapi_shared', | 122 'ppapi_shared', |
| 123 '../base/base.gyp:test_support_base', | 123 '../base/base.gyp:test_support_base', |
| 124 '../ipc/ipc.gyp:ipc', | 124 '../ipc/ipc.gyp:ipc', |
| 125 '../ipc/ipc.gyp:test_support_ipc', | 125 '../ipc/ipc.gyp:test_support_ipc', |
| 126 '../testing/gmock.gyp:gmock', | 126 '../testing/gmock.gyp:gmock', |
| 127 '../testing/gtest.gyp:gtest', | 127 '../testing/gtest.gyp:gtest', |
| 128 ], | 128 ], |
| 129 'sources': [ | 129 'sources': [ |
| 130 'proxy/ppapi_proxy_test.cc', | 130 'proxy/ppapi_proxy_test.cc', |
| 131 'proxy/ppapi_proxy_test.h', | 131 'proxy/ppapi_proxy_test.h', |
| 132 'proxy/resource_message_test_sink.cc', |
| 133 'proxy/resource_message_test_sink.h', |
| 132 'shared_impl/test_globals.cc', | 134 'shared_impl/test_globals.cc', |
| 133 'shared_impl/test_globals.h', | 135 'shared_impl/test_globals.h', |
| 134 ], | 136 ], |
| 135 }, | 137 }, |
| 136 | 138 |
| 137 { | 139 { |
| 138 'target_name': 'ppapi_perftests', | 140 'target_name': 'ppapi_perftests', |
| 139 'type': 'executable', | 141 'type': 'executable', |
| 140 'variables': { | 142 'variables': { |
| 141 'chromium_code': 1, | 143 'chromium_code': 1, |
| (...skipping 24 matching lines...) Expand all Loading... |
| 166 '../gpu/gpu.gyp:gpu_ipc', | 168 '../gpu/gpu.gyp:gpu_ipc', |
| 167 '../ipc/ipc.gyp:ipc', | 169 '../ipc/ipc.gyp:ipc', |
| 168 '../ipc/ipc.gyp:test_support_ipc', | 170 '../ipc/ipc.gyp:test_support_ipc', |
| 169 '../testing/gmock.gyp:gmock', | 171 '../testing/gmock.gyp:gmock', |
| 170 '../testing/gtest.gyp:gtest', | 172 '../testing/gtest.gyp:gtest', |
| 171 '../ui/surface/surface.gyp:surface', | 173 '../ui/surface/surface.gyp:surface', |
| 172 ], | 174 ], |
| 173 'sources': [ | 175 'sources': [ |
| 174 'proxy/run_all_unittests.cc', | 176 'proxy/run_all_unittests.cc', |
| 175 | 177 |
| 178 'proxy/file_chooser_resource_unittest.cc', |
| 176 'proxy/mock_resource.cc', | 179 'proxy/mock_resource.cc', |
| 177 'proxy/mock_resource.h', | 180 'proxy/mock_resource.h', |
| 178 'proxy/plugin_dispatcher_unittest.cc', | 181 'proxy/plugin_dispatcher_unittest.cc', |
| 179 'proxy/plugin_resource_tracker_unittest.cc', | 182 'proxy/plugin_resource_tracker_unittest.cc', |
| 180 'proxy/plugin_var_tracker_unittest.cc', | 183 'proxy/plugin_var_tracker_unittest.cc', |
| 181 'proxy/ppb_var_unittest.cc', | 184 'proxy/ppb_var_unittest.cc', |
| 182 'proxy/ppp_instance_private_proxy_unittest.cc', | 185 'proxy/ppp_instance_private_proxy_unittest.cc', |
| 183 'proxy/ppp_instance_proxy_unittest.cc', | 186 'proxy/ppp_instance_proxy_unittest.cc', |
| 184 'proxy/ppp_messaging_proxy_unittest.cc', | 187 'proxy/ppp_messaging_proxy_unittest.cc', |
| 185 'proxy/serialized_var_unittest.cc', | 188 'proxy/serialized_var_unittest.cc', |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 'dependencies': [ | 436 'dependencies': [ |
| 434 'ppapi_example_skeleton', | 437 'ppapi_example_skeleton', |
| 435 'ppapi.gyp:ppapi_cpp', | 438 'ppapi.gyp:ppapi_cpp', |
| 436 ], | 439 ], |
| 437 'sources': [ | 440 'sources': [ |
| 438 'examples/printing/printing.cc', | 441 'examples/printing/printing.cc', |
| 439 ], | 442 ], |
| 440 }, | 443 }, |
| 441 ], | 444 ], |
| 442 } | 445 } |
| OLD | NEW |