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 '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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 'renderer/devtools_client.h', | 105 'renderer/devtools_client.h', |
106 'renderer/dom_ui_bindings.cc', | 106 'renderer/dom_ui_bindings.cc', |
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', |
| 116 'renderer/geolocation_dispatcher.h', |
115 'renderer/geolocation_dispatcher_old.cc', | 117 'renderer/geolocation_dispatcher_old.cc', |
116 'renderer/geolocation_dispatcher_old.h', | 118 'renderer/geolocation_dispatcher_old.h', |
117 'renderer/gpu_channel_host.cc', | 119 'renderer/gpu_channel_host.cc', |
118 'renderer/gpu_channel_host.h', | 120 'renderer/gpu_channel_host.h', |
119 'renderer/gpu_video_decoder_host.cc', | 121 'renderer/gpu_video_decoder_host.cc', |
120 'renderer/gpu_video_decoder_host.h', | 122 'renderer/gpu_video_decoder_host.h', |
121 'renderer/gpu_video_service_host.cc', | 123 'renderer/gpu_video_service_host.cc', |
122 'renderer/gpu_video_service_host.h', | 124 'renderer/gpu_video_service_host.h', |
123 'renderer/indexed_db_dispatcher.cc', | 125 'renderer/indexed_db_dispatcher.cc', |
124 'renderer/indexed_db_dispatcher.h', | 126 'renderer/indexed_db_dispatcher.h', |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 }], | 307 }], |
306 ['enable_gpu==1', { | 308 ['enable_gpu==1', { |
307 'dependencies': [ | 309 'dependencies': [ |
308 '../gpu/gpu.gyp:gles2_c_lib', | 310 '../gpu/gpu.gyp:gles2_c_lib', |
309 ], | 311 ], |
310 'sources': [ | 312 'sources': [ |
311 'renderer/command_buffer_proxy.cc', | 313 'renderer/command_buffer_proxy.cc', |
312 'renderer/command_buffer_proxy.h', | 314 'renderer/command_buffer_proxy.h', |
313 ], | 315 ], |
314 }], | 316 }], |
| 317 # We are migrating to client-based geolocation. Once the migration |
| 318 # has finished, ENABLE_CLIENT_BASED_GEOLOCATION will disappear. |
| 319 # See bugs: |
| 320 # https://bugs.webkit.org/show_bug.cgi?id=45752 and |
| 321 # http://code.google.com/p/chromium/issues/detail?id=59907 |
| 322 ['"ENABLE_CLIENT_BASED_GEOLOCATION=1" in feature_defines', { |
| 323 'defines': [ 'ENABLE_CLIENT_BASED_GEOLOCATION=1' ] |
| 324 }], |
315 ], | 325 ], |
316 }, | 326 }, |
317 { | 327 { |
318 # Protobuf compiler / generator for the safebrowsing client model proto. | 328 # Protobuf compiler / generator for the safebrowsing client model proto. |
319 'target_name': 'safe_browsing_proto', | 329 'target_name': 'safe_browsing_proto', |
320 'type': 'none', | 330 'type': 'none', |
321 'sources': [ 'renderer/safe_browsing/client_model.proto' ], | 331 'sources': [ 'renderer/safe_browsing/client_model.proto' ], |
322 'rules': [ | 332 'rules': [ |
323 { | 333 { |
324 'rule_name': 'genproto', | 334 'rule_name': 'genproto', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 ], | 369 ], |
360 }, | 370 }, |
361 ], | 371 ], |
362 } | 372 } |
363 | 373 |
364 # Local Variables: | 374 # Local Variables: |
365 # tab-width:2 | 375 # tab-width:2 |
366 # indent-tabs-mode:nil | 376 # indent-tabs-mode:nil |
367 # End: | 377 # End: |
368 # vim: set expandtab tabstop=2 shiftwidth=2: | 378 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |