| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |