OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 5 'variables': { |
6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html', | 7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html', |
8 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 8 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'chrome_extra_resources', | 12 'target_name': 'chrome_extra_resources', |
13 'type': 'none', | 13 'type': 'none', |
14 # These resources end up in resources.pak because they are resources | 14 # These resources end up in resources.pak because they are resources |
15 # used by internal pages. Putting them in a spearate pak file makes | 15 # used by internal pages. Putting them in a separate pak file makes |
16 # it easier for us to reference them internally. | 16 # it easier for us to reference them internally. |
17 'actions': [ | 17 'actions': [ |
18 { | 18 { |
19 'action_name': 'memory_internals_resources', | 19 'action_name': 'memory_internals_resources', |
20 'variables': { | 20 'variables': { |
21 'grit_grd_file': 'browser/resources/memory_internals_resources.grd', | 21 'grit_grd_file': 'browser/resources/memory_internals_resources.grd', |
22 }, | 22 }, |
23 'includes': [ '../build/grit_action.gypi' ], | 23 'includes': [ '../build/grit_action.gypi' ], |
24 }, | 24 }, |
25 { | 25 { |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 'includes': [ '../build/grit_action.gypi' ], | 80 'includes': [ '../build/grit_action.gypi' ], |
81 }, | 81 }, |
82 { | 82 { |
83 'action_name': 'devtools_discovery_page_resources', | 83 'action_name': 'devtools_discovery_page_resources', |
84 'variables': { | 84 'variables': { |
85 'grit_grd_file': | 85 'grit_grd_file': |
86 'browser/devtools/frontend/devtools_discovery_page_resources.
grd', | 86 'browser/devtools/frontend/devtools_discovery_page_resources.
grd', |
87 }, | 87 }, |
88 'includes': [ '../build/grit_action.gypi' ] | 88 'includes': [ '../build/grit_action.gypi' ] |
89 }, | 89 }, |
| 90 { |
| 91 'action_name': 'sync_file_system_internals_resources', |
| 92 'variables': { |
| 93 'grit_grd_file': 'browser/resources/sync_file_system_internals_r
esources.grd', |
| 94 }, |
| 95 'includes': [ '../build/grit_action.gypi' ], |
| 96 }, |
90 ], | 97 ], |
91 'copies': [ | 98 'copies': [ |
92 { | 99 { |
93 'destination': '<(PRODUCT_DIR)/resources/extension/demo', | 100 'destination': '<(PRODUCT_DIR)/resources/extension/demo', |
94 'files': [ | 101 'files': [ |
95 'browser/resources/extension_resource/demo/library.js', | 102 'browser/resources/extension_resource/demo/library.js', |
96 ], | 103 ], |
97 }, | 104 }, |
98 ], | 105 ], |
99 }], | 106 }], |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 '<(generator_path)', | 472 '<(generator_path)', |
466 'credits', | 473 'credits', |
467 '<(about_credits_file)', | 474 '<(about_credits_file)', |
468 ], | 475 ], |
469 'message': 'Generating about:credits.', | 476 'message': 'Generating about:credits.', |
470 }, | 477 }, |
471 ], | 478 ], |
472 }, | 479 }, |
473 ], # targets | 480 ], # targets |
474 } | 481 } |
OLD | NEW |