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': [ |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 ], | 118 ], |
119 }, | 119 }, |
120 'dependencies': [ | 120 'dependencies': [ |
121 # TODO(gregoryd): chrome_resources and chrome_strings could be | 121 # TODO(gregoryd): chrome_resources and chrome_strings could be |
122 # shared with the 64-bit target, but it does not work due to a gyp | 122 # shared with the 64-bit target, but it does not work due to a gyp |
123 # issue. | 123 # issue. |
124 'chrome_resources', | 124 'chrome_resources', |
125 'chrome_strings', | 125 'chrome_strings', |
126 'common_constants', | 126 'common_constants', |
127 'common_net', | 127 'common_net', |
| 128 'default_plugin/default_plugin.gyp:default_plugin', |
128 'theme_resources', | 129 'theme_resources', |
129 '../app/app.gyp:app_base', | 130 '../app/app.gyp:app_base', |
130 '../app/app.gyp:app_resources', | 131 '../app/app.gyp:app_resources', |
131 '../base/base.gyp:base', | 132 '../base/base.gyp:base', |
132 '../base/base.gyp:base_i18n', | 133 '../base/base.gyp:base_i18n', |
133 '../build/temp_gyp/googleurl.gyp:googleurl', | 134 '../build/temp_gyp/googleurl.gyp:googleurl', |
134 '../ipc/ipc.gyp:ipc', | 135 '../ipc/ipc.gyp:ipc', |
135 '../net/net.gyp:net', | 136 '../net/net.gyp:net', |
136 '../skia/skia.gyp:skia', | 137 '../skia/skia.gyp:skia', |
137 '../third_party/bzip2/bzip2.gyp:bzip2', | 138 '../third_party/bzip2/bzip2.gyp:bzip2', |
138 '../third_party/icu/icu.gyp:icui18n', | 139 '../third_party/icu/icu.gyp:icui18n', |
139 '../third_party/icu/icu.gyp:icuuc', | 140 '../third_party/icu/icu.gyp:icuuc', |
140 '../third_party/libxml/libxml.gyp:libxml', | 141 '../third_party/libxml/libxml.gyp:libxml', |
141 '../third_party/sqlite/sqlite.gyp:sqlite', | 142 '../third_party/sqlite/sqlite.gyp:sqlite', |
142 '../third_party/zlib/zlib.gyp:zlib', | 143 '../third_party/zlib/zlib.gyp:zlib', |
143 '../third_party/npapi/npapi.gyp:npapi', | 144 '../third_party/npapi/npapi.gyp:npapi', |
144 '../webkit/default_plugin/default_plugin.gyp:default_plugin', | |
145 '../webkit/support/webkit_support.gyp:appcache', | 145 '../webkit/support/webkit_support.gyp:appcache', |
146 '../webkit/support/webkit_support.gyp:glue', | 146 '../webkit/support/webkit_support.gyp:glue', |
147 ], | 147 ], |
148 'sources': [ | 148 'sources': [ |
149 # .cc, .h, and .mm files under chrome/common that are not required for | 149 # .cc, .h, and .mm files under chrome/common that are not required for |
150 # building 64-bit Windows targets. Test files are not included. | 150 # building 64-bit Windows targets. Test files are not included. |
151 'common/desktop_notifications/active_notification_tracker.h', | 151 'common/desktop_notifications/active_notification_tracker.h', |
152 'common/desktop_notifications/active_notification_tracker.cc', | 152 'common/desktop_notifications/active_notification_tracker.cc', |
153 'common/extensions/extension.cc', | 153 'common/extensions/extension.cc', |
154 'common/extensions/extension.h', | 154 'common/extensions/extension.h', |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 'configurations': { | 413 'configurations': { |
414 'Common_Base': { | 414 'Common_Base': { |
415 'msvs_target_platform': 'x64', | 415 'msvs_target_platform': 'x64', |
416 }, | 416 }, |
417 }, | 417 }, |
418 }, | 418 }, |
419 ], | 419 ], |
420 }], | 420 }], |
421 ], | 421 ], |
422 } | 422 } |
OLD | NEW |