OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'chrome_common_target': 0, | 8 'chrome_common_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
11 ['chrome_common_target==1', { | 11 ['chrome_common_target==1', { |
12 'include_dirs': [ | 12 'include_dirs': [ |
13 '..', | 13 '..', |
14 ], | 14 ], |
15 'conditions': [ | 15 'conditions': [ |
16 ['OS=="win"', { | 16 ['OS=="win"', { |
17 'include_dirs': [ | 17 'include_dirs': [ |
18 'third_party/wtl/include', | 18 'third_party/wtl/include', |
19 ], | 19 ], |
20 }, { # else: OS != "win" | |
21 'sources!': [ | |
22 'common/temp_scaffolding_stubs.h', | |
23 ], | |
24 }], | |
25 ['OS=="win" or OS=="linux"', { | |
26 'sources!': [ | |
27 'common/hi_res_timer_manager.cc', | |
28 'common/hi_res_timer_manager.h', | |
29 'common/temp_scaffolding_stubs.cc', | |
30 ], | |
31 }], | 20 }], |
32 ], | 21 ], |
33 'sources': [ | 22 'sources': [ |
34 # .cc, .h, and .mm files under chrome/common that are used on all | 23 # .cc, .h, and .mm files under chrome/common that are used on all |
35 # platforms, including both 32-bit and 64-bit Windows. | 24 # platforms, including both 32-bit and 64-bit Windows. |
36 # Test files are not included. | 25 # Test files are not included. |
37 'common/accessibility_events.h', | 26 'common/accessibility_events.h', |
38 'common/accessibility_events.cc', | 27 'common/accessibility_events.cc', |
39 'common/bindings_policy.h', | 28 'common/bindings_policy.h', |
40 'common/child_process.cc', | 29 'common/child_process.cc', |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 'common/security_filter_peer.cc', | 249 'common/security_filter_peer.cc', |
261 'common/security_filter_peer.h', | 250 'common/security_filter_peer.h', |
262 'common/socket_stream_dispatcher.cc', | 251 'common/socket_stream_dispatcher.cc', |
263 'common/socket_stream_dispatcher.h', | 252 'common/socket_stream_dispatcher.h', |
264 'common/spellcheck_common.cc', | 253 'common/spellcheck_common.cc', |
265 'common/spellcheck_common.h', | 254 'common/spellcheck_common.h', |
266 'common/sqlite_compiled_statement.cc', | 255 'common/sqlite_compiled_statement.cc', |
267 'common/sqlite_compiled_statement.h', | 256 'common/sqlite_compiled_statement.h', |
268 'common/sqlite_utils.cc', | 257 'common/sqlite_utils.cc', |
269 'common/sqlite_utils.h', | 258 'common/sqlite_utils.h', |
270 'common/temp_scaffolding_stubs.cc', | |
271 'common/temp_scaffolding_stubs.h', | |
272 'common/thumbnail_score.cc', | 259 'common/thumbnail_score.cc', |
273 'common/thumbnail_score.h', | 260 'common/thumbnail_score.h', |
274 'common/transport_dib_linux.cc', | 261 'common/transport_dib_linux.cc', |
275 'common/transport_dib_mac.cc', | 262 'common/transport_dib_mac.cc', |
276 'common/transport_dib_win.cc', | 263 'common/transport_dib_win.cc', |
277 'common/url_constants.cc', | 264 'common/url_constants.cc', |
278 'common/url_constants.h', | 265 'common/url_constants.h', |
279 'common/utility_messages.h', | 266 'common/utility_messages.h', |
280 'common/utility_messages_internal.h', | 267 'common/utility_messages_internal.h', |
281 'common/view_types.cc', | 268 'common/view_types.cc', |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 'configurations': { | 374 'configurations': { |
388 'Common_Base': { | 375 'Common_Base': { |
389 'msvs_target_platform': 'x64', | 376 'msvs_target_platform': 'x64', |
390 }, | 377 }, |
391 }, | 378 }, |
392 }, | 379 }, |
393 ], | 380 ], |
394 }], | 381 }], |
395 ], | 382 ], |
396 } | 383 } |
OLD | NEW |