diff options
Diffstat (limited to 'chrome/common/extensions/api/api.gyp')
-rw-r--r-- | chrome/common/extensions/api/api.gyp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/chrome/common/extensions/api/api.gyp b/chrome/common/extensions/api/api.gyp new file mode 100644 index 0000000..b0f1065 --- /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'], + }, + ], +} |