| 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 }, | 10 }, |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 'action_name': 'generate_chrome_unscaled_resources', | 551 'action_name': 'generate_chrome_unscaled_resources', |
| 552 'variables': { | 552 'variables': { |
| 553 'grit_grd_file': 'app/theme/chrome_unscaled_resources.grd', | 553 'grit_grd_file': 'app/theme/chrome_unscaled_resources.grd', |
| 554 }, | 554 }, |
| 555 'includes': [ '../build/grit_action.gypi' ], | 555 'includes': [ '../build/grit_action.gypi' ], |
| 556 }, | 556 }, |
| 557 ], | 557 ], |
| 558 'includes': [ '../build/grit_target.gypi' ], | 558 'includes': [ '../build/grit_target.gypi' ], |
| 559 }, | 559 }, |
| 560 { | 560 { |
| 561 # GN version: //chrome/browser/resources:options_test_resources |
| 562 'target_name': 'options_test_resources', |
| 563 'type': 'none', |
| 564 'actions': [ |
| 565 { |
| 566 'action_name': 'generate_options_test_resources', |
| 567 'variables': { |
| 568 'grit_grd_file': 'browser/resources/options_test_resources.grd', |
| 569 }, |
| 570 'includes': [ '../build/grit_action.gypi' ], |
| 571 }, |
| 572 ], |
| 573 'includes': [ '../build/grit_target.gypi' ], |
| 574 }, |
| 575 { |
| 576 # GN version: //chrome:browser_tests_pak |
| 577 'target_name': 'browser_tests_pak', |
| 578 'type': 'none', |
| 579 'dependencies': [ |
| 580 'options_test_resources', |
| 581 ], |
| 582 'actions': [ |
| 583 { |
| 584 'action_name': 'repack_browser_tests_pak', |
| 585 'variables': { |
| 586 'pak_inputs': [ |
| 587 '<(SHARED_INTERMEDIATE_DIR)/chrome/options_test_resources.pak', |
| 588 ], |
| 589 'pak_output': '<(PRODUCT_DIR)/browser_tests.pak', |
| 590 }, |
| 591 'includes': [ '../build/repack_action.gypi' ], |
| 592 }, |
| 593 ], |
| 594 }, |
| 595 { |
| 561 # GN version: //chrome/browser:about_credits | 596 # GN version: //chrome/browser:about_credits |
| 562 'target_name': 'about_credits', | 597 'target_name': 'about_credits', |
| 563 'type': 'none', | 598 'type': 'none', |
| 564 'actions': [ | 599 'actions': [ |
| 565 { | 600 { |
| 566 'variables': { | 601 'variables': { |
| 567 'generator_path': '../tools/licenses.py', | 602 'generator_path': '../tools/licenses.py', |
| 568 }, | 603 }, |
| 569 'action_name': 'generate_about_credits', | 604 'action_name': 'generate_about_credits', |
| 570 'inputs': [ | 605 'inputs': [ |
| 571 # TODO(phajdan.jr): make licenses.py print inputs too. | 606 # TODO(phajdan.jr): make licenses.py print inputs too. |
| 572 '<(generator_path)', | 607 '<(generator_path)', |
| 573 ], | 608 ], |
| 574 'outputs': [ | 609 'outputs': [ |
| 575 '<(about_credits_file)', | 610 '<(about_credits_file)', |
| 576 ], | 611 ], |
| 577 'hard_dependency': 1, | 612 'hard_dependency': 1, |
| 578 'action': ['python', | 613 'action': ['python', |
| 579 '<(generator_path)', | 614 '<(generator_path)', |
| 580 'credits', | 615 'credits', |
| 581 '<(about_credits_file)', | 616 '<(about_credits_file)', |
| 582 ], | 617 ], |
| 583 'message': 'Generating about:credits', | 618 'message': 'Generating about:credits', |
| 584 }, | 619 }, |
| 585 ], | 620 ], |
| 586 }, | 621 }, |
| 587 ], # targets | 622 ], # targets |
| 588 } | 623 } |
| OLD | NEW |