 Chromium Code Reviews
 Chromium Code Reviews Issue 2295383002:
  Add use_sysroot=false to Linux PDFium bots.  (Closed)
    
  
    Issue 2295383002:
  Add use_sysroot=false to Linux PDFium bots.  (Closed) 
  | OLD | NEW | 
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 DEPS = [ | 5 DEPS = [ | 
| 6 'depot_tools/gclient', | 6 'depot_tools/gclient', | 
| 7 'depot_tools/bot_update', | 7 'depot_tools/bot_update', | 
| 8 'recipe_engine/path', | 8 'recipe_engine/path', | 
| 9 'recipe_engine/platform', | 9 'recipe_engine/platform', | 
| 10 'recipe_engine/properties', | 10 'recipe_engine/properties', | 
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 48 args = [ | 48 args = [ | 
| 49 'is_debug=%s' % gn_bool[not rel], | 49 'is_debug=%s' % gn_bool[not rel], | 
| 50 'is_component_build=false', | 50 'is_component_build=false', | 
| 51 'pdf_enable_v8=%s' % gn_bool[v8], | 51 'pdf_enable_v8=%s' % gn_bool[v8], | 
| 52 'pdf_enable_xfa=%s' % gn_bool[xfa], | 52 'pdf_enable_xfa=%s' % gn_bool[xfa], | 
| 53 'pdf_use_skia=%s' % gn_bool[skia], | 53 'pdf_use_skia=%s' % gn_bool[skia], | 
| 54 'pdf_is_standalone=true', | 54 'pdf_is_standalone=true', | 
| 55 ] | 55 ] | 
| 56 if api.platform.is_win and not memory_tool: | 56 if api.platform.is_win and not memory_tool: | 
| 57 args.append('symbol_level=1') | 57 args.append('symbol_level=1') | 
| 58 if api.platform.is_linux | |
| 
dsinclair
2016/08/31 20:51:30
Missing :
 | |
| 59 args.append('use_sysroot=false') | |
| 58 if clang: | 60 if clang: | 
| 59 args.append('is_clang=true') | 61 args.append('is_clang=true') | 
| 60 if memory_tool == 'asan': | 62 if memory_tool == 'asan': | 
| 61 args.append('is_asan=true') | 63 args.append('is_asan=true') | 
| 62 if target_os: | 64 if target_os: | 
| 63 args.append('target_os="%s"' % target_os) | 65 args.append('target_os="%s"' % target_os) | 
| 64 if target_cpu == 'x86': | 66 if target_cpu == 'x86': | 
| 65 args.append('target_cpu="x86"') | 67 args.append('target_cpu="x86"') | 
| 66 | 68 | 
| 67 api.python('gn gen', gn_cmd, | 69 api.python('gn gen', gn_cmd, | 
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 370 | 372 | 
| 371 yield ( | 373 yield ( | 
| 372 api.test('android') + | 374 api.test('android') + | 
| 373 api.platform('linux', 64) + | 375 api.platform('linux', 64) + | 
| 374 api.properties(mastername='client.pdfium', | 376 api.properties(mastername='client.pdfium', | 
| 375 buildername='android', | 377 buildername='android', | 
| 376 slavename='test_slave', | 378 slavename='test_slave', | 
| 377 target_os='android', | 379 target_os='android', | 
| 378 skip_test=True) | 380 skip_test=True) | 
| 379 ) | 381 ) | 
| OLD | NEW |