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

Side by Side Diff: ipc/ipc.gyp

Issue 206006: Force inclusion of build/common.gypi for all chromium gyp files. (Closed)
Patch Set: 2nd round of feedback 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
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': [
7 '../build/common.gypi',
8 ],
9 'target_defaults': { 6 'target_defaults': {
10 'sources/': [ 7 'sources/': [
11 ['exclude', '/win/'], 8 ['exclude', '/win/'],
12 ['exclude', '_(posix|win)(_unittest)?\\.(cc|mm?)$'], 9 ['exclude', '_(posix|win)(_unittest)?\\.(cc|mm?)$'],
13 ['exclude', '/win_[^/]*\\.cc$'], 10 ['exclude', '/win_[^/]*\\.cc$'],
14 ], 11 ],
15 'conditions': [ 12 'conditions': [
16 ['OS=="linux"', {'sources/': [ 13 ['OS=="linux"', {'sources/': [
17 ['include', '_posix(_unittest)?\\.cc$'], 14 ['include', '_posix(_unittest)?\\.cc$'],
18 ]}], 15 ]}],
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 }], 96 }],
100 ['OS=="linux" and toolkit_views==1', { 97 ['OS=="linux" and toolkit_views==1', {
101 'dependencies': [ 98 'dependencies': [
102 '../views/views.gyp:views', 99 '../views/views.gyp:views',
103 ], 100 ],
104 }], 101 }],
105 ], 102 ],
106 }, 103 },
107 ] 104 ]
108 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698