| OLD | NEW |
| 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'gcc_cflags': [ | 7 'gcc_cflags': [ |
| 8 '-ggdb', | 8 '-ggdb', |
| 9 '-W', | 9 '-W', |
| 10 '-Wall', | 10 '-Wall', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 }], | 76 }], |
| 77 ], | 77 ], |
| 78 }, | 78 }, |
| 79 'targets': [ | 79 'targets': [ |
| 80 { | 80 { |
| 81 'target_name': 'ots', | 81 'target_name': 'ots', |
| 82 'type': 'static_library', | 82 'type': 'static_library', |
| 83 'sources': [ | 83 'sources': [ |
| 84 '<@(ots_sources)', | 84 '<@(ots_sources)', |
| 85 ], | 85 ], |
| 86 'defines': [ |
| 87 'OTS_DEBUG', |
| 88 ], |
| 86 'dependencies': [ | 89 'dependencies': [ |
| 87 'third_party/lzma_sdk/lzma_sdk.gyp:ots_lzma_sdk', | 90 'third_party/lzma_sdk/lzma_sdk.gyp:ots_lzma_sdk', |
| 88 ], | 91 ], |
| 89 'include_dirs': [ | 92 'include_dirs': [ |
| 90 '<@(ots_include_dirs)', | 93 '<@(ots_include_dirs)', |
| 91 ], | 94 ], |
| 92 'direct_dependent_settings': { | 95 'direct_dependent_settings': { |
| 93 'include_dirs': [ | 96 'include_dirs': [ |
| 94 '<@(ots_include_dirs)', | 97 '<@(ots_include_dirs)', |
| 95 ], | 98 ], |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 ], | 194 ], |
| 192 'dependencies': [ | 195 'dependencies': [ |
| 193 'freetype2', | 196 'freetype2', |
| 194 'ots', | 197 'ots', |
| 195 ], | 198 ], |
| 196 }, | 199 }, |
| 197 ], | 200 ], |
| 198 }], | 201 }], |
| 199 ], | 202 ], |
| 200 } | 203 } |
| OLD | NEW |