Index: infra/bots/recipes/swarm_compile.expected/Build-Ubuntu-GCC-x86_64-Debug-GN.json |
diff --git a/infra/bots/recipes/swarm_compile.expected/Build-Ubuntu-GCC-x86_64-Release-CMake.json b/infra/bots/recipes/swarm_compile.expected/Build-Ubuntu-GCC-x86_64-Debug-GN.json |
similarity index 83% |
copy from infra/bots/recipes/swarm_compile.expected/Build-Ubuntu-GCC-x86_64-Release-CMake.json |
copy to infra/bots/recipes/swarm_compile.expected/Build-Ubuntu-GCC-x86_64-Debug-GN.json |
index e5b34501f6e54ceb3a763fd0eb37d8840375c57a..5c1566eb5d8290b03b959b1feedda009001f905f 100644 |
--- a/infra/bots/recipes/swarm_compile.expected/Build-Ubuntu-GCC-x86_64-Release-CMake.json |
+++ b/infra/bots/recipes/swarm_compile.expected/Build-Ubuntu-GCC-x86_64-Debug-GN.json |
@@ -76,7 +76,7 @@ |
"-u", |
"[CUSTOM_/_B_WORK]/skia/tools/buildbot_spec.py", |
"/path/to/tmp/json", |
- "Build-Ubuntu-GCC-x86_64-Release-CMake" |
+ "Build-Ubuntu-GCC-x86_64-Debug-GN" |
], |
"cwd": "[CUSTOM_/_B_WORK]/skia", |
"name": "exec buildbot_spec.py", |
@@ -87,14 +87,14 @@ |
"@@@STEP_LOG_LINE@json.output@ ], @@@", |
"@@@STEP_LOG_LINE@json.output@ \"builder_cfg\": {@@@", |
"@@@STEP_LOG_LINE@json.output@ \"compiler\": \"GCC\", @@@", |
- "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Release\", @@@", |
- "@@@STEP_LOG_LINE@json.output@ \"extra_config\": \"CMake\", @@@", |
+ "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Debug\", @@@", |
+ "@@@STEP_LOG_LINE@json.output@ \"extra_config\": \"GN\", @@@", |
"@@@STEP_LOG_LINE@json.output@ \"is_trybot\": false, @@@", |
"@@@STEP_LOG_LINE@json.output@ \"os\": \"Ubuntu\", @@@", |
"@@@STEP_LOG_LINE@json.output@ \"role\": \"Build\", @@@", |
"@@@STEP_LOG_LINE@json.output@ \"target_arch\": \"x86_64\"@@@", |
"@@@STEP_LOG_LINE@json.output@ }, @@@", |
- "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Release\", @@@", |
+ "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Debug\", @@@", |
"@@@STEP_LOG_LINE@json.output@ \"dm_flags\": [@@@", |
"@@@STEP_LOG_LINE@json.output@ \"--dummy-flags\"@@@", |
"@@@STEP_LOG_LINE@json.output@ ], @@@", |
@@ -114,25 +114,59 @@ |
}, |
{ |
"cmd": [ |
- "[CUSTOM_/_B_WORK]/skia/cmake/cmake_build" |
+ "[CUSTOM_/_B_WORK]/skia/bin/fetch_gn" |
], |
"cwd": "[CUSTOM_/_B_WORK]/skia", |
"env": { |
- "BUILDTYPE": "Release", |
+ "BUILDTYPE": "Debug", |
"CHROME_HEADLESS": "1", |
"GYP_DEFINES": "skia_arch_type=x86_64 skia_warnings_as_errors=1", |
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[depot_tools]", |
- "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-x86_64-Release-CMake" |
+ "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-x86_64-Debug-GN" |
}, |
- "name": "cmake_build" |
+ "name": "fetch-gn" |
+ }, |
+ { |
+ "cmd": [ |
+ "gn", |
+ "gen", |
+ "out/Debug", |
+ "--args=is_debug=true" |
+ ], |
+ "cwd": "[CUSTOM_/_B_WORK]/skia", |
+ "env": { |
+ "BUILDTYPE": "Debug", |
+ "CHROME_HEADLESS": "1", |
+ "GYP_DEFINES": "skia_arch_type=x86_64 skia_warnings_as_errors=1", |
+ "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[depot_tools]", |
+ "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-x86_64-Debug-GN" |
+ }, |
+ "name": "gn_gen" |
+ }, |
+ { |
+ "cmd": [ |
+ "ninja", |
+ "-C", |
+ "out/Debug", |
+ "skia" |
+ ], |
+ "cwd": "[CUSTOM_/_B_WORK]/skia", |
+ "env": { |
+ "BUILDTYPE": "Debug", |
+ "CHROME_HEADLESS": "1", |
+ "GYP_DEFINES": "skia_arch_type=x86_64 skia_warnings_as_errors=1", |
+ "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[depot_tools]", |
+ "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-x86_64-Debug-GN" |
+ }, |
+ "name": "compile most" |
}, |
{ |
"cmd": [ |
"python", |
"-u", |
"import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['dm', 'dm.exe', 'nanobench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so', 'iOSShell.app', 'iOSShell.ipa', 'visualbench', 'visualbench.exe']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", |
- "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-x86_64-Release-CMake/Release", |
- "[CUSTOM_[SWARM_OUT_DIR]]/out/Release" |
+ "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-x86_64-Debug-GN/Debug", |
+ "[CUSTOM_[SWARM_OUT_DIR]]/out/Debug" |
], |
"name": "copy build products", |
"~followup_annotations": [ |