| 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 # GN version: //ppapi:ppapi_tests | 8 # GN version: //ppapi:ppapi_tests |
| 9 'target_name': 'ppapi_tests', | 9 'target_name': 'ppapi_tests', |
| 10 'type': 'loadable_module', | 10 'type': 'loadable_module', |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 ], | 646 ], |
| 647 'sources': [ | 647 'sources': [ |
| 648 'examples/compositor/compositor.cc', | 648 'examples/compositor/compositor.cc', |
| 649 'examples/compositor/spinning_cube.cc', | 649 'examples/compositor/spinning_cube.cc', |
| 650 'examples/compositor/spinning_cube.h', | 650 'examples/compositor/spinning_cube.h', |
| 651 ], | 651 ], |
| 652 }, | 652 }, |
| 653 # Adding a new PPAPI example? Don't forget to update the GN build. | 653 # Adding a new PPAPI example? Don't forget to update the GN build. |
| 654 # See //ppapi/examples/BUILD.gn | 654 # See //ppapi/examples/BUILD.gn |
| 655 ], | 655 ], |
| 656 'conditions': [ |
| 657 ['test_isolation_mode != "noop"', { |
| 658 'targets': [ |
| 659 { |
| 660 'target_name': 'ppapi_unittests_run', |
| 661 'type': 'none', |
| 662 'dependencies': [ |
| 663 'ppapi_unittests', |
| 664 ], |
| 665 'includes': [ '../build/isolate.gypi' ], |
| 666 'sources': [ 'ppapi_unittests.isolate' ], |
| 667 }, |
| 668 ], |
| 669 }], |
| 670 ], |
| 656 } | 671 } |
| OLD | NEW |