Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Side by Side Diff: base/base.gyp

Issue 853903003: Cleanup dead code in base/ as found by Scythe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix MessageLoop::ReloadWorkQueue() Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/BUILD.gn ('k') | base/base.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 'conditions': [ 223 'conditions': [
224 ['OS=="win"', { 224 ['OS=="win"', {
225 'sources!': [ 225 'sources!': [
226 'debug/debug_on_start_win.cc', 226 'debug/debug_on_start_win.cc',
227 ], 227 ],
228 }], 228 }],
229 ], 229 ],
230 }], 230 }],
231 ], 231 ],
232 'sources': [ 232 'sources': [
233 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
234 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
235 'async_socket_io_handler.h', 233 'async_socket_io_handler.h',
236 'async_socket_io_handler_posix.cc', 234 'async_socket_io_handler_posix.cc',
237 'async_socket_io_handler_win.cc', 235 'async_socket_io_handler_win.cc',
238 'auto_reset.h', 236 'auto_reset.h',
239 'event_recorder.h',
240 'event_recorder_stubs.cc',
241 'event_recorder_win.cc',
242 'linux_util.cc', 237 'linux_util.cc',
243 'linux_util.h', 238 'linux_util.h',
244 'message_loop/message_pump_android.cc', 239 'message_loop/message_pump_android.cc',
245 'message_loop/message_pump_android.h', 240 'message_loop/message_pump_android.h',
246 'message_loop/message_pump_glib.cc', 241 'message_loop/message_pump_glib.cc',
247 'message_loop/message_pump_glib.h', 242 'message_loop/message_pump_glib.h',
248 'message_loop/message_pump_io_ios.cc', 243 'message_loop/message_pump_io_ios.cc',
249 'message_loop/message_pump_io_ios.h', 244 'message_loop/message_pump_io_ios.h',
250 'message_loop/message_pump_libevent.cc', 245 'message_loop/message_pump_libevent.cc',
251 'message_loop/message_pump_libevent.h', 246 'message_loop/message_pump_libevent.h',
252 'message_loop/message_pump_mac.h', 247 'message_loop/message_pump_mac.h',
253 'message_loop/message_pump_mac.mm', 248 'message_loop/message_pump_mac.mm',
254 'metrics/field_trial.cc', 249 'metrics/field_trial.cc',
255 'metrics/field_trial.h', 250 'metrics/field_trial.h',
256 'posix/file_descriptor_shuffle.cc', 251 'posix/file_descriptor_shuffle.cc',
257 'posix/file_descriptor_shuffle.h', 252 'posix/file_descriptor_shuffle.h',
258 'sync_socket.h', 253 'sync_socket.h',
254 'sync_socket_posix.cc',
259 'sync_socket_win.cc', 255 'sync_socket_win.cc',
260 'sync_socket_posix.cc', 256 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
257 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
261 ], 258 ],
262 'includes': [ 259 'includes': [
263 '../build/android/increase_size_for_speed.gypi', 260 '../build/android/increase_size_for_speed.gypi',
264 ], 261 ],
265 }, 262 },
266 { 263 {
267 'target_name': 'base_i18n', 264 'target_name': 'base_i18n',
268 'type': '<(component)', 265 'type': '<(component)',
269 'variables': { 266 'variables': {
270 'enable_wexit_time_destructors': 1, 267 'enable_wexit_time_destructors': 1,
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 }, 1156 },
1160 }, 1157 },
1161 }, 1158 },
1162 # TODO(rvargas): Bug 78117. Remove this. 1159 # TODO(rvargas): Bug 78117. Remove this.
1163 'msvs_disabled_warnings': [ 1160 'msvs_disabled_warnings': [
1164 4244, 1161 4244,
1165 4996, 1162 4996,
1166 4267, 1163 4267,
1167 ], 1164 ],
1168 'sources': [ 1165 'sources': [
1169 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
1170 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
1171 'async_socket_io_handler.h', 1166 'async_socket_io_handler.h',
1172 'async_socket_io_handler_posix.cc', 1167 'async_socket_io_handler_posix.cc',
1173 'async_socket_io_handler_win.cc', 1168 'async_socket_io_handler_win.cc',
1174 'auto_reset.h', 1169 'auto_reset.h',
1175 'event_recorder.h',
1176 'event_recorder_stubs.cc',
1177 'event_recorder_win.cc',
1178 'linux_util.cc', 1170 'linux_util.cc',
1179 'linux_util.h', 1171 'linux_util.h',
1180 'md5.cc', 1172 'md5.cc',
1181 'md5.h', 1173 'md5.h',
1182 'message_loop/message_pump_libevent.cc', 1174 'message_loop/message_pump_libevent.cc',
1183 'message_loop/message_pump_libevent.h', 1175 'message_loop/message_pump_libevent.h',
1184 'metrics/field_trial.cc', 1176 'metrics/field_trial.cc',
1185 'metrics/field_trial.h', 1177 'metrics/field_trial.h',
1186 'posix/file_descriptor_shuffle.cc', 1178 'posix/file_descriptor_shuffle.cc',
1187 'posix/file_descriptor_shuffle.h', 1179 'posix/file_descriptor_shuffle.h',
1188 'sync_socket.h', 1180 'sync_socket.h',
1181 'sync_socket_posix.cc',
1189 'sync_socket_win.cc', 1182 'sync_socket_win.cc',
1190 'sync_socket_posix.cc', 1183 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
1184 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
1191 ], 1185 ],
1192 }, 1186 },
1193 { 1187 {
1194 'target_name': 'base_i18n_nacl_win64', 1188 'target_name': 'base_i18n_nacl_win64',
1195 'type': '<(component)', 1189 'type': '<(component)',
1196 # TODO(gregoryd): direct_dependent_settings should be shared with the 1190 # TODO(gregoryd): direct_dependent_settings should be shared with the
1197 # 32-bit target, but it doesn't work due to a bug in gyp 1191 # 32-bit target, but it doesn't work due to a bug in gyp
1198 'direct_dependent_settings': { 1192 'direct_dependent_settings': {
1199 'include_dirs': [ 1193 'include_dirs': [
1200 '..', 1194 '..',
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
1558 'dependencies': [ 1552 'dependencies': [
1559 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1553 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1560 ], 1554 ],
1561 }], 1555 }],
1562 ], 1556 ],
1563 }, 1557 },
1564 ], 1558 ],
1565 }], 1559 }],
1566 ], 1560 ],
1567 } 1561 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698