OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 ['OS!="linux"', { |
| 22 'sources!': [ |
| 23 'common/file_path_watcher/file_path_watcher_inotify.cc', |
| 24 ], |
| 25 }], |
| 26 ['OS=="freebsd" or OS=="openbsd"', { |
| 27 'sources': [ |
| 28 'common/file_path_watcher/file_path_watcher_stub.cc', |
| 29 ], |
| 30 }], |
21 ], | 31 ], |
22 'sources': [ | 32 'sources': [ |
23 # .cc, .h, and .mm files under chrome/common that are used on all | 33 # .cc, .h, and .mm files under chrome/common that are used on all |
24 # platforms, including both 32-bit and 64-bit Windows. | 34 # platforms, including both 32-bit and 64-bit Windows. |
25 # Test files are not included. | 35 # Test files are not included. |
26 'common/about_handler.cc', | 36 'common/about_handler.cc', |
27 'common/about_handler.h', | 37 'common/about_handler.h', |
28 'common/app_mode_common_mac.h', | 38 'common/app_mode_common_mac.h', |
29 'common/app_mode_common_mac.mm', | 39 'common/app_mode_common_mac.mm', |
30 'common/auto_start_linux.cc', | 40 'common/auto_start_linux.cc', |
(...skipping 16 matching lines...) Expand all Loading... |
47 'common/content_restriction.h', | 57 'common/content_restriction.h', |
48 'common/content_settings.cc', | 58 'common/content_settings.cc', |
49 'common/content_settings.h', | 59 'common/content_settings.h', |
50 'common/content_settings_helper.cc', | 60 'common/content_settings_helper.cc', |
51 'common/content_settings_helper.h', | 61 'common/content_settings_helper.h', |
52 'common/content_settings_types.h', | 62 'common/content_settings_types.h', |
53 'common/devtools_messages.cc', | 63 'common/devtools_messages.cc', |
54 'common/devtools_messages.h', | 64 'common/devtools_messages.h', |
55 'common/dom_storage_messages.cc', | 65 'common/dom_storage_messages.cc', |
56 'common/dom_storage_messages.h', | 66 'common/dom_storage_messages.h', |
| 67 'common/file_path_watcher/file_path_watcher.cc', |
| 68 'common/file_path_watcher/file_path_watcher.h', |
| 69 'common/file_path_watcher/file_path_watcher_inotify.cc', |
| 70 'common/file_path_watcher/file_path_watcher_mac.cc', |
| 71 'common/file_path_watcher/file_path_watcher_win.cc', |
57 'common/font_config_ipc_linux.cc', | 72 'common/font_config_ipc_linux.cc', |
58 'common/font_config_ipc_linux.h', | 73 'common/font_config_ipc_linux.h', |
59 'common/geoposition.cc', | 74 'common/geoposition.cc', |
60 'common/geoposition.h', | 75 'common/geoposition.h', |
61 'common/gfx_resource_provider.cc', | 76 'common/gfx_resource_provider.cc', |
62 'common/gfx_resource_provider.h', | 77 'common/gfx_resource_provider.h', |
63 'common/gpu_feature_flags.cc', | 78 'common/gpu_feature_flags.cc', |
64 'common/gpu_feature_flags.h', | 79 'common/gpu_feature_flags.h', |
65 'common/guid.cc', | 80 'common/guid.cc', |
66 'common/guid.h', | 81 'common/guid.h', |
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 'configurations': { | 556 'configurations': { |
542 'Common_Base': { | 557 'Common_Base': { |
543 'msvs_target_platform': 'x64', | 558 'msvs_target_platform': 'x64', |
544 }, | 559 }, |
545 }, | 560 }, |
546 }, | 561 }, |
547 ], | 562 ], |
548 }], | 563 }], |
549 ], | 564 ], |
550 } | 565 } |
OLD | NEW |