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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 5938002: Remove legacy non-client-based geolocation code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove non-client-based geolocation code. Created 9 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 | Annotate | Revision Log
OLDNEW
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'renderer', 8 'target_name': 'renderer',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'renderer/dom_ui_bindings.h', 107 'renderer/dom_ui_bindings.h',
108 'renderer/extension_groups.h', 108 'renderer/extension_groups.h',
109 'renderer/external_host_bindings.cc', 109 'renderer/external_host_bindings.cc',
110 'renderer/external_host_bindings.h', 110 'renderer/external_host_bindings.h',
111 'renderer/external_extension.cc', 111 'renderer/external_extension.cc',
112 'renderer/external_extension.h', 112 'renderer/external_extension.h',
113 'renderer/form_manager.cc', 113 'renderer/form_manager.cc',
114 'renderer/form_manager.h', 114 'renderer/form_manager.h',
115 'renderer/geolocation_dispatcher.cc', 115 'renderer/geolocation_dispatcher.cc',
116 'renderer/geolocation_dispatcher.h', 116 'renderer/geolocation_dispatcher.h',
117 'renderer/geolocation_dispatcher_old.cc',
118 'renderer/geolocation_dispatcher_old.h',
119 'renderer/gpu_channel_host.cc', 117 'renderer/gpu_channel_host.cc',
120 'renderer/gpu_channel_host.h', 118 'renderer/gpu_channel_host.h',
121 'renderer/gpu_video_decoder_host.cc', 119 'renderer/gpu_video_decoder_host.cc',
122 'renderer/gpu_video_decoder_host.h', 120 'renderer/gpu_video_decoder_host.h',
123 'renderer/gpu_video_service_host.cc', 121 'renderer/gpu_video_service_host.cc',
124 'renderer/gpu_video_service_host.h', 122 'renderer/gpu_video_service_host.h',
125 'renderer/indexed_db_dispatcher.cc', 123 'renderer/indexed_db_dispatcher.cc',
126 'renderer/indexed_db_dispatcher.h', 124 'renderer/indexed_db_dispatcher.h',
127 'renderer/localized_error.cc', 125 'renderer/localized_error.cc',
128 'renderer/localized_error.h', 126 'renderer/localized_error.h',
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 }], 310 }],
313 ['enable_gpu==1', { 311 ['enable_gpu==1', {
314 'dependencies': [ 312 'dependencies': [
315 '../gpu/gpu.gyp:gles2_c_lib', 313 '../gpu/gpu.gyp:gles2_c_lib',
316 ], 314 ],
317 'sources': [ 315 'sources': [
318 'renderer/command_buffer_proxy.cc', 316 'renderer/command_buffer_proxy.cc',
319 'renderer/command_buffer_proxy.h', 317 'renderer/command_buffer_proxy.h',
320 ], 318 ],
321 }], 319 }],
322 # We are migrating to client-based geolocation. Once the migration
323 # has finished, ENABLE_CLIENT_BASED_GEOLOCATION will disappear.
324 # See bugs:
325 # https://bugs.webkit.org/show_bug.cgi?id=45752 and
326 # http://code.google.com/p/chromium/issues/detail?id=59907
327 ['"ENABLE_CLIENT_BASED_GEOLOCATION=1" in feature_defines', {
328 'defines': [ 'ENABLE_CLIENT_BASED_GEOLOCATION=1' ]
329 }],
330 ], 320 ],
331 }, 321 },
332 { 322 {
333 # Protobuf compiler / generator for the safebrowsing client model proto. 323 # Protobuf compiler / generator for the safebrowsing client model proto.
334 'target_name': 'safe_browsing_proto', 324 'target_name': 'safe_browsing_proto',
335 'type': 'none', 325 'type': 'none',
336 'sources': [ 'renderer/safe_browsing/client_model.proto' ], 326 'sources': [ 'renderer/safe_browsing/client_model.proto' ],
337 'rules': [ 327 'rules': [
338 { 328 {
339 'rule_name': 'genproto', 329 'rule_name': 'genproto',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 ], 364 ],
375 }, 365 },
376 ], 366 ],
377 } 367 }
378 368
379 # Local Variables: 369 # Local Variables:
380 # tab-width:2 370 # tab-width:2
381 # indent-tabs-mode:nil 371 # indent-tabs-mode:nil
382 # End: 372 # End:
383 # vim: set expandtab tabstop=2 shiftwidth=2: 373 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698