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

Unified 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: a fistful of 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/api.gyp
diff --git a/chrome/common/extensions/api/api.gyp b/chrome/common/extensions/api/api.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..1c8b5dfd2b37225dbfefa22ea2b8a3f44ff7b413
--- /dev/null
+++ b/chrome/common/extensions/api/api.gyp
@@ -0,0 +1,25 @@
+# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ 'json_schema_files': [
+ 'permissions.json',
+ ],
+ 'cc_root': '<(SHARED_INTERMEDIATE_DIR)/extension_api_gen_out',
+ 'cc_dir': '<(cc_root)/chrome/common/extensions/api',
+ 'root_namespace': 'extensions',
+ },
+ 'targets': [
+ {
+ 'target_name': 'api',
+ 'type': 'static_library',
+ 'sources': [
+ '<@(json_schema_files)',
+ ],
+ 'includes': ['../../../../build/json_schema_compile.gypi'],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698