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

Side by Side Diff: ots-standalone.gyp

Issue 10273025: [OTS] Add lzma_sdk for standalone build (Closed) Base URL: http://ots.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | third_party/lzma_sdk/Alloc.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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['OS=="win"', { 7 ['OS=="win"', {
8 'target_defaults': { 8 'target_defaults': {
9 'defines': [ 9 'defines': [
10 'NOMINMAX', # To suppress max/min macro definition. 10 'NOMINMAX', # To suppress max/min macro definition.
11 'WIN32', 11 'WIN32',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 }], 81 }],
82 ], 82 ],
83 }, 83 },
84 'targets': [ 84 'targets': [
85 { 85 {
86 'target_name': 'ots', 86 'target_name': 'ots',
87 'type': 'static_library', 87 'type': 'static_library',
88 'sources': [ 88 'sources': [
89 '<@(ots_sources)', 89 '<@(ots_sources)',
90 ], 90 ],
91 'dependencies': [
92 'third_party/lzma_sdk/lzma_sdk.gyp:ots_lzma_sdk',
93 ],
91 'include_dirs': [ 94 'include_dirs': [
92 '<@(ots_include_dirs)', 95 '<@(ots_include_dirs)',
93 ], 96 ],
94 'direct_dependent_settings': { 97 'direct_dependent_settings': {
95 'include_dirs': [ 98 'include_dirs': [
96 '<@(ots_include_dirs)', 99 '<@(ots_include_dirs)',
97 ], 100 ],
98 }, 101 },
99 }, 102 },
100 { 103 {
(...skipping 11 matching lines...) Expand all
112 '<!(pkg-config freetype2 --cflags)', 115 '<!(pkg-config freetype2 --cflags)',
113 ], 116 ],
114 'ldflags': [ 117 'ldflags': [
115 '<!(pkg-config freetype2 --libs)', 118 '<!(pkg-config freetype2 --libs)',
116 ], 119 ],
117 }], 120 }],
118 ], 121 ],
119 }, 122 },
120 ], 123 ],
121 } 124 }
OLDNEW
« no previous file with comments | « no previous file | third_party/lzma_sdk/Alloc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698