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

Side by Side Diff: chrome/chrome_resources.gyp

Issue 1197813002: Generate resource pak files for top chrome material design assets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: re-upload 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
« no previous file with comments | « chrome/chrome_repack_chrome_material_200_percent.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 'pak_locales': '<(pseudo_locales)', 430 'pak_locales': '<(pseudo_locales)',
431 }, 431 },
432 'includes': ['chrome_repack_locales.gypi'] 432 'includes': ['chrome_repack_locales.gypi']
433 }, 433 },
434 { 434 {
435 'includes': ['chrome_repack_chrome_100_percent.gypi'] 435 'includes': ['chrome_repack_chrome_100_percent.gypi']
436 }, 436 },
437 { 437 {
438 'includes': ['chrome_repack_chrome_200_percent.gypi'] 438 'includes': ['chrome_repack_chrome_200_percent.gypi']
439 }, 439 },
440 {
441 'includes': ['chrome_repack_chrome_material_100_percent.gypi']
442 },
443 {
444 'includes': ['chrome_repack_chrome_material_200_percent.gypi']
445 },
440 ], 446 ],
441 'conditions': [ 447 'conditions': [
442 ['OS != "ios"', { 448 ['OS != "ios"', {
443 'dependencies': [ 449 'dependencies': [
444 '<(DEPTH)/content/app/resources/content_resources.gyp:content_resour ces', 450 '<(DEPTH)/content/app/resources/content_resources.gyp:content_resour ces',
445 '<(DEPTH)/content/app/strings/content_strings.gyp:content_strings', 451 '<(DEPTH)/content/app/strings/content_strings.gyp:content_strings',
446 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_resour ces', 452 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_resour ces',
447 ], 453 ],
448 }, { # else 454 }, { # else
449 'dependencies': [ 455 'dependencies': [
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 ['enable_hidpi == 1', { 537 ['enable_hidpi == 1', {
532 'copies': [ 538 'copies': [
533 { 539 {
534 'destination': '<(PRODUCT_DIR)', 540 'destination': '<(PRODUCT_DIR)',
535 'files': [ 541 'files': [
536 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_200_percent.pak', 542 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_200_percent.pak',
537 ], 543 ],
538 }, 544 },
539 ], 545 ],
540 }], 546 }],
547 ['enable_topchrome_md == 1', {
548 'copies': [
549 {
550 'destination': '<(PRODUCT_DIR)',
551 'files': [
552 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_material_100_perce nt.pak',
553 ],
554 },
555 ],
556 }],
557 ['enable_hidpi == 1 and enable_topchrome_md == 1', {
558 'copies': [
559 {
560 'destination': '<(PRODUCT_DIR)',
561 'files': [
562 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_material_200_perce nt.pak',
563 ],
564 },
565 ],
566 }],
541 ], # conditions 567 ], # conditions
542 }], # end OS != "mac" and OS != "ios" 568 }], # end OS != "mac" and OS != "ios"
543 ], # conditions 569 ], # conditions
544 }, 570 },
545 { 571 {
546 # GN version: //chrome/app/theme:chrome_unscaled_resources 572 # GN version: //chrome/app/theme:chrome_unscaled_resources
547 'target_name': 'chrome_unscaled_resources', 573 'target_name': 'chrome_unscaled_resources',
548 'type': 'none', 574 'type': 'none',
549 'actions': [ 575 'actions': [
550 { 576 {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 '<(generator_path)', 643 '<(generator_path)',
618 'credits', 644 'credits',
619 '<(about_credits_file)', 645 '<(about_credits_file)',
620 ], 646 ],
621 'message': 'Generating about:credits', 647 'message': 'Generating about:credits',
622 }, 648 },
623 ], 649 ],
624 }, 650 },
625 ], # targets 651 ], # targets
626 } 652 }
OLDNEW
« no previous file with comments | « chrome/chrome_repack_chrome_material_200_percent.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698