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: views/views.gyp

Issue 7706011: Use precompiled headers for most large projects. (Closed) Base URL: ssh://joi@192.168.1.201/home/joi/c/chrome/src@master
Patch Set: Created 9 years, 4 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 9
10 'target_defaults': { 10 'target_defaults': {
11 'conditions': [ 11 'conditions': [
12 ['OS=="win"', {'sources/': [ 12 ['OS=="win"', {'sources/': [
13 ['include', '_(win)\\.cc$'], 13 ['include', '_(win)\\.cc$'],
14 ['include', '/win/'], 14 ['include', '/win/'],
15 ['include', '/win_[^/]*\\.cc$'], 15 ['include', '/win_[^/]*\\.cc$'],
16 ['exclude', 'touchui/touch_factory.cc'], 16 ['exclude', 'touchui/touch_factory.cc'],
17 ]}], 17 ]}],
18 ['touchui==0', { 18 ['touchui==0', {
19 'sources/': [ 19 'sources/': [
20 ['exclude', '_(touch)\\.cc$'], 20 ['exclude', '_(touch)\\.cc$'],
21 ], 21 ],
22 }], 22 }],
23 ], 23 ],
24 }, 24 },
25 'targets': [ 25 'targets': [
26 { 26 {
27 'target_name': 'views', 27 'target_name': 'views',
28 'type': '<(component)', 28 'type': '<(component)',
29 'msvs_disable_precompiled_header': '1',
29 'dependencies': [ 30 'dependencies': [
30 '../base/base.gyp:base', 31 '../base/base.gyp:base',
31 '../base/base.gyp:base_i18n', 32 '../base/base.gyp:base_i18n',
32 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 33 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
33 '../build/temp_gyp/googleurl.gyp:googleurl', 34 '../build/temp_gyp/googleurl.gyp:googleurl',
34 '../net/net.gyp:net', 35 '../net/net.gyp:net',
35 '../skia/skia.gyp:skia', 36 '../skia/skia.gyp:skia',
36 '../third_party/icu/icu.gyp:icui18n', 37 '../third_party/icu/icu.gyp:icui18n',
37 '../third_party/icu/icu.gyp:icuuc', 38 '../third_party/icu/icu.gyp:icuuc',
38 '../ui/base/strings/ui_strings.gyp:ui_strings', 39 '../ui/base/strings/ui_strings.gyp:ui_strings',
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 'include_dirs': [ 725 'include_dirs': [
725 '<(DEPTH)/third_party/wtl/include', 726 '<(DEPTH)/third_party/wtl/include',
726 ], 727 ],
727 }], 728 }],
728 ], 729 ],
729 }, 730 },
730 731
731 732
732 ], 733 ],
733 } 734 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698