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