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..b0f10658540cc69d23bd75cd8370298eb738b224 |
--- /dev/null |
+++ b/chrome/common/extensions/api/api.gyp |
@@ -0,0 +1,24 @@ |
+# Copyright (c) 2012 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_dir': 'chrome/common/extensions/api', |
+ 'root_namespace': 'extensions::api', |
+ }, |
+ 'targets': [ |
+ { |
+ 'target_name': 'api', |
+ 'type': 'static_library', |
+ 'sources': [ |
+ '<@(json_schema_files)', |
+ ], |
+ 'includes': ['../../../../build/json_schema_compile.gypi'], |
+ }, |
+ ], |
+} |