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

Side by Side Diff: gyp/tools.gyp

Issue 382523002: Revert "Remove ability for Release code to call getRefCnt() or getWeakRefCnt()." (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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 | « gyp/tests.gypi ('k') | include/core/SkImageFilter.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 # GYP file to build various tools. 1 # GYP file to build various tools.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia tools.gyp && make tools 4 # ./gyp_skia tools.gyp && make tools
5 # 5 #
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 26 matching lines...) Expand all
37 'conditions': [ 37 'conditions': [
38 ['skia_shared_lib', 38 ['skia_shared_lib',
39 { 39 {
40 'dependencies': [ 40 'dependencies': [
41 'sklua', # This can only be built if skia is built as a shared lib rary 41 'sklua', # This can only be built if skia is built as a shared lib rary
42 ], 42 ],
43 }, 43 },
44 ], 44 ],
45 ], 45 ],
46 }, 46 },
47 {
48 'target_name': 'ref_cnt_is',
49 'type': 'static_library',
50 'sources': [ '../tools/RefCntIs.cpp' ],
51 'direct_dependent_settings': {
52 'include_dirs': [ '../tools' ],
53 },
54 'dependencies': [
55 'skia_lib.gyp:skia_lib',
56 ],
57 },
58 { # This would go in gm.gyp, but it's also used by skimage below. 47 { # This would go in gm.gyp, but it's also used by skimage below.
59 'target_name': 'gm_expectations', 48 'target_name': 'gm_expectations',
60 'type': 'static_library', 49 'type': 'static_library',
61 'include_dirs' : [ '../src/utils/' ], 50 'include_dirs' : [ '../src/utils/' ],
62 'sources': [ 51 'sources': [
63 '../gm/gm_expectations.cpp', 52 '../gm/gm_expectations.cpp',
64 ], 53 ],
65 'dependencies': [ 54 'dependencies': [
66 'jsoncpp.gyp:jsoncpp', 55 'jsoncpp.gyp:jsoncpp',
67 'sk_tool_utils', 56 'sk_tool_utils',
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 'type': 'executable', 713 'type': 'executable',
725 'sources': [ 714 'sources': [
726 '../tools/win_lcid.cpp', 715 '../tools/win_lcid.cpp',
727 ], 716 ],
728 }, 717 },
729 ], 718 ],
730 }, 719 },
731 ], 720 ],
732 ], 721 ],
733 } 722 }
OLDNEW
« no previous file with comments | « gyp/tests.gypi ('k') | include/core/SkImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698