| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 # 'tests/test_c_includes.c', | 76 # 'tests/test_c_includes.c', |
| 77 # 'tests/test_cc_includes.cc', | 77 # 'tests/test_cc_includes.cc', |
| 78 # ], | 78 # ], |
| 79 # 'action': [ | 79 # 'action': [ |
| 80 # '<!@(python generate_ppapi_include_tests.py)', | 80 # '<!@(python generate_ppapi_include_tests.py)', |
| 81 # ], | 81 # ], |
| 82 # }, | 82 # }, |
| 83 # ], | 83 # ], |
| 84 }, | 84 }, |
| 85 { | 85 { |
| 86 # GN version: //ppapi:ppapi_unittest_shared |
| 86 'target_name': 'ppapi_unittest_shared', | 87 'target_name': 'ppapi_unittest_shared', |
| 87 'type': 'static_library', | 88 'type': 'static_library', |
| 88 'dependencies': [ | 89 'dependencies': [ |
| 89 'ppapi_proxy', | 90 'ppapi_proxy', |
| 90 'ppapi_shared', | 91 'ppapi_shared', |
| 91 '../base/base.gyp:test_support_base', | 92 '../base/base.gyp:test_support_base', |
| 92 '../ipc/ipc.gyp:ipc', | 93 '../ipc/ipc.gyp:ipc', |
| 93 '../ipc/ipc.gyp:test_support_ipc', | 94 '../ipc/ipc.gyp:test_support_ipc', |
| 94 '../testing/gmock.gyp:gmock', | 95 '../testing/gmock.gyp:gmock', |
| 95 '../testing/gtest.gyp:gtest', | 96 '../testing/gtest.gyp:gtest', |
| 96 ], | 97 ], |
| 97 'sources': [ | 98 'sources': [ |
| 99 # Note: sources list duplicated in GN build. |
| 98 'proxy/ppapi_proxy_test.cc', | 100 'proxy/ppapi_proxy_test.cc', |
| 99 'proxy/ppapi_proxy_test.h', | 101 'proxy/ppapi_proxy_test.h', |
| 100 'proxy/resource_message_test_sink.cc', | 102 'proxy/resource_message_test_sink.cc', |
| 101 'proxy/resource_message_test_sink.h', | 103 'proxy/resource_message_test_sink.h', |
| 102 'shared_impl/test_globals.cc', | 104 'shared_impl/test_globals.cc', |
| 103 'shared_impl/test_globals.h', | 105 'shared_impl/test_globals.h', |
| 104 'shared_impl/unittest_utils.cc', | 106 'shared_impl/unittest_utils.cc', |
| 105 'shared_impl/unittest_utils.h', | 107 'shared_impl/unittest_utils.h', |
| 106 ], | 108 ], |
| 107 }, | 109 }, |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 'lib/gl/include', | 583 'lib/gl/include', |
| 582 ], | 584 ], |
| 583 'sources': [ | 585 'sources': [ |
| 584 'examples/compositor/compositor.cc', | 586 'examples/compositor/compositor.cc', |
| 585 'examples/compositor/spinning_cube.cc', | 587 'examples/compositor/spinning_cube.cc', |
| 586 'examples/compositor/spinning_cube.h', | 588 'examples/compositor/spinning_cube.h', |
| 587 ], | 589 ], |
| 588 }, | 590 }, |
| 589 ], | 591 ], |
| 590 } | 592 } |
| OLD | NEW |