| 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/benchmarking_extension.cc', | 8 'renderer/benchmarking_extension.cc', |
| 9 'renderer/benchmarking_extension.h', | 9 'renderer/benchmarking_extension.h', |
| 10 'renderer/isolated_world_ids.h', | 10 'renderer/isolated_world_ids.h', |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 ], | 337 ], |
| 338 }], | 338 }], |
| 339 ['safe_browsing==2', { | 339 ['safe_browsing==2', { |
| 340 'defines': [ | 340 'defines': [ |
| 341 'MOBILE_SAFE_BROWSING', | 341 'MOBILE_SAFE_BROWSING', |
| 342 ], | 342 ], |
| 343 }], | 343 }], |
| 344 ['enable_extensions==1', { | 344 ['enable_extensions==1', { |
| 345 'dependencies': [ | 345 'dependencies': [ |
| 346 '../extensions/extensions.gyp:extensions_renderer', | 346 '../extensions/extensions.gyp:extensions_renderer', |
| 347 # TODO(hclam): See crbug.com/298380 for details. |
| 348 # We should isolate the APIs needed by the renderer. |
| 349 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api', |
| 347 ], | 350 ], |
| 348 'sources': [ | 351 'sources': [ |
| 349 '<@(chrome_renderer_extensions_sources)', | 352 '<@(chrome_renderer_extensions_sources)', |
| 350 ], | 353 ], |
| 351 }], | 354 }], |
| 352 ['enable_webrtc==1', { | 355 ['enable_webrtc==1', { |
| 353 'sources': [ | 356 'sources': [ |
| 354 '<@(chrome_renderer_webrtc_sources)', | 357 '<@(chrome_renderer_webrtc_sources)', |
| 355 ], | 358 ], |
| 356 }], | 359 }], |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 ['win_use_allocator_shim==1', { | 405 ['win_use_allocator_shim==1', { |
| 403 'dependencies': [ | 406 'dependencies': [ |
| 404 '<(allocator_target)', | 407 '<(allocator_target)', |
| 405 ], | 408 ], |
| 406 'export_dependent_settings': [ | 409 'export_dependent_settings': [ |
| 407 '<(allocator_target)', | 410 '<(allocator_target)', |
| 408 ], | 411 ], |
| 409 }], | 412 }], |
| 410 ], | 413 ], |
| 411 }], | 414 }], |
| 412 ['OS != "ios"', { | |
| 413 'dependencies': [ | |
| 414 # TODO(hclam): See crbug.com/298380 for details. | |
| 415 # We should isolate the APIs needed by the renderer. | |
| 416 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api', | |
| 417 ], | |
| 418 }], | |
| 419 ], | 415 ], |
| 420 }, | 416 }, |
| 421 ], | 417 ], |
| 422 } | 418 } |
| OLD | NEW |