| 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 # Apply Chrome-specific grit settings to all of this file. | 6 # Apply Chrome-specific grit settings to all of this file. |
| 7 # The advantage is that one entry here applies to the entire file. | 7 # The advantage is that one entry here applies to the entire file. |
| 8 # The caveat is these variables cannot be merged with other variable | 8 # The caveat is these variables cannot be merged with other variable |
| 9 # dictionaries in more inner scopes. If the variable should be merged, | 9 # dictionaries in more inner scopes. If the variable should be merged, |
| 10 # consider putting them in a gypi file and including it at the right scope | 10 # consider putting them in a gypi file and including it at the right scope |
| 11 # instead. e.g. with chrome_grit_action.gypi. | 11 # instead. e.g. with chrome_grit_action.gypi. |
| 12 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 12 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 13 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i
nternal/additional_modules_list.txt', | 13 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i
nternal/additional_modules_list.txt', |
| 14 }, | 14 }, |
| 15 'targets': [ | 15 'targets': [ |
| 16 { | 16 { |
| 17 # GN version: //chrome:extra_resources | 17 # GN version: //chrome:extra_resources |
| 18 'target_name': 'chrome_extra_resources', | 18 'target_name': 'chrome_extra_resources', |
| 19 'type': 'none', | 19 'type': 'none', |
| 20 # These resources end up in resources.pak because they are resources | 20 # These resources end up in resources.pak because they are resources |
| 21 # used by internal pages. Putting them in a separate pak file makes | 21 # used by internal pages. Putting them in a separate pak file makes |
| 22 # it easier for us to reference them internally. | 22 # it easier for us to reference them internally. |
| 23 'actions': [ | 23 'actions': [ |
| 24 { | 24 { |
| 25 # GN version: //chrome/browser/resources:memory_internals_resources | |
| 26 'action_name': 'generate_memory_internals_resources', | |
| 27 'variables': { | |
| 28 'grit_grd_file': 'browser/resources/memory_internals_resources.grd', | |
| 29 }, | |
| 30 'includes': [ 'chrome_grit_action.gypi' ], | |
| 31 }, | |
| 32 { | |
| 33 # GN version: //chrome/browser/resources:net_internals_resources | 25 # GN version: //chrome/browser/resources:net_internals_resources |
| 34 'action_name': 'generate_net_internals_resources', | 26 'action_name': 'generate_net_internals_resources', |
| 35 'variables': { | 27 'variables': { |
| 36 'grit_grd_file': 'browser/resources/net_internals_resources.grd', | 28 'grit_grd_file': 'browser/resources/net_internals_resources.grd', |
| 37 }, | 29 }, |
| 38 'includes': [ 'chrome_grit_action.gypi' ], | 30 'includes': [ 'chrome_grit_action.gypi' ], |
| 39 }, | 31 }, |
| 40 { | 32 { |
| 41 # GN version: //chrome/browser/resources:invalidations_resources | 33 # GN version: //chrome/browser/resources:invalidations_resources |
| 42 'action_name': 'generate_invalidations_resources', | 34 'action_name': 'generate_invalidations_resources', |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 '<(SHARED_INTERMEDIATE_DIR)/chrome/webui_test_resources.pak', | 681 '<(SHARED_INTERMEDIATE_DIR)/chrome/webui_test_resources.pak', |
| 690 ], | 682 ], |
| 691 'pak_output': '<(PRODUCT_DIR)/browser_tests.pak', | 683 'pak_output': '<(PRODUCT_DIR)/browser_tests.pak', |
| 692 }, | 684 }, |
| 693 'includes': [ '../build/repack_action.gypi' ], | 685 'includes': [ '../build/repack_action.gypi' ], |
| 694 }, | 686 }, |
| 695 ], | 687 ], |
| 696 }, | 688 }, |
| 697 ], # targets | 689 ], # targets |
| 698 } | 690 } |
| OLD | NEW |