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

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

Issue 9114036: Code generation for extensions api (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: more rework Created 8 years, 11 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
(Empty)
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 'json_schema_files': [
9 'permissions.json',
10 ],
11 'cc_root': '<(SHARED_INTERMEDIATE_DIR)/extension_api_gen_out',
12 'cc_dir': '<(cc_root)/chrome/common/extensions/api',
13 'root_namespace': 'extensions',
14 },
15 'targets': [
16 {
17 'target_name': 'api',
18 'type': 'static_library',
19 'sources': [
20 '<@(json_schema_files)',
21 ],
22 'includes': ['../../../../build/json_schema_compile.gypi'],
23 },
24 ],
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698