| 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', |
| 281 ], | 282 ], |
| 282 }], | 283 }], |
| 283 ['disable_nacl!=1', { | 284 ['disable_nacl!=1', { |
| 284 'dependencies': [ | 285 'dependencies': [ |
| 285 '../components/nacl.gyp:nacl', | 286 '../components/nacl.gyp:nacl', |
| 286 '../components/nacl.gyp:nacl_renderer', | 287 '../components/nacl.gyp:nacl_renderer', |
| 287 ], | 288 ], |
| 288 }], | 289 }], |
| 289 ['enable_plugins==1', { | 290 ['enable_plugins==1', { |
| 290 'sources': [ | 291 'sources': [ |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 'export_dependent_settings': [ | 397 'export_dependent_settings': [ |
| 397 '<(allocator_target)', | 398 '<(allocator_target)', |
| 398 ], | 399 ], |
| 399 }], | 400 }], |
| 400 ], | 401 ], |
| 401 }], | 402 }], |
| 402 ], | 403 ], |
| 403 }, | 404 }, |
| 404 ], | 405 ], |
| 405 } | 406 } |
| OLD | NEW |