Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: trunk/test/module/src/module.gyp

Issue 306051: Add AUTHORS and LICENSE files, and copyright headers to relevant source files... (Closed) Base URL: http://gyp.googlecode.com/svn/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698