| 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/extensions/chrome_extension_helper.cc', | 10 'renderer/extensions/chrome_extension_helper.cc', |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 'dependencies': [ | 370 'dependencies': [ |
| 371 '../third_party/hunspell/hunspell.gyp:hunspell', | 371 '../third_party/hunspell/hunspell.gyp:hunspell', |
| 372 ], | 372 ], |
| 373 }], | 373 }], |
| 374 ['OS=="mac"', { | 374 ['OS=="mac"', { |
| 375 'dependencies': [ | 375 'dependencies': [ |
| 376 '../third_party/mach_override/mach_override.gyp:mach_override', | 376 '../third_party/mach_override/mach_override.gyp:mach_override', |
| 377 ], | 377 ], |
| 378 }], | 378 }], |
| 379 ['enable_printing!=0', { | 379 ['enable_printing!=0', { |
| 380 'dependencies': [ |
| 381 '../printing/printing.gyp:printing', |
| 382 ], |
| 380 'sources': [ | 383 'sources': [ |
| 381 '<@(chrome_renderer_printing_sources)', | 384 '<@(chrome_renderer_printing_sources)', |
| 382 ] | 385 ] |
| 383 }], | 386 }], |
| 384 ['win_pdf_metafile_for_printing==1', { | 387 ['win_pdf_metafile_for_printing==1', { |
| 385 'sources': [ | 388 'sources': [ |
| 386 'renderer/printing/print_web_view_helper_pdf_win.cc', | 389 'renderer/printing/print_web_view_helper_pdf_win.cc', |
| 387 ], | 390 ], |
| 388 }, { | 391 }, { |
| 389 'sources': [ | 392 'sources': [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 414 }], | 417 }], |
| 415 ], | 418 ], |
| 416 }], | 419 }], |
| 417 ['OS != "ios"', { | 420 ['OS != "ios"', { |
| 418 'dependencies': [ | 421 'dependencies': [ |
| 419 # TODO(hclam): See crbug.com/298380 for details. | 422 # TODO(hclam): See crbug.com/298380 for details. |
| 420 # We should isolate the APIs needed by the renderer. | 423 # We should isolate the APIs needed by the renderer. |
| 421 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api', | 424 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api', |
| 422 ], | 425 ], |
| 423 }], | 426 }], |
| 424 ['enable_printing!=0', { | |
| 425 'dependencies': [ | |
| 426 '../printing/printing.gyp:printing', | |
| 427 ], | |
| 428 }], | |
| 429 ], | 427 ], |
| 430 }, | 428 }, |
| 431 ], | 429 ], |
| 432 } | 430 } |
| OLD | NEW |