| 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 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i
nternal/additional_modules_list.txt', | 8 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i
nternal/additional_modules_list.txt', |
| 9 'omnibox_mojom_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/ui/webui/om
nibox/omnibox.mojom.js', | 9 'omnibox_mojom_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/ui/webui/om
nibox/omnibox.mojom.js', |
| 10 'identity_internals_mojom_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/
ui/webui/identity_internals/identity_internals.mojom.js', |
| 10 }, | 11 }, |
| 11 'targets': [ | 12 'targets': [ |
| 12 { | 13 { |
| 13 # GN version: //chrome:extra_resources | 14 # GN version: //chrome:extra_resources |
| 14 'target_name': 'chrome_extra_resources', | 15 'target_name': 'chrome_extra_resources', |
| 15 'type': 'none', | 16 'type': 'none', |
| 16 # These resources end up in resources.pak because they are resources | 17 # These resources end up in resources.pak because they are resources |
| 17 # used by internal pages. Putting them in a separate pak file makes | 18 # used by internal pages. Putting them in a separate pak file makes |
| 18 # it easier for us to reference them internally. | 19 # it easier for us to reference them internally. |
| 19 'actions': [ | 20 'actions': [ |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 'actions': [ | 188 'actions': [ |
| 188 { | 189 { |
| 189 # GN version: //chrome/browser:resources | 190 # GN version: //chrome/browser:resources |
| 190 'action_name': 'generate_browser_resources', | 191 'action_name': 'generate_browser_resources', |
| 191 'variables': { | 192 'variables': { |
| 192 'grit_grd_file': 'browser/browser_resources.grd', | 193 'grit_grd_file': 'browser/browser_resources.grd', |
| 193 'grit_additional_defines': [ | 194 'grit_additional_defines': [ |
| 194 '-E', 'about_credits_file=<(about_credits_file)', | 195 '-E', 'about_credits_file=<(about_credits_file)', |
| 195 '-E', 'additional_modules_list_file=<(additional_modules_list_file
)', | 196 '-E', 'additional_modules_list_file=<(additional_modules_list_file
)', |
| 196 '-E', 'omnibox_mojom_file=<(omnibox_mojom_file)', | 197 '-E', 'omnibox_mojom_file=<(omnibox_mojom_file)', |
| 198 '-E', 'identity_internals_mojom_file=<(identity_internals_mojom_fi
le)', |
| 197 ], | 199 ], |
| 198 }, | 200 }, |
| 199 'includes': [ '../build/grit_action.gypi' ], | 201 'includes': [ '../build/grit_action.gypi' ], |
| 200 }, | 202 }, |
| 201 { | 203 { |
| 202 # GN version: //chrome/common:resources | 204 # GN version: //chrome/common:resources |
| 203 'action_name': 'generate_common_resources', | 205 'action_name': 'generate_common_resources', |
| 204 'variables': { | 206 'variables': { |
| 205 'grit_grd_file': 'common/common_resources.grd', | 207 'grit_grd_file': 'common/common_resources.grd', |
| 206 }, | 208 }, |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 '<(generator_path)', | 549 '<(generator_path)', |
| 548 'credits', | 550 'credits', |
| 549 '<(about_credits_file)', | 551 '<(about_credits_file)', |
| 550 ], | 552 ], |
| 551 'message': 'Generating about:credits', | 553 'message': 'Generating about:credits', |
| 552 }, | 554 }, |
| 553 ], | 555 ], |
| 554 }, | 556 }, |
| 555 ], # targets | 557 ], # targets |
| 556 } | 558 } |
| OLD | NEW |