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

Side by Side Diff: gyp/tools.gyp

Issue 2138133002: tools/SkShaper: factor shaping out of using_skia_and_harfbuzz (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2016-07-11 (Monday) 15:42:21 EDT Created 4 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 | « no previous file | tools/SkShaper.h » ('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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 'direct_dependent_settings': { 437 'direct_dependent_settings': {
438 'include_dirs': [ 438 'include_dirs': [
439 '../include/private', 439 '../include/private',
440 '../tools', 440 '../tools',
441 ], 441 ],
442 }, 442 },
443 }, 443 },
444 { 444 {
445 'target_name': 'using_skia_and_harfbuzz', 445 'target_name': 'using_skia_and_harfbuzz',
446 'type': 'executable', 446 'type': 'executable',
447 'sources': [ '../tools/using_skia_and_harfbuzz.cpp' ], 447 'sources': [
448 '../tools/using_skia_and_harfbuzz.cpp',
449 '../tools/SkShaper.cpp',
450 ],
448 'dependencies': [ 451 'dependencies': [
449 'skia_lib.gyp:skia_lib', 452 'skia_lib.gyp:skia_lib',
450 'pdf.gyp:pdf', 453 'pdf.gyp:pdf',
451 'harfbuzz.gyp:harfbuzz', 454 'harfbuzz.gyp:harfbuzz',
452 ], 455 ],
453 'cflags': [ '-w', ], 456 'cflags': [ '-w', ],
454 'msvs_settings': { 'VCCLCompilerTool': { 'WarningLevel': '0', }, }, 457 'msvs_settings': { 'VCCLCompilerTool': { 'WarningLevel': '0', }, },
455 'xcode_settings': { 'WARNING_CFLAGS': [ '-w', ], }, 458 'xcode_settings': { 'WARNING_CFLAGS': [ '-w', ], },
456 }, 459 },
457 { 460 {
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 'pdf.gyp:pdf', 677 'pdf.gyp:pdf',
675 'gputest.gyp:osmesa', 678 'gputest.gyp:osmesa',
676 ], 679 ],
677 'defines': [ 'FIDDLE_BUILD_TEST' ], 680 'defines': [ 'FIDDLE_BUILD_TEST' ],
678 }, 681 },
679 ], 682 ],
680 }, 683 },
681 ], 684 ],
682 ], 685 ],
683 } 686 }
OLDNEW
« no previous file with comments | « no previous file | tools/SkShaper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698