| OLD | NEW |
| 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 'chrome_renderer_sources': [ | 7 'chrome_renderer_sources': [ |
| 8 'renderer/banners/app_banner_client.cc', | 8 'renderer/banners/app_banner_client.cc', |
| 9 'renderer/banners/app_banner_client.h', | 9 'renderer/banners/app_banner_client.h', |
| 10 'renderer/benchmarking_extension.cc', | 10 'renderer/benchmarking_extension.cc', |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 'renderer/pepper/chrome_pdf_print_client.h', | 239 'renderer/pepper/chrome_pdf_print_client.h', |
| 240 ], | 240 ], |
| 241 }, | 241 }, |
| 242 'targets': [ | 242 'targets': [ |
| 243 { | 243 { |
| 244 'target_name': 'renderer', | 244 'target_name': 'renderer', |
| 245 'type': 'static_library', | 245 'type': 'static_library', |
| 246 'variables': { 'enable_wexit_time_destructors': 1, }, | 246 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 247 'dependencies': [ | 247 'dependencies': [ |
| 248 'common', | 248 'common', |
| 249 'common_mojo_bindings', |
| 249 'common_net', | 250 'common_net', |
| 250 'chrome_resources.gyp:chrome_resources', | 251 'chrome_resources.gyp:chrome_resources', |
| 251 'chrome_resources.gyp:chrome_strings', | 252 'chrome_resources.gyp:chrome_strings', |
| 252 '../third_party/re2/re2.gyp:re2', | 253 '../third_party/re2/re2.gyp:re2', |
| 253 '../components/components.gyp:autofill_content_renderer', | 254 '../components/components.gyp:autofill_content_renderer', |
| 254 '../components/components.gyp:content_settings_content_common', | 255 '../components/components.gyp:content_settings_content_common', |
| 255 '../components/components.gyp:cdm_renderer', | 256 '../components/components.gyp:cdm_renderer', |
| 256 '../components/components.gyp:data_reduction_proxy_content_common', | 257 '../components/components.gyp:data_reduction_proxy_content_common', |
| 257 '../components/components.gyp:data_reduction_proxy_core_common', | 258 '../components/components.gyp:data_reduction_proxy_core_common', |
| 258 '../components/components.gyp:network_hints_renderer', | 259 '../components/components.gyp:network_hints_renderer', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 'export_dependent_settings': [ | 390 'export_dependent_settings': [ |
| 390 '<(allocator_target)', | 391 '<(allocator_target)', |
| 391 ], | 392 ], |
| 392 }], | 393 }], |
| 393 ], | 394 ], |
| 394 }], | 395 }], |
| 395 ], | 396 ], |
| 396 }, | 397 }, |
| 397 ], | 398 ], |
| 398 } | 399 } |
| OLD | NEW |