| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 # Needed by chrome_content_renderer_client.cc. | 271 # Needed by chrome_content_renderer_client.cc. |
| 272 '<(SHARED_INTERMEDIATE_DIR)', | 272 '<(SHARED_INTERMEDIATE_DIR)', |
| 273 ], | 273 ], |
| 274 'sources': [ | 274 'sources': [ |
| 275 '<@(chrome_renderer_sources)', | 275 '<@(chrome_renderer_sources)', |
| 276 ], | 276 ], |
| 277 'conditions': [ | 277 'conditions': [ |
| 278 ['OS != "ios"', { | 278 ['OS != "ios"', { |
| 279 'dependencies': [ | 279 'dependencies': [ |
| 280 'common_net', | 280 'common_net', |
| 281 '../components/components.gyp:dom_distiller_content_renderer', | |
| 282 ], | 281 ], |
| 283 }], | 282 }], |
| 284 ['disable_nacl!=1', { | 283 ['disable_nacl!=1', { |
| 285 'dependencies': [ | 284 'dependencies': [ |
| 286 '../components/nacl.gyp:nacl', | 285 '../components/nacl.gyp:nacl', |
| 287 '../components/nacl.gyp:nacl_renderer', | 286 '../components/nacl.gyp:nacl_renderer', |
| 288 ], | 287 ], |
| 289 }], | 288 }], |
| 290 ['enable_plugins==1', { | 289 ['enable_plugins==1', { |
| 291 'sources': [ | 290 'sources': [ |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 'export_dependent_settings': [ | 396 'export_dependent_settings': [ |
| 398 '<(allocator_target)', | 397 '<(allocator_target)', |
| 399 ], | 398 ], |
| 400 }], | 399 }], |
| 401 ], | 400 ], |
| 402 }], | 401 }], |
| 403 ], | 402 ], |
| 404 }, | 403 }, |
| 405 ], | 404 ], |
| 406 } | 405 } |
| OLD | NEW |