OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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/win_precompile.gypi', | 7 '../../build/win_precompile.gypi', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 'direct_dependent_settings': { | 94 'direct_dependent_settings': { |
95 'defines': [ | 95 'defines': [ |
96 'CLD_WINDOWS', | 96 'CLD_WINDOWS', |
97 ], | 97 ], |
98 'include_dirs': [ | 98 'include_dirs': [ |
99 '.', | 99 '.', |
100 ], | 100 ], |
101 }, | 101 }, |
102 'conditions': [ | 102 'conditions': [ |
103 ['OS=="win"', { | 103 ['OS=="win"', { |
104 'direct_dependent_settings': { | 104 'direct_dependent_settings': { |
105 'defines': [ | 105 'defines': [ |
106 'COMPILER_MSVC', | 106 'COMPILER_MSVC', |
107 ], | 107 ], |
108 }, | 108 }, |
109 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800], | 109 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int |
110 }, | 110 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800, 4267], |
111 ], | 111 }, { |
112 ['OS!="win"', { | 112 'direct_dependent_settings': { |
113 'direct_dependent_settings': { | 113 'defines': [ |
114 'defines': [ | 114 'COMPILER_GCC', |
115 'COMPILER_GCC', | 115 ], |
116 ], | 116 }, |
117 }, | 117 }], |
118 }, | |
119 ], | |
120 ], | 118 ], |
121 }, | 119 }, |
122 ], | 120 ], |
123 } | 121 } |
OLD | NEW |