| 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 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 ], | 657 ], |
| 658 'sources': [ | 658 'sources': [ |
| 659 'examples/compositor/compositor.cc', | 659 'examples/compositor/compositor.cc', |
| 660 'examples/compositor/spinning_cube.cc', | 660 'examples/compositor/spinning_cube.cc', |
| 661 'examples/compositor/spinning_cube.h', | 661 'examples/compositor/spinning_cube.h', |
| 662 ], | 662 ], |
| 663 }, | 663 }, |
| 664 # Adding a new PPAPI example? Don't forget to update the GN build. | 664 # Adding a new PPAPI example? Don't forget to update the GN build. |
| 665 # See //ppapi/examples/BUILD.gn | 665 # See //ppapi/examples/BUILD.gn |
| 666 ], | 666 ], |
| 667 'conditions': [ |
| 668 ['test_isolation_mode != "noop"', { |
| 669 'targets': [ |
| 670 { |
| 671 'target_name': 'ppapi_unittests_run', |
| 672 'type': 'none', |
| 673 'dependencies': [ |
| 674 'ppapi_unittests', |
| 675 ], |
| 676 'includes': [ '../build/isolate.gypi' ], |
| 677 'sources': [ 'ppapi_unittests.isolate' ], |
| 678 }, |
| 679 ], |
| 680 }], |
| 681 ], |
| 667 } | 682 } |
| OLD | NEW |