| 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: //tools/json_schema_compiler:test |
| 8 'target_name': 'json_schema_compiler_tests', | 9 'target_name': 'json_schema_compiler_tests', |
| 9 'type': 'static_library', | 10 'type': 'static_library', |
| 10 'variables': { | 11 'variables': { |
| 11 'chromium_code': 1, | 12 'chromium_code': 1, |
| 12 'schema_files': [ | 13 'schema_files': [ |
| 13 'additional_properties.json', | 14 'additional_properties.json', |
| 14 'any.json', | 15 'any.json', |
| 15 'arrays.json', | 16 'arrays.json', |
| 16 'callbacks.json', | 17 'callbacks.json', |
| 17 'choices.json', | 18 'choices.json', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 37 '<@(schema_files)', | 38 '<@(schema_files)', |
| 38 'test_util.cc', | 39 'test_util.cc', |
| 39 'test_util.h', | 40 'test_util.h', |
| 40 ], | 41 ], |
| 41 'includes': ['../../../build/json_schema_compile.gypi'], | 42 'includes': ['../../../build/json_schema_compile.gypi'], |
| 42 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 43 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 43 'msvs_disabled_warnings': [4267, ], | 44 'msvs_disabled_warnings': [4267, ], |
| 44 }, | 45 }, |
| 45 ], | 46 ], |
| 46 } | 47 } |
| OLD | NEW |