Chromium Code Reviews| Index: infra/bots/recipe_modules/flavor/pdfium_flavor.py |
| diff --git a/infra/bots/recipe_modules/flavor/pdfium_flavor.py b/infra/bots/recipe_modules/flavor/pdfium_flavor.py |
| index 12a4f808e9370737b3c9ed1c2a427cc562c840a9..3ffd28d34d53146c4b4b4eedbd3dc587cb78a89e 100644 |
| --- a/infra/bots/recipe_modules/flavor/pdfium_flavor.py |
| +++ b/infra/bots/recipe_modules/flavor/pdfium_flavor.py |
| @@ -25,8 +25,15 @@ class PDFiumFlavorUtils(default_flavor.DefaultFlavorUtils): |
| **kwargs) |
| # Setup gn args. |
| - gn_args = ['pdf_use_skia=true', 'pdf_is_standalone=true', |
| - 'clang_use_chrome_plugins=false'] |
| + gn_args = [ |
| + 'pdf_use_skia=true', |
| + 'pdf_is_standalone=true', |
| + 'clang_use_chrome_plugins=false', |
| + 'is_component_build=false', |
| + 'is_debug=false', |
| + ] |
| + |
|
borenet
2016/09/02 18:45:19
Nit: 4-space indent.
jcgregorio
2016/09/02 19:06:39
Fixed.
|
| + |
| env = kwargs.pop('env', {}) |
| env['CHROMIUM_BUILDTOOLS_PATH'] = str(pdfium_dir.join('buildtools')) |
| self.m.run( |