| 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 '<(DEPTH)/third_party/wtl/include', | 18 '<(DEPTH)/third_party/wtl/include', |
| 19 ], | 19 ], |
| 20 }], | 20 }], |
| 21 ], | 21 ], |
| 22 'sources': [ | 22 'sources': [ |
| 23 # .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 |
| 24 # platforms, including both 32-bit and 64-bit Windows. | 24 # platforms, including both 32-bit and 64-bit Windows. |
| 25 # Test files are not included. | 25 # Test files are not included. |
| 26 'common/about_handler.cc', | 26 'common/about_handler.cc', |
| 27 'common/about_handler.h', | 27 'common/about_handler.h', |
| 28 'common/app_mode_common_mac.h', | 28 'common/app_mode_common_mac.h', |
| 29 'common/app_mode_common_mac.mm', | 29 'common/app_mode_common_mac.mm', |
| 30 'common/autofill_messages.cc', |
| 31 'common/autofill_messages.h', |
| 30 'common/bindings_policy.h', | 32 'common/bindings_policy.h', |
| 31 'common/child_process.cc', | 33 'common/child_process.cc', |
| 32 'common/child_process.h', | 34 'common/child_process.h', |
| 33 'common/child_process_info.cc', | 35 'common/child_process_info.cc', |
| 34 'common/child_process_info.h', | 36 'common/child_process_info.h', |
| 35 'common/child_process_logging.h', | 37 'common/child_process_logging.h', |
| 36 'common/child_process_logging_linux.cc', | 38 'common/child_process_logging_linux.cc', |
| 37 'common/child_process_logging_mac.mm', | 39 'common/child_process_logging_mac.mm', |
| 38 'common/child_process_logging_win.cc', | 40 'common/child_process_logging_win.cc', |
| 39 'common/child_thread.cc', | 41 'common/child_thread.cc', |
| (...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 'configurations': { | 623 'configurations': { |
| 622 'Common_Base': { | 624 'Common_Base': { |
| 623 'msvs_target_platform': 'x64', | 625 'msvs_target_platform': 'x64', |
| 624 }, | 626 }, |
| 625 }, | 627 }, |
| 626 }, | 628 }, |
| 627 ], | 629 ], |
| 628 }], | 630 }], |
| 629 ], | 631 ], |
| 630 } | 632 } |
| OLD | NEW |