OLD | NEW |
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 'conditions': [ | 6 'conditions': [ |
10 ['OS!="win"', { | 7 ['OS!="win"', { |
11 'variables': { | 8 'variables': { |
12 'config_h_dir': | 9 'config_h_dir': |
13 '.', # crafted for gcc/linux. | 10 '.', # crafted for gcc/linux. |
14 }, | 11 }, |
15 }, { # else, OS=="win" | 12 }, { # else, OS=="win" |
16 'variables': { | 13 'variables': { |
17 'config_h_dir': | 14 'config_h_dir': |
18 'src/vsprojects', # crafted for msvc. | 15 'src/vsprojects', # crafted for msvc. |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 'protobuf', | 172 'protobuf', |
176 ], | 173 ], |
177 | 174 |
178 'include_dirs': [ | 175 'include_dirs': [ |
179 '<(config_h_dir)', | 176 '<(config_h_dir)', |
180 'src/src', | 177 'src/src', |
181 ], | 178 ], |
182 }, | 179 }, |
183 ], | 180 ], |
184 } | 181 } |
OLD | NEW |