| 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 'includes': [ | |
| 7 '../../build/common.gypi', | |
| 8 ], | |
| 9 'target_defaults': { | 6 'target_defaults': { |
| 10 'defines': [ | 7 'defines': [ |
| 11 'FEATURE_ENABLE_SSL', | 8 'FEATURE_ENABLE_SSL', |
| 12 'FEATURE_ENABLE_VOICEMAIL', # TODO(ncarter): Do we really need this? | 9 'FEATURE_ENABLE_VOICEMAIL', # TODO(ncarter): Do we really need this? |
| 13 'COMPILER_MSVC', | 10 'COMPILER_MSVC', |
| 14 '_USE_32BIT_TIME_T', | 11 '_USE_32BIT_TIME_T', |
| 15 ], | 12 ], |
| 16 'include_dirs': [ | 13 'include_dirs': [ |
| 17 './overrides', | 14 './overrides', |
| 18 './files', | 15 './files', |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 'files/talk/xmpp/xmpptask.h', | 242 'files/talk/xmpp/xmpptask.h', |
| 246 'overrides/base/basictypes.h', | 243 'overrides/base/basictypes.h', |
| 247 'overrides/base/constructormagic.h', | 244 'overrides/base/constructormagic.h', |
| 248 'overrides/base/scoped_ptr.h', | 245 'overrides/base/scoped_ptr.h', |
| 249 'overrides/config.h', | 246 'overrides/config.h', |
| 250 ], | 247 ], |
| 251 }, | 248 }, |
| 252 ], | 249 ], |
| 253 } | 250 } |
| 254 | 251 |
| OLD | NEW |