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

Side by Side Diff: gyp/tools.gyp

Issue 1417393004: Reorganize BRD code in new tools directory (Closed) Base URL: https://skia.googlesource.com/skia.git@delete-imdec
Patch Set: tools/android 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 | « gyp/dm.gypi ('k') | tools/SkBitmapRegionCanvas.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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'sklua', # This can only be built if skia is built as a shared lib rary 44 'sklua', # This can only be built if skia is built as a shared lib rary
45 ], 45 ],
46 }, 46 },
47 ], 47 ],
48 ], 48 ],
49 }, 49 },
50 { 50 {
51 'target_name': 'bitmap_region_decoder', 51 'target_name': 'bitmap_region_decoder',
52 'type': 'static_library', 52 'type': 'static_library',
53 'sources': [ 53 'sources': [
54 '../tools/SkBitmapRegionCanvas.cpp', 54 '../tools/android/SkBitmapRegionCanvas.cpp',
55 '../tools/SkBitmapRegionCodec.cpp', 55 '../tools/android/SkBitmapRegionCodec.cpp',
56 '../tools/SkBitmapRegionDecoder.cpp', 56 '../tools/android/SkBitmapRegionDecoder.cpp',
57 ], 57 ],
58 'include_dirs': [ 58 'include_dirs': [
59 '../include/private', 59 '../include/private',
60 '../src/codec', 60 '../src/codec',
61 ], 61 ],
62 'dependencies': [ 62 'dependencies': [
63 'skia_lib.gyp:skia_lib', 63 'skia_lib.gyp:skia_lib',
64 ], 64 ],
65 'direct_dependent_settings': { 65 'direct_dependent_settings': {
66 'include_dirs': [ 66 'include_dirs': [
67 '../tools', 67 '../tools/android',
68 ], 68 ],
69 }, 69 },
70 }, 70 },
71 { 71 {
72 'target_name': 'chrome_fuzz', 72 'target_name': 'chrome_fuzz',
73 'type': 'executable', 73 'type': 'executable',
74 'sources': [ 74 'sources': [
75 '../tools/chrome_fuzz.cpp', 75 '../tools/chrome_fuzz.cpp',
76 ], 76 ],
77 'dependencies': [ 77 'dependencies': [
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 'flags.gyp:flags', 737 'flags.gyp:flags',
738 'skia_lib.gyp:skia_lib', 738 'skia_lib.gyp:skia_lib',
739 'resources', 739 'resources',
740 ], 740 ],
741 }, 741 },
742 ], 742 ],
743 }, 743 },
744 ], 744 ],
745 ], 745 ],
746 } 746 }
OLDNEW
« no previous file with comments | « gyp/dm.gypi ('k') | tools/SkBitmapRegionCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698