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', | |
117 'renderer/geolocation_dispatcher_old.cc', | 115 'renderer/geolocation_dispatcher_old.cc', |
118 'renderer/geolocation_dispatcher_old.h', | 116 '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', |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 }], | 305 }], |
308 ['enable_gpu==1', { | 306 ['enable_gpu==1', { |
309 'dependencies': [ | 307 'dependencies': [ |
310 '../gpu/gpu.gyp:gles2_c_lib', | 308 '../gpu/gpu.gyp:gles2_c_lib', |
311 ], | 309 ], |
312 'sources': [ | 310 'sources': [ |
313 'renderer/command_buffer_proxy.cc', | 311 'renderer/command_buffer_proxy.cc', |
314 'renderer/command_buffer_proxy.h', | 312 'renderer/command_buffer_proxy.h', |
315 ], | 313 ], |
316 }], | 314 }], |
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 }], | |
325 ], | 315 ], |
326 }, | 316 }, |
327 { | 317 { |
328 # Protobuf compiler / generator for the safebrowsing client model proto. | 318 # Protobuf compiler / generator for the safebrowsing client model proto. |
329 'target_name': 'safe_browsing_proto', | 319 'target_name': 'safe_browsing_proto', |
330 'type': 'none', | 320 'type': 'none', |
331 'sources': [ 'renderer/safe_browsing/client_model.proto' ], | 321 'sources': [ 'renderer/safe_browsing/client_model.proto' ], |
332 'rules': [ | 322 'rules': [ |
333 { | 323 { |
334 'rule_name': 'genproto', | 324 'rule_name': 'genproto', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 ], | 359 ], |
370 }, | 360 }, |
371 ], | 361 ], |
372 } | 362 } |
373 | 363 |
374 # Local Variables: | 364 # Local Variables: |
375 # tab-width:2 | 365 # tab-width:2 |
376 # indent-tabs-mode:nil | 366 # indent-tabs-mode:nil |
377 # End: | 367 # End: |
378 # vim: set expandtab tabstop=2 shiftwidth=2: | 368 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |