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

Unified Diff: chrome/chrome_resources.gyp

Issue 683813004: Fewer focusable items in chrome://settings/searchEngines (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Load test-only resources from browser_tests.pak Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/chrome_resources.gyp
diff --git a/chrome/chrome_resources.gyp b/chrome/chrome_resources.gyp
index 67f4d8b4002b9ad39b1bc8cc43e23de873b7acf9..7d9241a970d2c40432badc8a8f6657882f42ae98 100644
--- a/chrome/chrome_resources.gyp
+++ b/chrome/chrome_resources.gyp
@@ -558,6 +558,43 @@
'includes': [ '../build/grit_target.gypi' ],
},
{
+ # GN version: //chrome:options_test_resources
+ 'target_name': 'options_test_resources',
+ 'type': 'none',
+ 'actions': [
+ {
+ 'action_name': 'generate_options_test_resources',
+ 'variables': {
+ 'grit_grd_file': 'browser/resources/options_test_resources.grd',
+ },
+ 'includes': [ '../build/grit_action.gypi' ],
+ },
+ ],
+ 'includes': [ '../build/grit_target.gypi' ],
+ },
+ {
+ # Create pak file for browser_tests.
Dan Beam 2014/11/07 19:43:59 unless this is follow a convention, don't see a re
bondd 2014/11/07 20:13:25 Done.
+ #
+ # GN version: //chrome:browser_tests_pak
+ 'target_name': 'browser_tests_pak',
+ 'type': 'none',
+ 'dependencies': [
+ 'options_test_resources',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'repack_browser_tests_pak',
+ 'variables': {
+ 'pak_inputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/chrome/options_test_resources.pak',
+ ],
+ 'pak_output': '<(PRODUCT_DIR)/browser_tests.pak',
+ },
+ 'includes': [ '../build/repack_action.gypi' ],
+ },
+ ],
+ },
+ {
# GN version: //chrome/browser:about_credits
'target_name': 'about_credits',
'type': 'none',

Powered by Google App Engine
This is Rietveld 408576698