OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'includes': [ | 6 'includes': [ |
7 '../../../ppapi/ppapi_nacl_test_common.gypi', | 7 '../../../ppapi/ppapi_nacl_test_common.gypi', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 19 matching lines...) Expand all Loading... |
30 'target_name': 'ppapi_tests_extensions_media_galleries', | 30 'target_name': 'ppapi_tests_extensions_media_galleries', |
31 'type': 'none', | 31 'type': 'none', |
32 'variables': { | 32 'variables': { |
33 'nexe_target': 'ppapi_tests_extensions_media_galleries', | 33 'nexe_target': 'ppapi_tests_extensions_media_galleries', |
34 # Only newlib build is used in tests, no need to build others. | 34 # Only newlib build is used in tests, no need to build others. |
35 'build_newlib': 1, | 35 'build_newlib': 1, |
36 'build_glibc': 0, | 36 'build_glibc': 0, |
37 'build_pnacl_newlib': 0, | 37 'build_pnacl_newlib': 0, |
38 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/media_gallerie
s', | 38 'nexe_destination_dir': 'test_data/ppapi/tests/extensions/media_gallerie
s', |
39 'sources': [ | 39 'sources': [ |
40 'media_galleries/test_galleries.cc', | |
41 '<(DEPTH)/ppapi/tests/test_utils.cc', | 40 '<(DEPTH)/ppapi/tests/test_utils.cc', |
42 '<(DEPTH)/ppapi/tests/test_utils.h', | 41 '<(DEPTH)/ppapi/tests/test_utils.h', |
| 42 'media_galleries/test_galleries.cc', |
43 ], | 43 ], |
44 'test_files': [ | 44 'test_files': [ |
45 'media_galleries/background.js', | 45 'media_galleries/background.js', |
46 'media_galleries/index.html', | 46 'media_galleries/index.html', |
47 'media_galleries/manifest.json', | 47 'media_galleries/manifest.json', |
48 'media_galleries/test.js', | 48 'media_galleries/test.js', |
49 ], | 49 ], |
50 }, | 50 }, |
51 }, | 51 }, |
52 { | 52 { |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 }, | 92 }, |
93 }], | 93 }], |
94 ], | 94 ], |
95 # Shim is a dependency for the nexe because we pre-translate. | 95 # Shim is a dependency for the nexe because we pre-translate. |
96 'dependencies': [ | 96 'dependencies': [ |
97 '<(DEPTH)/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shi
m.gyp:aot', | 97 '<(DEPTH)/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shi
m.gyp:aot', |
98 ], | 98 ], |
99 }, | 99 }, |
100 ], | 100 ], |
101 } | 101 } |
OLD | NEW |