| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'json_schema_files': [ | 8 'json_schema_files': [ |
| 9 'permissions.json', | 9 'permissions.json', |
| 10 'tabs.json', |
| 11 'windows.json', |
| 10 ], | 12 ], |
| 11 'cc_dir': 'chrome/common/extensions/api', | 13 'cc_dir': 'chrome/common/extensions/api', |
| 12 'root_namespace': 'extensions::api', | 14 'root_namespace': 'extensions::api', |
| 13 }, | 15 }, |
| 14 'targets': [ | 16 'targets': [ |
| 15 { | 17 { |
| 16 'target_name': 'api', | 18 'target_name': 'api', |
| 17 'type': 'static_library', | 19 'type': 'static_library', |
| 18 'sources': [ | 20 'sources': [ |
| 19 '<@(json_schema_files)', | 21 '<@(json_schema_files)', |
| 20 ], | 22 ], |
| 21 'includes': ['../../../../build/json_schema_compile.gypi'], | 23 'includes': ['../../../../build/json_schema_compile.gypi'], |
| 22 }, | 24 }, |
| 23 ], | 25 ], |
| 24 } | 26 } |
| OLD | NEW |