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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
104 'renderer/devtools_client.h', | 104 'renderer/devtools_client.h', |
105 'renderer/dom_ui_bindings.cc', | 105 'renderer/dom_ui_bindings.cc', |
106 'renderer/dom_ui_bindings.h', | 106 'renderer/dom_ui_bindings.h', |
107 'renderer/extension_groups.h', | 107 'renderer/extension_groups.h', |
108 'renderer/external_host_bindings.cc', | 108 'renderer/external_host_bindings.cc', |
109 'renderer/external_host_bindings.h', | 109 'renderer/external_host_bindings.h', |
110 'renderer/external_extension.cc', | 110 'renderer/external_extension.cc', |
111 'renderer/external_extension.h', | 111 'renderer/external_extension.h', |
112 'renderer/form_manager.cc', | 112 'renderer/form_manager.cc', |
113 'renderer/form_manager.h', | 113 'renderer/form_manager.h', |
114 'renderer/geolocation_dispatcher.cc', | |
115 'renderer/geolocation_dispatcher.h', | |
114 'renderer/geolocation_dispatcher_old.cc', | 116 'renderer/geolocation_dispatcher_old.cc', |
115 'renderer/geolocation_dispatcher_old.h', | 117 'renderer/geolocation_dispatcher_old.h', |
116 'renderer/gpu_channel_host.cc', | 118 'renderer/gpu_channel_host.cc', |
117 'renderer/gpu_channel_host.h', | 119 'renderer/gpu_channel_host.h', |
118 'renderer/gpu_video_decoder_host.cc', | 120 'renderer/gpu_video_decoder_host.cc', |
119 'renderer/gpu_video_decoder_host.h', | 121 'renderer/gpu_video_decoder_host.h', |
120 'renderer/gpu_video_service_host.cc', | 122 'renderer/gpu_video_service_host.cc', |
121 'renderer/gpu_video_service_host.h', | 123 'renderer/gpu_video_service_host.h', |
122 'renderer/indexed_db_dispatcher.cc', | 124 'renderer/indexed_db_dispatcher.cc', |
123 'renderer/indexed_db_dispatcher.h', | 125 'renderer/indexed_db_dispatcher.h', |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
304 }], | 306 }], |
305 ['enable_gpu==1', { | 307 ['enable_gpu==1', { |
306 'dependencies': [ | 308 'dependencies': [ |
307 '../gpu/gpu.gyp:gles2_c_lib', | 309 '../gpu/gpu.gyp:gles2_c_lib', |
308 ], | 310 ], |
309 'sources': [ | 311 'sources': [ |
310 'renderer/command_buffer_proxy.cc', | 312 'renderer/command_buffer_proxy.cc', |
311 'renderer/command_buffer_proxy.h', | 313 'renderer/command_buffer_proxy.h', |
312 ], | 314 ], |
313 }], | 315 }], |
316 ['"ENABLE_CLIENT_BASED_GEOLOCATION=1" in feature_defines', { | |
317 'defines': [ 'ENABLE_CLIENT_BASED_GEOLOCATION=1' ] | |
joth
2010/12/07 10:24:51
ditto
John Knottenbelt
2010/12/07 12:30:04
Will add comment.
| |
318 }], | |
314 ], | 319 ], |
315 }, | 320 }, |
316 { | 321 { |
317 # Protobuf compiler / generator for the safebrowsing client model proto. | 322 # Protobuf compiler / generator for the safebrowsing client model proto. |
318 'target_name': 'safe_browsing_proto', | 323 'target_name': 'safe_browsing_proto', |
319 'type': 'none', | 324 'type': 'none', |
320 'sources': [ 'renderer/safe_browsing/client_model.proto' ], | 325 'sources': [ 'renderer/safe_browsing/client_model.proto' ], |
321 'rules': [ | 326 'rules': [ |
322 { | 327 { |
323 'rule_name': 'genproto', | 328 'rule_name': 'genproto', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
358 ], | 363 ], |
359 }, | 364 }, |
360 ], | 365 ], |
361 } | 366 } |
362 | 367 |
363 # Local Variables: | 368 # Local Variables: |
364 # tab-width:2 | 369 # tab-width:2 |
365 # indent-tabs-mode:nil | 370 # indent-tabs-mode:nil |
366 # End: | 371 # End: |
367 # vim: set expandtab tabstop=2 shiftwidth=2: | 372 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |