| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 'proxy/ppp_messaging_proxy_perftest.cc', | 119 'proxy/ppp_messaging_proxy_perftest.cc', |
| 120 ], | 120 ], |
| 121 }, | 121 }, |
| 122 { | 122 { |
| 123 'target_name': 'ppapi_unittests', | 123 'target_name': 'ppapi_unittests', |
| 124 'type': 'executable', | 124 'type': 'executable', |
| 125 'variables': { | 125 'variables': { |
| 126 'chromium_code': 1, | 126 'chromium_code': 1, |
| 127 }, | 127 }, |
| 128 'dependencies': [ | 128 'dependencies': [ |
| 129 'ppapi_host', |
| 129 'ppapi_proxy', | 130 'ppapi_proxy', |
| 130 'ppapi_shared', | 131 'ppapi_shared', |
| 131 'ppapi_unittest_shared', | 132 'ppapi_unittest_shared', |
| 132 '../base/base.gyp:test_support_base', | 133 '../base/base.gyp:test_support_base', |
| 133 '../gpu/gpu.gyp:gpu_ipc', | 134 '../gpu/gpu.gyp:gpu_ipc', |
| 134 '../ipc/ipc.gyp:ipc', | 135 '../ipc/ipc.gyp:ipc', |
| 135 '../ipc/ipc.gyp:test_support_ipc', | 136 '../ipc/ipc.gyp:test_support_ipc', |
| 136 '../media/media.gyp:shared_memory_support', | 137 '../media/media.gyp:shared_memory_support', |
| 137 '../testing/gmock.gyp:gmock', | 138 '../testing/gmock.gyp:gmock', |
| 138 '../testing/gtest.gyp:gtest', | 139 '../testing/gtest.gyp:gtest', |
| 139 '../ui/surface/surface.gyp:surface', | 140 '../ui/surface/surface.gyp:surface', |
| 140 ], | 141 ], |
| 141 'sources': [ | 142 'sources': [ |
| 142 'proxy/run_all_unittests.cc', | 143 'proxy/run_all_unittests.cc', |
| 143 | 144 |
| 145 'host/resource_message_filter_unittest.cc', |
| 144 'proxy/file_chooser_resource_unittest.cc', | 146 'proxy/file_chooser_resource_unittest.cc', |
| 145 'proxy/flash_resource_unittest.cc', | 147 'proxy/flash_resource_unittest.cc', |
| 146 'proxy/mock_resource.cc', | 148 'proxy/mock_resource.cc', |
| 147 'proxy/mock_resource.h', | 149 'proxy/mock_resource.h', |
| 148 'proxy/plugin_dispatcher_unittest.cc', | 150 'proxy/plugin_dispatcher_unittest.cc', |
| 149 'proxy/plugin_resource_tracker_unittest.cc', | 151 'proxy/plugin_resource_tracker_unittest.cc', |
| 150 'proxy/plugin_var_tracker_unittest.cc', | 152 'proxy/plugin_var_tracker_unittest.cc', |
| 151 'proxy/ppb_var_unittest.cc', | 153 'proxy/ppb_var_unittest.cc', |
| 152 'proxy/ppp_instance_private_proxy_unittest.cc', | 154 'proxy/ppp_instance_private_proxy_unittest.cc', |
| 153 'proxy/ppp_instance_proxy_unittest.cc', | 155 'proxy/ppp_instance_proxy_unittest.cc', |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 'dependencies': [ | 438 'dependencies': [ |
| 437 'ppapi_example_skeleton', | 439 'ppapi_example_skeleton', |
| 438 'ppapi.gyp:ppapi_cpp', | 440 'ppapi.gyp:ppapi_cpp', |
| 439 ], | 441 ], |
| 440 'sources': [ | 442 'sources': [ |
| 441 'examples/printing/printing.cc', | 443 'examples/printing/printing.cc', |
| 442 ], | 444 ], |
| 443 }, | 445 }, |
| 444 ], | 446 ], |
| 445 } | 447 } |
| OLD | NEW |