OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'json_schema_compiler_tests', |
| 9 'type': 'static_library', |
| 10 'variables': { |
| 11 'chromium_code': 1, |
| 12 'json_schema_files': [ |
| 13 'array.json', |
| 14 'choices.json', |
| 15 'crossref.json', |
| 16 'simple_api.json', |
| 17 ], |
| 18 'cc_dir': 'tools/json_schema_compiler/test', |
| 19 'root_namespace': 'test::api', |
| 20 }, |
| 21 'sources': [ |
| 22 '<@(json_schema_files)', |
| 23 ], |
| 24 'includes': ['../../../build/json_schema_compile.gypi'], |
| 25 }, |
| 26 ], |
| 27 } |
OLD | NEW |