Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Issue 1208963003: Move GN obj files to target-specific dirs (Closed)

Created:
5 years, 5 months ago by brettw
Modified:
5 years, 5 months ago
Reviewers:
Nico
CC:
chromium-reviews, tfarina, cbentzel+watch_chromium.org, extensions-reviews_chromium.org, chromium-apps-reviews_chromium.org, Ken Rockot(use gerrit already), Ryan Hamilton, ramant (doing other things)
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Move GN obj files to target-specific dirs Previously GN would put object files in a similar place to GYP. They would go in a corresponding directory as the source file and would be prefixed with the target name for uniqueness. Since GN target names are not unique, this doesn't work as well. Instead use a simpler scheme and put all the object files in a directory for each target. This causes a few object file name collisions which this patch fixes in various ways: - Renamed chrome/browser/ui/views/find_bar_host_interactive_uitest.cc to have "views" in the name (collided with chrome/browser/ui/find_bar/find_bar_host_interactive_uitest.cc) - Renamed chrome/browser/apps/speech_recognition_browsertest.cc to have "app" in the name (collided with chrome/browser/speech/speech_recognition_browsertest.cc). - Renamed chrome/common/extensions/api/extension_api_unittest.cc to have "common" in the name (collided with chrome/browser/extensions/extension_api_unittest.cc which is actually a test harness with that name). - Moved the extensions files that were in the chrome interactive UI tests and browser tests to source sets in the extensions directory. These are things that should be cleaned up and moved there anyway. - Net has some messy duplication in quic files. I made a dummy target for them. Apparently each copy of this file (same code, different namespace) is supposed to match something different upstream and this should be fixed. - Moved chrome/browser/chromeos unit tests to its own target. - Renamed chrome/browser/favicon/favicon_helper to favicon_utils. It conflicted with chrome/browser/android/favicon_helper which has an actual class named "FaviconHelper. - Renamed service.* and service_factory.* in chrome/browser/chromeos/launcher_search_provider to have a launcher_search_provider prefix to avoid collisions with the file_system_provider one. - Added a "chromeos" prefix to chrome/browser/chromeos/first_run/first_run_browsertest.cc to avoid collisions with the one in browser/first_run. - Added "chromeos" to chrome/browser/chromeos/preferences_browsertest.cc to avoid collision with browser/ui/webui/options. - Rename "chrome/browser/chromeos/drive/test_util.*" to "drive_test_util.*". Update includes. Rename chrome/browser/chromeos/file_manager/drive_test_util* to mount_test_util to avoid colliding with above new file. The deps->public_deps changes in components/policy and content/test is because those targets were used externally in a way that this patch uncovered. Committed: https://crrev.com/39355da5ab86e662d701fcba8fef4e20921b38f0 Cr-Commit-Position: refs/heads/master@{#338408}

Patch Set 1 #

Patch Set 2 : #

Total comments: 5

Patch Set 3 : review comments #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Patch Set 9 : #

Patch Set 10 : #

Patch Set 11 : #

Patch Set 12 : #

Patch Set 13 : #

Patch Set 14 : #

Patch Set 15 : #

Patch Set 16 : #

Patch Set 17 : y #

Patch Set 18 : merge #

Patch Set 19 : #

Patch Set 20 : #

Patch Set 21 : #

Patch Set 22 : #

Patch Set 23 : #

Patch Set 24 : #

Patch Set 25 : \ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+440 lines, -2572 lines) Patch
M build/toolchain/gcc_toolchain.gni View 3 chunks +3 lines, -3 lines 0 comments Download
M build/toolchain/mac/BUILD.gn View 5 chunks +5 lines, -5 lines 0 comments Download
M build/toolchain/win/BUILD.gn View 4 chunks +4 lines, -4 lines 0 comments Download
A + chrome/browser/apps/app_speech_recognition_browsertest.cc View 0 chunks +-1 lines, --1 lines 0 comments Download
D chrome/browser/apps/speech_recognition_browsertest.cc View 1 chunk +0 lines, -57 lines 0 comments Download
M chrome/browser/chromeos/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 5 chunks +35 lines, -4 lines 0 comments Download
M chrome/browser/chromeos/drive/change_list_loader_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/change_list_processor_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/directory_loader_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/drive_file_stream_reader_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
A + chrome/browser/chromeos/drive/drive_test_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +3 lines, -3 lines 0 comments Download
A + chrome/browser/chromeos/drive/drive_test_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/fake_free_disk_space_getter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_cache_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_system/operation_test_base.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_system_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/fileapi/webkit_file_stream_reader_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/job_scheduler_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/local_file_reader_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/remove_stale_cache_files_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/resource_metadata_storage_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/resource_metadata_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/search_metadata_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/sync_client_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +1 line, -1 line 0 comments Download
D chrome/browser/chromeos/drive/test_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -84 lines 0 comments Download
D chrome/browser/chromeos/drive/test_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -42 lines 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/file_manager_private_apitest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/extensions/launcher_search_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
D chrome/browser/chromeos/file_manager/drive_test_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +0 lines, -21 lines 0 comments Download
D chrome/browser/chromeos/file_manager/drive_test_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +0 lines, -73 lines 0 comments Download
M chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/file_manager/file_manager_browsertest_base.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/file_manager/fileapi_util_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +2 lines, -2 lines 0 comments Download
A + chrome/browser/chromeos/file_manager/mount_test_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +3 lines, -3 lines 0 comments Download
A + chrome/browser/chromeos/file_manager/mount_test_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/fileapi/external_file_url_request_job_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +1 line, -1 line 0 comments Download
A + chrome/browser/chromeos/first_run/chromeos_first_run_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 0 chunks +-1 lines, --1 lines 0 comments Download
D chrome/browser/chromeos/first_run/first_run_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -143 lines 0 comments Download
A + chrome/browser/chromeos/launcher_search_provider/launcher_search_provider_service.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +3 lines, -3 lines 0 comments Download
A + chrome/browser/chromeos/launcher_search_provider/launcher_search_provider_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -2 lines 0 comments Download
A + chrome/browser/chromeos/launcher_search_provider/launcher_search_provider_service_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +3 lines, -3 lines 0 comments Download
A + chrome/browser/chromeos/launcher_search_provider/launcher_search_provider_service_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -2 lines 0 comments Download
D chrome/browser/chromeos/launcher_search_provider/service.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -91 lines 0 comments Download
D chrome/browser/chromeos/launcher_search_provider/service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -176 lines 0 comments Download
D chrome/browser/chromeos/launcher_search_provider/service_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -43 lines 0 comments Download
D chrome/browser/chromeos/launcher_search_provider/service_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -53 lines 0 comments Download
D chrome/browser/chromeos/preferences_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -212 lines 0 comments Download
A + chrome/browser/chromeos/preferences_chromeos_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 0 chunks +-1 lines, --1 lines 0 comments Download
M chrome/browser/extensions/api/chrome_extensions_api_client.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
D chrome/browser/favicon/favicon_helper.h View 1 2 3 4 5 6 7 1 chunk +0 lines, -26 lines 0 comments Download
D chrome/browser/favicon/favicon_helper.cc View 1 2 3 4 5 6 7 1 chunk +0 lines, -54 lines 0 comments Download
A + chrome/browser/favicon/favicon_utils.h View 1 2 3 4 5 6 7 2 chunks +3 lines, -3 lines 0 comments Download
A + chrome/browser/favicon/favicon_utils.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/guest_view/web_view/chrome_web_view_guest_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/task_management/providers/web_contents/renderer_task.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/task_manager/printing_information.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/task_manager/tab_contents_information.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/app_list/search/launcher_search/launcher_search_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/app_list/search/launcher_search/launcher_search_result.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/apps/chrome_app_delegate.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/panels/panel_host.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/tab_helpers.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
D chrome/browser/ui/views/find_bar_host_interactive_uitest.cc View 1 chunk +0 lines, -444 lines 0 comments Download
A + chrome/browser/ui/views/find_bar_views_interactive_uitest.cc View 0 chunks +-1 lines, --1 lines 0 comments Download
M chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/web_applications/web_app_unittest.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/chrome_browser_chromeos.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +4 lines, -4 lines 0 comments Download
M chrome/chrome_tests.gni View 1 2 3 4 5 6 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 12 chunks +26 lines, -14 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 2 chunks +3 lines, -3 lines 0 comments Download
A + chrome/common/extensions/api/common_extension_api_unittest.cc View 0 chunks +-1 lines, --1 lines 0 comments Download
D chrome/common/extensions/api/extension_api_unittest.cc View 1 chunk +0 lines, -839 lines 0 comments Download
M chrome/test/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 20 chunks +128 lines, -116 lines 0 comments Download
M components/policy/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M components/wallpaper/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +3 lines, -0 lines 0 comments Download
M content/test/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +4 lines, -3 lines 0 comments Download
M crypto/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +1 line, -1 line 0 comments Download
M extensions/BUILD.gn View 1 2 3 4 5 2 chunks +115 lines, -0 lines 0 comments Download
M net/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 2 chunks +48 lines, -1 line 0 comments Download

Messages

Total messages: 118 (67 generated)
brettw
5 years, 5 months ago (2015-06-30 20:21:33 UTC) #2
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/20001
5 years, 5 months ago (2015-06-30 20:21:56 UTC) #4
brettw
Landing this will cause GN users to have duplicate .o files. Should we do a ...
5 years, 5 months ago (2015-06-30 20:25:49 UTC) #5
Nico
lgtm if the bots like it. I don't think this needs a landmine – deleting ...
5 years, 5 months ago (2015-06-30 20:38:47 UTC) #6
commit-bot: I haz the power
Dry run: Exceeded global retry quota
5 years, 5 months ago (2015-06-30 20:46:54 UTC) #8
brettw
Review comments addressed.
5 years, 5 months ago (2015-06-30 21:11:53 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/10017
5 years, 5 months ago (2015-06-30 21:14:00 UTC) #12
commit-bot: I haz the power
Exceeded global retry quota
5 years, 5 months ago (2015-06-30 21:20:28 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/50001
5 years, 5 months ago (2015-06-30 21:29:07 UTC) #17
commit-bot: I haz the power
Exceeded global retry quota
5 years, 5 months ago (2015-06-30 21:53:18 UTC) #19
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/70001
5 years, 5 months ago (2015-07-01 19:02:39 UTC) #22
commit-bot: I haz the power
Dry run: Exceeded global retry quota
5 years, 5 months ago (2015-07-01 20:00:41 UTC) #24
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/90001
5 years, 5 months ago (2015-07-07 17:07:51 UTC) #27
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_chromium_gn_compile_dbg on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/android_chromium_gn_compile_dbg/builds/88710)
5 years, 5 months ago (2015-07-07 17:52:02 UTC) #29
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/110001
5 years, 5 months ago (2015-07-07 19:36:35 UTC) #32
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_compile_dbg_32_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_32_ng/builds/70419) (exceeded global ...
5 years, 5 months ago (2015-07-07 19:54:20 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/130001
5 years, 5 months ago (2015-07-07 21:51:36 UTC) #37
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel_ng/builds/75716) (exceeded global retry quota)
5 years, 5 months ago (2015-07-07 22:23:09 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/110002
5 years, 5 months ago (2015-07-07 22:26:37 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/150001
5 years, 5 months ago (2015-07-07 23:54:51 UTC) #45
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/55228)
5 years, 5 months ago (2015-07-08 02:49:30 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/170001
5 years, 5 months ago (2015-07-08 06:20:43 UTC) #50
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/55322)
5 years, 5 months ago (2015-07-08 06:27:45 UTC) #52
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/190001
5 years, 5 months ago (2015-07-08 06:47:42 UTC) #55
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/55325)
5 years, 5 months ago (2015-07-08 08:12:39 UTC) #57
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/200001
5 years, 5 months ago (2015-07-08 16:02:50 UTC) #60
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/55466)
5 years, 5 months ago (2015-07-08 17:49:57 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/240001
5 years, 5 months ago (2015-07-08 20:04:03 UTC) #65
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/55611) (exceeded global retry quota)
5 years, 5 months ago (2015-07-08 20:25:01 UTC) #67
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/260001
5 years, 5 months ago (2015-07-08 21:19:39 UTC) #70
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_ozone_rel_ng/builds/36352) (exceeded global retry quota)
5 years, 5 months ago (2015-07-08 21:47:21 UTC) #72
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/280001
5 years, 5 months ago (2015-07-09 17:41:33 UTC) #75
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/85685)
5 years, 5 months ago (2015-07-09 17:47:48 UTC) #77
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/300001
5 years, 5 months ago (2015-07-09 17:54:02 UTC) #80
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_compile_dbg_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_compile_dbg_ng/builds/70033) (exceeded global retry quota)
5 years, 5 months ago (2015-07-09 18:34:11 UTC) #82
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/320001
5 years, 5 months ago (2015-07-09 19:27:33 UTC) #85
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_compile_dbg_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_compile_dbg_ng/builds/70112) (exceeded global retry quota)
5 years, 5 months ago (2015-07-09 19:56:37 UTC) #87
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/340001
5 years, 5 months ago (2015-07-09 20:08:39 UTC) #90
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_compile_dbg_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_compile_dbg_ng/builds/70132) (exceeded global retry quota)
5 years, 5 months ago (2015-07-09 20:37:23 UTC) #92
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/360001
5 years, 5 months ago (2015-07-09 22:06:01 UTC) #95
Nico
https://www.youtube.com/watch?v=Gf1WT8VEZxk
5 years, 5 months ago (2015-07-09 22:13:41 UTC) #96
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_ozone_rel_ng/builds/36954) (exceeded global retry quota)
5 years, 5 months ago (2015-07-09 22:39:10 UTC) #98
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/380001
5 years, 5 months ago (2015-07-09 23:18:06 UTC) #101
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/56303)
5 years, 5 months ago (2015-07-10 01:24:10 UTC) #103
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/400001
5 years, 5 months ago (2015-07-10 05:59:00 UTC) #106
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/56433)
5 years, 5 months ago (2015-07-10 07:24:41 UTC) #108
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/360002
5 years, 5 months ago (2015-07-10 17:14:43 UTC) #111
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/56587)
5 years, 5 months ago (2015-07-10 19:42:41 UTC) #113
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1208963003/430001
5 years, 5 months ago (2015-07-10 23:09:13 UTC) #116
commit-bot: I haz the power
Committed patchset #25 (id:430001)
5 years, 5 months ago (2015-07-11 00:21:04 UTC) #117
commit-bot: I haz the power
5 years, 5 months ago (2015-07-11 00:22:10 UTC) #118
Message was sent while issue was closed.
Patchset 25 (id:??) landed as
https://crrev.com/39355da5ab86e662d701fcba8fef4e20921b38f0
Cr-Commit-Position: refs/heads/master@{#338408}

Powered by Google App Engine
This is Rietveld 408576698