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

Side by Side Diff: ipc/ipc.gyp

Issue 199105: Continue with the FreeBSD port - this version builds and links, though... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 3 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
« no previous file with comments | « chrome/tools/build/linux/sed.sh ('k') | media/audio/freebsd/audio_manager_freebsd.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': [ 6 'includes': [
7 '../build/common.gypi', 7 '../build/common.gypi',
8 ], 8 ],
9 'target_defaults': { 9 'target_defaults': {
10 'sources/': [ 10 'sources/': [
11 ['exclude', '/win/'], 11 ['exclude', '/win/'],
12 ['exclude', '_(posix|win)(_unittest)?\\.(cc|mm?)$'], 12 ['exclude', '_(posix|win)(_unittest)?\\.(cc|mm?)$'],
13 ['exclude', '/win_[^/]*\\.cc$'], 13 ['exclude', '/win_[^/]*\\.cc$'],
14 ], 14 ],
15 'conditions': [ 15 'conditions': [
16 ['OS=="linux"', {'sources/': [ 16 ['OS=="linux" or OS=="freebsd"', {'sources/': [
17 ['include', '_posix(_unittest)?\\.cc$'], 17 ['include', '_posix(_unittest)?\\.cc$'],
18 ]}], 18 ]}],
19 ['OS=="mac"', {'sources/': [ 19 ['OS=="mac"', {'sources/': [
20 ['include', '_posix(_unittest)?\\.(cc|mm?)$'], 20 ['include', '_posix(_unittest)?\\.(cc|mm?)$'],
21 ]}], 21 ]}],
22 ['OS=="win"', {'sources/': [ 22 ['OS=="win"', {'sources/': [
23 ['include', '_win(_unittest)?\\.cc$'], 23 ['include', '_win(_unittest)?\\.cc$'],
24 ['include', '/win/'], 24 ['include', '/win/'],
25 ['include', '/win_[^/]*\\.cc$'], 25 ['include', '/win_[^/]*\\.cc$'],
26 ]}], 26 ]}],
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 'ipc_fuzzing_tests.cc', 85 'ipc_fuzzing_tests.cc',
86 'ipc_message_unittest.cc', 86 'ipc_message_unittest.cc',
87 'ipc_send_fds_test.cc', 87 'ipc_send_fds_test.cc',
88 'ipc_sync_channel_unittest.cc', 88 'ipc_sync_channel_unittest.cc',
89 'ipc_sync_message_unittest.cc', 89 'ipc_sync_message_unittest.cc',
90 'ipc_sync_message_unittest.h', 90 'ipc_sync_message_unittest.h',
91 'ipc_tests.cc', 91 'ipc_tests.cc',
92 'ipc_tests.h', 92 'ipc_tests.h',
93 ], 93 ],
94 'conditions': [ 94 'conditions': [
95 ['OS=="linux"', { 95 ['OS=="linux" or OS=="freebsd"', {
96 'dependencies': [ 96 'dependencies': [
97 '../build/linux/system.gyp:gtk', 97 '../build/linux/system.gyp:gtk',
98 ], 98 ],
99 }], 99 }],
100 ['OS=="linux" and toolkit_views==1', { 100 ['OS=="linux" and toolkit_views==1', {
101 'dependencies': [ 101 'dependencies': [
102 '../views/views.gyp:views', 102 '../views/views.gyp:views',
103 ], 103 ],
104 }], 104 }],
105 ], 105 ],
106 }, 106 },
107 ] 107 ]
108 } 108 }
OLDNEW
« no previous file with comments | « chrome/tools/build/linux/sed.sh ('k') | media/audio/freebsd/audio_manager_freebsd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698