| 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 'target_name': 'api', | 8 'target_name': 'api', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'sources': [ | 10 'sources': [ |
| 11 '<@(schema_files)', | 11 '<@(schema_files)', |
| 12 ], | 12 ], |
| 13 # TODO(jschuh): http://crbug.com/167187 size_t -> int | 13 # TODO(jschuh): http://crbug.com/167187 size_t -> int |
| 14 'msvs_disabled_warnings': [ 4267 ], | 14 'msvs_disabled_warnings': [ 4267 ], |
| 15 'includes': [ | 15 'includes': [ |
| 16 '../../../../build/json_schema_bundle_compile.gypi', | 16 '../../../../build/json_schema_bundle_compile.gypi', |
| 17 '../../../../build/json_schema_compile.gypi', | 17 '../../../../build/json_schema_compile.gypi', |
| 18 ], | 18 ], |
| 19 'variables': { | 19 'variables': { |
| 20 'chromium_code': 1, | 20 'chromium_code': 1, |
| 21 'schema_files': [ | 21 'schema_files': [ |
| 22 'alarms.idl', | 22 'alarms.idl', |
| 23 'app_current_window_internal.idl', | 23 'app_current_window_internal.idl', |
| 24 'app_runtime.idl', | 24 'app_runtime.idl', |
| 25 'app_window.idl', | 25 'app_window.idl', |
| 26 'audio.idl', |
| 26 'autotest_private.idl', | 27 'autotest_private.idl', |
| 27 'bluetooth.idl', | 28 'bluetooth.idl', |
| 28 'bookmark_manager_private.json', | 29 'bookmark_manager_private.json', |
| 29 'bookmarks.json', | 30 'bookmarks.json', |
| 30 'chromeos_info_private.json', | 31 'chromeos_info_private.json', |
| 31 'cloud_print_private.json', | 32 'cloud_print_private.json', |
| 32 'command_line_private.json', | 33 'command_line_private.json', |
| 33 'content_settings.json', | 34 'content_settings.json', |
| 34 'context_menus.json', | 35 'context_menus.json', |
| 35 'cookies.json', | 36 'cookies.json', |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 ['OS!="chromeos"', { | 114 ['OS!="chromeos"', { |
| 114 'schema_files!': [ | 115 'schema_files!': [ |
| 115 'file_browser_handler_internal.json', | 116 'file_browser_handler_internal.json', |
| 116 'rtc_private.idl', | 117 'rtc_private.idl', |
| 117 ], | 118 ], |
| 118 }], | 119 }], |
| 119 ], | 120 ], |
| 120 }, | 121 }, |
| 121 ], | 122 ], |
| 122 } | 123 } |
| OLD | NEW |