| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'use_system_sqlite%': 0, | 7 'use_system_sqlite%': 0, |
| 8 'required_sqlite_version': '3.6.1', | 8 'required_sqlite_version': '3.6.1', |
| 9 }, | 9 }, |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 'src/preprocessed', | 204 'src/preprocessed', |
| 205 'src/src', | 205 'src/src', |
| 206 ], | 206 ], |
| 207 'dependencies': [ | 207 'dependencies': [ |
| 208 '../icu/icu.gyp:icui18n', | 208 '../icu/icu.gyp:icui18n', |
| 209 '../icu/icu.gyp:icuuc', | 209 '../icu/icu.gyp:icuuc', |
| 210 ], | 210 ], |
| 211 'direct_dependent_settings': { | 211 'direct_dependent_settings': { |
| 212 'include_dirs': [ | 212 'include_dirs': [ |
| 213 '.', | 213 '.', |
| 214 '../..', |
| 214 ], | 215 ], |
| 215 }, | 216 }, |
| 216 'msvs_disabled_warnings': [ | 217 'msvs_disabled_warnings': [ |
| 217 4018, 4244, | 218 4018, 4244, |
| 218 ], | 219 ], |
| 219 'conditions': [ | 220 'conditions': [ |
| 220 ['OS=="win"', { | 221 ['OS=="win"', { |
| 221 'sources/': [['exclude', '_unix\\.cc?$']], | 222 'sources/': [['exclude', '_unix\\.cc?$']], |
| 222 }, { # else: OS!="win" | 223 }, { # else: OS!="win" |
| 223 'sources/': [['exclude', '_(w32|win)\\.cc?$']], | 224 'sources/': [['exclude', '_(w32|win)\\.cc?$']], |
| (...skipping 24 matching lines...) Expand all Loading... |
| 248 ], | 249 ], |
| 249 },] | 250 },] |
| 250 ], | 251 ], |
| 251 } | 252 } |
| 252 | 253 |
| 253 # Local Variables: | 254 # Local Variables: |
| 254 # tab-width:2 | 255 # tab-width:2 |
| 255 # indent-tabs-mode:nil | 256 # indent-tabs-mode:nil |
| 256 # End: | 257 # End: |
| 257 # vim: set expandtab tabstop=2 shiftwidth=2: | 258 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |