OLD | NEW |
(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 } |
OLD | NEW |