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

Side by Side Diff: views/views.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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [
10 '../build/common.gypi',
11 ],
12 'target_defaults': { 9 'target_defaults': {
13 'sources/': [ 10 'sources/': [
14 ['exclude', '/(cocoa|gtk|win)/'], 11 ['exclude', '/(cocoa|gtk|win)/'],
15 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|x)\\.(cc|mm?)$'], 12 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|x)\\.(cc|mm?)$'],
16 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'], 13 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'],
17 ], 14 ],
18 'conditions': [ 15 'conditions': [
19 ['OS=="linux"', {'sources/': [ 16 ['OS=="linux"', {'sources/': [
20 ['include', '/gtk/'], 17 ['include', '/gtk/'],
21 ['include', '_(gtk|linux|posix|skia|x)\\.cc$'], 18 ['include', '_(gtk|linux|posix|skia|x)\\.cc$'],
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 ], 320 ],
324 'include_dirs': [ 321 'include_dirs': [
325 # TODO(beng): move wtl to src/third_party 322 # TODO(beng): move wtl to src/third_party
326 '../chrome/third_party/wtl/include', 323 '../chrome/third_party/wtl/include',
327 ], 324 ],
328 }], 325 }],
329 ], 326 ],
330 } 327 }
331 ], 328 ],
332 } 329 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698