OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'enable_wexit_time_destructors': 1, | 7 'enable_wexit_time_destructors': 1, |
8 'chromium_code': 1 | 8 'chromium_code': 1 |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 25 matching lines...) Expand all Loading... |
36 'include_dirs': [ | 36 'include_dirs': [ |
37 '<(INTERMEDIATE_DIR)', | 37 '<(INTERMEDIATE_DIR)', |
38 '<(SHARED_INTERMEDIATE_DIR)/ui', | 38 '<(SHARED_INTERMEDIATE_DIR)/ui', |
39 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 39 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
40 ], | 40 ], |
41 | 41 |
42 'sources': [ | 42 'sources': [ |
43 'data_element.cc', | 43 'data_element.cc', |
44 'data_element.h', | 44 'data_element.h', |
45 'webkit_common_export.h', | 45 'webkit_common_export.h', |
46 'webpreferences.cc', | |
47 'webpreferences.h', | |
48 ], | 46 ], |
49 | 47 |
50 'conditions': [ | 48 'conditions': [ |
51 ['use_aura==1 and use_x11==1', { | 49 ['use_aura==1 and use_x11==1', { |
52 'dependencies': [ | 50 'dependencies': [ |
53 '<(DEPTH)/build/linux/system.gyp:xcursor', | 51 '<(DEPTH)/build/linux/system.gyp:xcursor', |
54 ], | 52 ], |
55 }], | 53 }], |
56 ['OS=="mac"', { | 54 ['OS=="mac"', { |
57 'link_settings': { | 55 'link_settings': { |
58 'libraries': [ | 56 'libraries': [ |
59 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 57 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
60 ], | 58 ], |
61 }, | 59 }, |
62 }], | 60 }], |
63 ['OS=="win"', { | 61 ['OS=="win"', { |
64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 62 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
65 'msvs_disabled_warnings': [ 4800, 4267 ], | 63 'msvs_disabled_warnings': [ 4800, 4267 ], |
66 }], | 64 }], |
67 ], | 65 ], |
68 }, | 66 }, |
69 ], | 67 ], |
70 } | 68 } |
OLD | NEW |