| OLD | NEW |
| 1 # Copyright (c) 2009 Google Inc. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 1 { | 5 { |
| 2 'target_defaults': { | 6 'target_defaults': { |
| 3 'conditions': [ | 7 'conditions': [ |
| 4 ['OS=="win"', { | 8 ['OS=="win"', { |
| 5 'defines': ['PLATFORM_WIN'], | 9 'defines': ['PLATFORM_WIN'], |
| 6 }], | 10 }], |
| 7 ['OS=="mac"', { | 11 ['OS=="mac"', { |
| 8 'defines': ['PLATFORM_MAC'], | 12 'defines': ['PLATFORM_MAC'], |
| 9 }], | 13 }], |
| 10 ['OS=="linux"', { | 14 ['OS=="linux"', { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 { | 41 { |
| 38 'target_name': 'lib2', | 42 'target_name': 'lib2', |
| 39 'type': 'loadable_module', | 43 'type': 'loadable_module', |
| 40 'xcode_settings': {'OTHER_LDFLAGS': ['-dynamiclib'], 'MACH_O_TYPE': ''}, | 44 'xcode_settings': {'OTHER_LDFLAGS': ['-dynamiclib'], 'MACH_O_TYPE': ''}, |
| 41 'sources': [ | 45 'sources': [ |
| 42 'lib2.c', | 46 'lib2.c', |
| 43 ], | 47 ], |
| 44 }, | 48 }, |
| 45 ], | 49 ], |
| 46 } | 50 } |
| OLD | NEW |