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

Side by Side Diff: gyp/tools.gyp

Issue 1228553010: Remove skia_arch_width, fold into skia_arch_type. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 4 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 | « gyp/libjpeg-turbo.gyp ('k') | platform_tools/android/bin/android_setup.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # GYP file to build various tools. 5 # GYP file to build various tools.
6 # 6 #
7 # To build on Linux: 7 # To build on Linux:
8 # ./gyp_skia tools.gyp && make tools 8 # ./gyp_skia tools.gyp && make tools
9 # 9 #
10 { 10 {
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 ['skia_win_debuggers_path and skia_os == "win"', 512 ['skia_win_debuggers_path and skia_os == "win"',
513 { 513 {
514 'dependencies': [ 514 'dependencies': [
515 'tools.gyp:win_dbghelp', 515 'tools.gyp:win_dbghelp',
516 ], 516 ],
517 }, 517 },
518 ], 518 ],
519 # VS static libraries don't have a linker option. We must set a global 519 # VS static libraries don't have a linker option. We must set a global
520 # project linker option, or add it to each executable. 520 # project linker option, or add it to each executable.
521 ['skia_win_debuggers_path and skia_os == "win" and ' 521 ['skia_win_debuggers_path and skia_os == "win" and '
522 'skia_arch_width == 64', 522 'skia_arch_type == "x86_64"',
523 { 523 {
524 'msvs_settings': { 524 'msvs_settings': {
525 'VCLinkerTool': { 525 'VCLinkerTool': {
526 'AdditionalDependencies': [ 526 'AdditionalDependencies': [
527 '<(skia_win_debuggers_path)/x64/DbgHelp.lib', 527 '<(skia_win_debuggers_path)/x64/DbgHelp.lib',
528 ], 528 ],
529 }, 529 },
530 }, 530 },
531 }, 531 },
532 ], 532 ],
533 ['skia_win_debuggers_path and skia_os == "win" and ' 533 ['skia_win_debuggers_path and skia_os == "win" and '
534 'skia_arch_width == 32', 534 'skia_arch_type == "x86"',
535 { 535 {
536 'msvs_settings': { 536 'msvs_settings': {
537 'VCLinkerTool': { 537 'VCLinkerTool': {
538 'AdditionalDependencies': [ 538 'AdditionalDependencies': [
539 '<(skia_win_debuggers_path)/DbgHelp.lib', 539 '<(skia_win_debuggers_path)/DbgHelp.lib',
540 ], 540 ],
541 }, 541 },
542 }, 542 },
543 }, 543 },
544 ], 544 ],
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 'flags.gyp:flags', 783 'flags.gyp:flags',
784 'skia_lib.gyp:skia_lib', 784 'skia_lib.gyp:skia_lib',
785 'resources', 785 'resources',
786 ], 786 ],
787 }, 787 },
788 ], 788 ],
789 }, 789 },
790 ], 790 ],
791 ], 791 ],
792 } 792 }
OLDNEW
« no previous file with comments | « gyp/libjpeg-turbo.gyp ('k') | platform_tools/android/bin/android_setup.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698