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

Side by Side Diff: chrome/chrome_resources.gyp

Issue 1246253002: Convert i18n_process.css to use /deep/ instead of ::shadow and add tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: +GN Created 5 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
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 }, 10 },
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 'action_name': 'generate_options_test_resources', 592 'action_name': 'generate_options_test_resources',
593 'variables': { 593 'variables': {
594 'grit_grd_file': 'browser/resources/options_test_resources.grd', 594 'grit_grd_file': 'browser/resources/options_test_resources.grd',
595 }, 595 },
596 'includes': [ '../build/grit_action.gypi' ], 596 'includes': [ '../build/grit_action.gypi' ],
597 }, 597 },
598 ], 598 ],
599 'includes': [ '../build/grit_target.gypi' ], 599 'includes': [ '../build/grit_target.gypi' ],
600 }, 600 },
601 { 601 {
602 # GN version: //chrome/test/data/resources:webui_test_resources
603 'target_name': 'webui_test_resources',
604 'type': 'none',
605 'actions': [
606 {
607 'action_name': 'generate_webui_test_resources',
608 'variables': {
609 'grit_grd_file': 'test/data/webui_test_resources.grd',
610 },
611 'includes': [ '../build/grit_action.gypi' ],
612 },
613 ],
614 'includes': [ '../build/grit_target.gypi' ],
615 },
616 {
602 # GN version: //chrome:browser_tests_pak 617 # GN version: //chrome:browser_tests_pak
603 'target_name': 'browser_tests_pak', 618 'target_name': 'browser_tests_pak',
604 'type': 'none', 619 'type': 'none',
605 'dependencies': [ 620 'dependencies': [
606 'options_test_resources', 621 'options_test_resources',
622 'webui_test_resources',
607 ], 623 ],
608 'actions': [ 624 'actions': [
609 { 625 {
610 'action_name': 'repack_browser_tests_pak', 626 'action_name': 'repack_browser_tests_pak',
611 'variables': { 627 'variables': {
612 'pak_inputs': [ 628 'pak_inputs': [
613 '<(SHARED_INTERMEDIATE_DIR)/chrome/options_test_resources.pak', 629 '<(SHARED_INTERMEDIATE_DIR)/chrome/options_test_resources.pak',
630 '<(SHARED_INTERMEDIATE_DIR)/chrome/webui_test_resources.pak',
614 ], 631 ],
615 'pak_output': '<(PRODUCT_DIR)/browser_tests.pak', 632 'pak_output': '<(PRODUCT_DIR)/browser_tests.pak',
616 }, 633 },
617 'includes': [ '../build/repack_action.gypi' ], 634 'includes': [ '../build/repack_action.gypi' ],
618 }, 635 },
619 ], 636 ],
620 }, 637 },
621 { 638 {
622 # GN version: //chrome/browser:about_credits 639 # GN version: //chrome/browser:about_credits
623 'target_name': 'about_credits', 640 'target_name': 'about_credits',
(...skipping 19 matching lines...) Expand all
643 '<(generator_path)', 660 '<(generator_path)',
644 'credits', 661 'credits',
645 '<(about_credits_file)', 662 '<(about_credits_file)',
646 ], 663 ],
647 'message': 'Generating about:credits', 664 'message': 'Generating about:credits',
648 }, 665 },
649 ], 666 ],
650 }, 667 },
651 ], # targets 668 ], # targets
652 } 669 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698