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

Side by Side Diff: gyp/tools.gyp

Issue 1411933006: Export tools as an include directory for Android (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 1 month 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 | 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 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 '../tools/SkBitmapRegionDecoderInterface.cpp', 56 '../tools/SkBitmapRegionDecoderInterface.cpp',
57 '../tools/SkBitmapRegionSampler.cpp', 57 '../tools/SkBitmapRegionSampler.cpp',
58 ], 58 ],
59 'include_dirs': [ 59 'include_dirs': [
60 '../include/private', 60 '../include/private',
61 '../src/codec', 61 '../src/codec',
62 ], 62 ],
63 'dependencies': [ 63 'dependencies': [
64 'skia_lib.gyp:skia_lib', 64 'skia_lib.gyp:skia_lib',
65 ], 65 ],
66 'direct_dependent_settings': {
67 'include_dirs': [
68 '../tools',
69 ],
70 },
66 }, 71 },
67 { 72 {
68 'target_name': 'chrome_fuzz', 73 'target_name': 'chrome_fuzz',
69 'type': 'executable', 74 'type': 'executable',
70 'sources': [ 75 'sources': [
71 '../tools/chrome_fuzz.cpp', 76 '../tools/chrome_fuzz.cpp',
72 ], 77 ],
73 'dependencies': [ 78 'dependencies': [
74 'skia_lib.gyp:skia_lib', 79 'skia_lib.gyp:skia_lib',
75 ], 80 ],
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 'flags.gyp:flags', 738 'flags.gyp:flags',
734 'skia_lib.gyp:skia_lib', 739 'skia_lib.gyp:skia_lib',
735 'resources', 740 'resources',
736 ], 741 ],
737 }, 742 },
738 ], 743 ],
739 }, 744 },
740 ], 745 ],
741 ], 746 ],
742 } 747 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698