Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: chrome/chrome_resources.gyp

Issue 365513002: Port identity_internals to mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up TestNavigationObserver. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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',
fgorski 2014/07/23 19:02:10 nit: in case the order of these does not matter, a
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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 'actions': [ 193 'actions': [
193 { 194 {
194 # GN version: //chrome/browser:resources 195 # GN version: //chrome/browser:resources
195 'action_name': 'generate_browser_resources', 196 'action_name': 'generate_browser_resources',
196 'variables': { 197 'variables': {
197 'grit_grd_file': 'browser/browser_resources.grd', 198 'grit_grd_file': 'browser/browser_resources.grd',
198 'grit_additional_defines': [ 199 'grit_additional_defines': [
199 '-E', 'about_credits_file=<(about_credits_file)', 200 '-E', 'about_credits_file=<(about_credits_file)',
200 '-E', 'additional_modules_list_file=<(additional_modules_list_file )', 201 '-E', 'additional_modules_list_file=<(additional_modules_list_file )',
201 '-E', 'omnibox_mojom_file=<(omnibox_mojom_file)', 202 '-E', 'omnibox_mojom_file=<(omnibox_mojom_file)',
203 '-E', 'identity_internals_mojom_file=<(identity_internals_mojom_fi le)',
fgorski 2014/07/23 19:02:10 nit: ditto
202 ], 204 ],
203 }, 205 },
204 'includes': [ '../build/grit_action.gypi' ], 206 'includes': [ '../build/grit_action.gypi' ],
205 }, 207 },
206 { 208 {
207 # GN version: //chrome/common:resources 209 # GN version: //chrome/common:resources
208 'action_name': 'generate_common_resources', 210 'action_name': 'generate_common_resources',
209 'variables': { 211 'variables': {
210 'grit_grd_file': 'common/common_resources.grd', 212 'grit_grd_file': 'common/common_resources.grd',
211 }, 213 },
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 '<(generator_path)', 561 '<(generator_path)',
560 'credits', 562 'credits',
561 '<(about_credits_file)', 563 '<(about_credits_file)',
562 ], 564 ],
563 'message': 'Generating about:credits', 565 'message': 'Generating about:credits',
564 }, 566 },
565 ], 567 ],
566 }, 568 },
567 ], # targets 569 ], # targets
568 } 570 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698