Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: chrome/common/extensions/api/api.gyp

Issue 9309044: Supporting more APIs with json_schema_compiler (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: support for choices Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698