| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import json | 5 import json |
| 6 | 6 |
| 7 from extensions_paths import EXTENSIONS | 7 from extensions_paths import CHROME_EXTENSIONS |
| 8 from test_file_system import MoveAllTo | 8 from test_file_system import MoveAllTo |
| 9 | 9 |
| 10 | 10 |
| 11 TABS_SCHEMA_BRANCHES = MoveAllTo(EXTENSIONS, { | 11 TABS_SCHEMA_BRANCHES = MoveAllTo(CHROME_EXTENSIONS, { |
| 12 'trunk': { | 12 'trunk': { |
| 13 'docs': { | 13 'docs': { |
| 14 'templates': { | 14 'templates': { |
| 15 'json': { | 15 'json': { |
| 16 'api_availabilities.json': '{}' | 16 'api_availabilities.json': '{}' |
| 17 } | 17 } |
| 18 } | 18 } |
| 19 }, | 19 }, |
| 20 'api': { | 20 'api': { |
| 21 '_api_features.json': '{}', | 21 '_api_features.json': '{}', |
| (...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1109 ] | 1109 ] |
| 1110 }]) | 1110 }]) |
| 1111 } | 1111 } |
| 1112 }, | 1112 }, |
| 1113 '782': { | 1113 '782': { |
| 1114 'api': { | 1114 'api': { |
| 1115 'extension_api.json': "{}" | 1115 'extension_api.json': "{}" |
| 1116 } | 1116 } |
| 1117 } | 1117 } |
| 1118 }) | 1118 }) |
| OLD | NEW |