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

Issue 1350023003: Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. (Closed)

Created:
5 years, 3 months ago by jam
Modified:
5 years, 2 months ago
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. TODOs in future cls: -POSIX -use shared memory for MessagePipeDispatcher serialization -work in Windows sandbox (using master.mojom which is implemented but not hooked up in this change) -XP BUG=478251 NOPRESUBMIT=true Committed: https://crrev.com/76bcf0c21e332c08ee7a1601d0c878d1c75541a0 Cr-Commit-Position: refs/heads/master@{#352123}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Total comments: 12

Patch Set 9 : convert remaining MP tests and simplify RawChannel destruction #

Total comments: 4

Patch Set 10 : convert data pipe unittest & merge r350188 #

Patch Set 11 : fix core tests and fix not allowing a MP to be sent over the other end #

Patch Set 12 : mojo_system_unittests passes without retries by fixing multiple init/teardown of ipc support #

Patch Set 13 : remove ProcessType #

Patch Set 14 : remove ProcessType #

Patch Set 15 : move to mojo::edk namespace in preparation for runtim flag #

Total comments: 11

Patch Set 16 : switch to a runtime flag: --use-new-edk #

Patch Set 17 : add gyp support #

Patch Set 18 : small fixes #

Patch Set 19 : merge #

Patch Set 20 : fixes from trybots #

Patch Set 21 : merge #

Patch Set 22 : remove UserPointer #

Patch Set 23 : fix build #

Patch Set 24 : merge #

Patch Set 25 : some review comments #

Total comments: 1

Patch Set 26 : bot fixes #

Patch Set 27 : more fixes from bots #

Patch Set 28 : bot fixes #

Patch Set 29 : bot fixes #

Patch Set 30 : fix nacl tests and undo formatting changes #

Patch Set 31 : cleanup #

Patch Set 32 : more cleanup #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+9955 lines, -3203 lines) Patch
M 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 5 chunks +27 lines, -0 lines 0 comments Download
M chrome/test/base/run_all_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +2 lines, -2 lines 0 comments Download
M components/html_viewer/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +1 line, -1 line 0 comments Download
M components/html_viewer/run_all_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 2 chunks +2 lines, -2 lines 0 comments Download
M content/app/mojo/mojo_init.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 2 chunks +2 lines, -6 lines 0 comments Download
M content/browser/browser_child_process_host_impl.cc 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 +1 line, -0 lines 0 comments Download
M content/browser/browser_main_loop.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -0 lines 0 comments Download
M content/browser/browser_main_loop.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +5 lines, -0 lines 0 comments Download
M content/browser/renderer_host/render_process_host_impl.cc 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 +1 line, -0 lines 0 comments Download
M device/test/run_all_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 2 chunks +2 lines, -2 lines 0 comments Download
M extensions/test/extensions_unittests_main.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +2 lines, -2 lines 0 comments Download
M ipc/mojo/BUILD.gn 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, -0 lines 0 comments Download
M ipc/mojo/DEPS View 1 17 18 19 20 1 chunk +1 line, -0 lines 0 comments Download
M ipc/mojo/async_handle_waiter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +5 lines, -0 lines 0 comments Download
M ipc/mojo/ipc_channel_mojo.cc 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 25 26 27 28 29 9 chunks +105 lines, -101 lines 0 comments Download
M ipc/mojo/ipc_mojo_bootstrap.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +2 lines, -1 line 0 comments Download
M ipc/mojo/ipc_mojo_bootstrap.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 5 chunks +9 lines, -4 lines 0 comments Download
M ipc/mojo/ipc_mojo_bootstrap_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +4 lines, -2 lines 0 comments Download
M ipc/mojo/ipc_mojo_perftest.cc 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 25 26 27 28 29 2 chunks +18 lines, -4 lines 0 comments Download
M ipc/mojo/run_all_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 2 chunks +2 lines, -2 lines 0 comments Download
M ipc/mojo/scoped_ipc_support.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +2 lines, -1 line 0 comments Download
M mojo/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 25 26 27 28 29 5 chunks +14 lines, -0 lines 0 comments Download
M mojo/android/javatests/init_library.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 2 chunks +2 lines, -4 lines 0 comments Download
A + mojo/edk/DEPS View 1 2 3 4 17 18 19 20 1 chunk +1 line, -0 lines 0 comments Download
A + mojo/edk/embedder/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 25 26 27 28 29 30 6 chunks +34 lines, -29 lines 0 comments Download
A + mojo/edk/embedder/README.md View 17 18 19 20 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/edk/embedder/configuration.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A mojo/edk/embedder/embedder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +111 lines, -0 lines 0 comments Download
A mojo/edk/embedder/embedder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +171 lines, -0 lines 0 comments Download
A mojo/edk/embedder/embedder_internal.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +46 lines, -0 lines 0 comments Download
A + mojo/edk/embedder/embedder_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 23 24 8 chunks +145 lines, -400 lines 0 comments Download
A + mojo/edk/embedder/entrypoints.cc 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 25 26 27 28 29 30 8 chunks +34 lines, -40 lines 0 comments Download
A + mojo/edk/embedder/platform_channel_pair.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/embedder/platform_channel_pair.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/embedder/platform_channel_pair_posix.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/embedder/platform_channel_pair_posix_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 8 chunks +23 lines, -32 lines 0 comments Download
A + mojo/edk/embedder/platform_channel_pair_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/embedder/platform_channel_utils_posix.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/embedder/platform_channel_utils_posix.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/embedder/platform_handle.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +6 lines, -6 lines 0 comments Download
A + mojo/edk/embedder/platform_handle.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/embedder/platform_handle_utils.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +8 lines, -8 lines 0 comments Download
A + mojo/edk/embedder/platform_handle_utils_posix.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/embedder/platform_handle_utils_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/embedder/platform_handle_vector.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +8 lines, -8 lines 0 comments Download
A + mojo/edk/embedder/platform_shared_buffer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/embedder/platform_support.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/embedder/process_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +6 lines, -13 lines 0 comments Download
A + mojo/edk/embedder/scoped_platform_handle.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/embedder/simple_platform_shared_buffer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/embedder/simple_platform_shared_buffer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/embedder/simple_platform_shared_buffer_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/embedder/simple_platform_shared_buffer_posix.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/embedder/simple_platform_shared_buffer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/embedder/simple_platform_shared_buffer_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/embedder/simple_platform_support.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/embedder/simple_platform_support.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/embedder/system_impl_private_entrypoints.cc 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 25 26 27 28 29 30 15 chunks +53 lines, -58 lines 0 comments Download
A + mojo/edk/embedder/test_embedder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +6 lines, -10 lines 0 comments Download
A + mojo/edk/embedder/test_embedder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +9 lines, -20 lines 0 comments Download
A + mojo/edk/js/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 3 chunks +9 lines, -12 lines 0 comments Download
A + mojo/edk/js/core.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/js/core.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/js/drain_data.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/js/drain_data.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +8 lines, -5 lines 0 comments Download
A + mojo/edk/js/handle.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +13 lines, -12 lines 0 comments Download
A + mojo/edk/js/handle.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/js/handle_close_observer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/js/handle_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/js/mojo_runner_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/js/mojo_runner_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +10 lines, -10 lines 0 comments Download
A + mojo/edk/js/support.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/js/support.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/js/test/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 2 chunks +11 lines, -9 lines 0 comments Download
A + mojo/edk/js/test/hexdump.js View 17 18 19 20 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/edk/js/test/run_js_integration_tests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/js/test/run_js_tests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/js/tests/BUILD.gn View 17 18 19 20 2 chunks +7 lines, -13 lines 0 comments Download
A + mojo/edk/js/tests/connection_tests.js View 17 18 19 20 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/edk/js/tests/js_to_cpp.mojom View 17 18 19 20 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/edk/js/tests/js_to_cpp_tests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/js/tests/js_to_cpp_tests.js View 17 18 19 20 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/edk/js/tests/sample_service_tests.js View 17 18 19 20 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/edk/js/threading.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/js/threading.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/js/waiting_callback.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/js/waiting_callback.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +8 lines, -5 lines 0 comments Download
A + mojo/edk/mojo_edk.gni View 1 2 3 4 17 18 19 20 5 chunks +1 line, -35 lines 0 comments Download
A + mojo/edk/system/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 25 26 27 28 29 30 7 chunks +47 lines, -82 lines 0 comments Download
A + mojo/edk/system/async_waiter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/system/async_waiter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/system/awakable.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +6 lines, -6 lines 0 comments Download
A + mojo/edk/system/awakable_list.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +6 lines, -6 lines 0 comments Download
A + mojo/edk/system/awakable_list.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/system/awakable_list_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A mojo/edk/system/configuration.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +29 lines, -0 lines 0 comments Download
A + mojo/edk/system/configuration.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/system/core.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 6 chunks +49 lines, -53 lines 0 comments Download
A + mojo/edk/system/core.cc 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 29 chunks +113 lines, -128 lines 1 comment Download
A + mojo/edk/system/core_test_base.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +28 lines, -33 lines 0 comments Download
A + mojo/edk/system/core_test_base.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 8 chunks +63 lines, -74 lines 0 comments Download
A + mojo/edk/system/core_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 65 chunks +212 lines, -264 lines 0 comments Download
A mojo/edk/system/data_pipe.h 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 25 26 27 28 29 30 1 chunk +63 lines, -0 lines 0 comments Download
A mojo/edk/system/data_pipe.cc 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 25 26 27 28 29 30 1 chunk +203 lines, -0 lines 0 comments Download
A mojo/edk/system/data_pipe_consumer_dispatcher.h 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 25 26 27 28 29 30 31 1 chunk +117 lines, -0 lines 0 comments Download
A mojo/edk/system/data_pipe_consumer_dispatcher.cc 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 25 26 27 28 29 30 1 chunk +474 lines, -0 lines 0 comments Download
A mojo/edk/system/data_pipe_producer_dispatcher.h 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 25 26 27 28 29 30 1 chunk +110 lines, -0 lines 0 comments Download
A mojo/edk/system/data_pipe_producer_dispatcher.cc 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 +357 lines, -0 lines 0 comments Download
A mojo/edk/system/data_pipe_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 23 24 25 26 27 28 29 30 1 chunk +1574 lines, -0 lines 0 comments Download
A + mojo/edk/system/dispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 12 chunks +122 lines, -147 lines 0 comments Download
A + mojo/edk/system/dispatcher.cc 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 25 26 27 28 29 30 25 chunks +102 lines, -105 lines 0 comments Download
A + mojo/edk/system/dispatcher_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 8 chunks +28 lines, -40 lines 0 comments Download
A + mojo/edk/system/handle_signals_state.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +6 lines, -6 lines 0 comments Download
A + mojo/edk/system/handle_table.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +6 lines, -6 lines 0 comments Download
A + mojo/edk/system/handle_table.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +5 lines, -5 lines 0 comments Download
A + mojo/edk/system/mapping_table.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 chunks +10 lines, -15 lines 0 comments Download
A + mojo/edk/system/mapping_table.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +9 lines, -9 lines 0 comments Download
A mojo/edk/system/master.mojom View 1 2 3 4 17 18 19 20 1 chunk +11 lines, -0 lines 0 comments Download
A mojo/edk/system/master_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 17 18 19 20 1 chunk +43 lines, -0 lines 0 comments Download
A mojo/edk/system/master_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 17 18 19 20 1 chunk +107 lines, -0 lines 0 comments Download
A mojo/edk/system/master_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 17 18 19 20 1 chunk +120 lines, -0 lines 0 comments Download
A + mojo/edk/system/message_in_transit.h 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 10 chunks +14 lines, -89 lines 0 comments Download
A + mojo/edk/system/message_in_transit.cc 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 25 26 27 28 29 30 7 chunks +8 lines, -33 lines 0 comments Download
A + mojo/edk/system/message_in_transit_queue.h 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 25 26 27 28 29 30 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/system/message_in_transit_queue.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/system/message_in_transit_queue_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +4 lines, -4 lines 0 comments Download
A + mojo/edk/system/message_in_transit_test_utils.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +6 lines, -6 lines 0 comments Download
A + mojo/edk/system/message_in_transit_test_utils.cc 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 2 chunks +6 lines, -10 lines 0 comments Download
A mojo/edk/system/message_pipe_dispatcher.h 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 25 26 27 28 29 30 31 1 chunk +145 lines, -0 lines 0 comments Download
A mojo/edk/system/message_pipe_dispatcher.cc 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 25 26 27 28 29 30 31 1 chunk +720 lines, -0 lines 1 comment Download
A + mojo/edk/system/message_pipe_perftest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +44 lines, -50 lines 0 comments Download
A mojo/edk/system/message_pipe_test_utils.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 17 18 19 20 1 chunk +51 lines, -0 lines 0 comments Download
A mojo/edk/system/message_pipe_test_utils.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 17 18 19 20 1 chunk +32 lines, -0 lines 0 comments Download
A mojo/edk/system/message_pipe_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 17 18 19 20 1 chunk +409 lines, -0 lines 0 comments Download
A mojo/edk/system/multiprocess_message_pipe_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 +782 lines, -0 lines 0 comments Download
A + mojo/edk/system/options_validation.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 5 chunks +21 lines, -26 lines 0 comments Download
A + mojo/edk/system/options_validation_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 10 chunks +12 lines, -12 lines 0 comments Download
A + mojo/edk/system/platform_handle_dispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +16 lines, -21 lines 0 comments Download
A + mojo/edk/system/platform_handle_dispatcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 7 chunks +13 lines, -16 lines 0 comments Download
A + mojo/edk/system/platform_handle_dispatcher_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 7 chunks +8 lines, -9 lines 0 comments Download
A + mojo/edk/system/raw_channel.h 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 18 chunks +106 lines, -30 lines 0 comments Download
A + mojo/edk/system/raw_channel.cc 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 15 chunks +257 lines, -138 lines 0 comments Download
A + mojo/edk/system/raw_channel_posix.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 16 chunks +98 lines, -57 lines 1 comment Download
A + mojo/edk/system/raw_channel_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 23 24 29 chunks +93 lines, -290 lines 0 comments Download
A mojo/edk/system/raw_channel_win.cc 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 +866 lines, -0 lines 0 comments Download
A + mojo/edk/system/run_all_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 2 chunks +5 lines, -1 line 0 comments Download
A + mojo/edk/system/shared_buffer_dispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 6 chunks +20 lines, -30 lines 0 comments Download
A + mojo/edk/system/shared_buffer_dispatcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 15 chunks +29 lines, -33 lines 0 comments Download
A + mojo/edk/system/shared_buffer_dispatcher_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 16 chunks +21 lines, -23 lines 0 comments Download
A + mojo/edk/system/simple_dispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +13 lines, -11 lines 0 comments Download
A + mojo/edk/system/simple_dispatcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/system/simple_dispatcher_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 5 chunks +13 lines, -13 lines 0 comments Download
A + mojo/edk/system/system_impl_export.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/system/test_utils.h 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 25 26 27 28 29 30 2 chunks +25 lines, -5 lines 0 comments Download
A + mojo/edk/system/test_utils.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +12 lines, -3 lines 0 comments Download
A + mojo/edk/system/transport_data.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +15 lines, -18 lines 0 comments Download
A + mojo/edk/system/transport_data.cc 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 25 26 27 28 29 30 9 chunks +14 lines, -20 lines 0 comments Download
A + mojo/edk/system/waiter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +7 lines, -7 lines 0 comments Download
A + mojo/edk/system/waiter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/system/waiter_test_utils.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +8 lines, -8 lines 0 comments Download
A + mojo/edk/system/waiter_test_utils.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +3 lines, -3 lines 0 comments Download
A + mojo/edk/system/waiter_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 5 chunks +12 lines, -12 lines 0 comments Download
A + mojo/edk/test/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +41 lines, -44 lines 0 comments Download
A + mojo/edk/test/multiprocess_test_helper.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +10 lines, -10 lines 0 comments Download
A + mojo/edk/test/multiprocess_test_helper.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +8 lines, -6 lines 0 comments Download
A + mojo/edk/test/multiprocess_test_helper_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 5 chunks +10 lines, -8 lines 0 comments Download
A mojo/edk/test/run_all_perftests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +20 lines, -0 lines 0 comments Download
A + mojo/edk/test/run_all_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +8 lines, -4 lines 0 comments Download
A mojo/edk/test/scoped_ipc_support.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +66 lines, -0 lines 0 comments Download
A mojo/edk/test/scoped_ipc_support.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +59 lines, -0 lines 0 comments Download
A + mojo/edk/test/test_support_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +6 lines, -4 lines 0 comments Download
A + mojo/edk/test/test_support_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +3 lines, -1 line 0 comments Download
A + mojo/edk/test/test_utils.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +12 lines, -10 lines 0 comments Download
A + mojo/edk/test/test_utils_posix.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +9 lines, -7 lines 0 comments Download
A + mojo/edk/test/test_utils_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 7 chunks +9 lines, -7 lines 0 comments Download
A mojo/mojo_edk.gyp 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 25 26 27 28 29 30 1 chunk +225 lines, -0 lines 0 comments Download
A mojo/mojo_edk_tests.gyp 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 25 26 27 28 29 1 chunk +133 lines, -0 lines 0 comments Download
M mojo/runner/child_process.cc 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 25 26 27 28 29 3 chunks +7 lines, -6 lines 0 comments Download
M mojo/runner/child_process_host.h 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 25 26 27 28 29 30 1 chunk +3 lines, -3 lines 0 comments Download
M mojo/runner/child_process_host.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 2 chunks +3 lines, -2 lines 0 comments Download
M mojo/runner/context.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 2 chunks +3 lines, -1 line 0 comments Download
M mojo/runner/context.cc 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 25 26 27 28 29 3 chunks +2 lines, -3 lines 0 comments Download
M mojo/services/network/public/cpp/BUILD.gn View 17 18 19 20 1 chunk +2 lines, -5 lines 0 comments Download
M net/test/run_all_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/mojo/mojo_edk.gyp 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 25 2 chunks +10 lines, -0 lines 0 comments Download
M third_party/mojo/src/mojo/edk/DEPS 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 25 26 27 28 29 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/mojo/src/mojo/edk/embedder/embedder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +3 lines, -6 lines 0 comments Download
M third_party/mojo/src/mojo/edk/embedder/embedder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 9 chunks +96 lines, -9 lines 0 comments Download
M third_party/mojo/src/mojo/edk/embedder/embedder_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/mojo/src/mojo/edk/embedder/entrypoints.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 15 chunks +69 lines, -3 lines 0 comments Download
M third_party/mojo/src/mojo/edk/embedder/test_embedder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +0 lines, -4 lines 0 comments Download
M third_party/mojo/src/mojo/edk/embedder/test_embedder.cc 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 3 chunks +14 lines, -5 lines 0 comments Download
M third_party/mojo/src/mojo/edk/system/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 3 chunks +7 lines, -0 lines 0 comments Download
M third_party/mojo/src/mojo/edk/test/run_all_perftests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/mojo/src/mojo/edk/test/run_all_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/mojo/src/mojo/public/c/system/tests/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, -0 lines 0 comments Download
M third_party/mojo/src/mojo/public/cpp/system/tests/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, -0 lines 0 comments Download
M third_party/mojo/src/mojo/public/cpp/utility/tests/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, -0 lines 0 comments Download
M third_party/mojo/src/mojo/public/platform/native/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 +4 lines, -1 line 0 comments Download
M tools/ipc_fuzzer/message_replay/replay_process.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 1 chunk +2 lines, -6 lines 0 comments Download

Messages

Total messages: 28 (12 generated)
Ken Rockot(use gerrit already)
Just a few comments which stem from my attempt to build the world locally on ...
5 years, 3 months ago (2015-09-23 22:32:18 UTC) #3
yzshen1
Here are some comments about raw_channel.* and message_pipe_dispatcher. (Need to do more reading.) https://codereview.chromium.org/1350023003/diff/140001/base/win/object_watcher.h File ...
5 years, 3 months ago (2015-09-23 22:47:09 UTC) #4
brettw
https://codereview.chromium.org/1350023003/diff/480001/mojo/edk/embedder/BUILD.gn File mojo/edk/embedder/BUILD.gn (right): https://codereview.chromium.org/1350023003/diff/480001/mojo/edk/embedder/BUILD.gn#newcode12 mojo/edk/embedder/BUILD.gn:12: "//mojo/edk/system", This refers to the exact target //mojo/edk/system:system. I ...
5 years, 2 months ago (2015-09-30 03:56:14 UTC) #9
jam
5 years, 2 months ago (2015-09-30 22:10:44 UTC) #11
yzshen1
LGTM I only finished reviewing the message pipe and raw channel code. I don't think ...
5 years, 2 months ago (2015-10-02 17:32:18 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1350023003/620001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1350023003/620001
5 years, 2 months ago (2015-10-02 20:12:37 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/106309)
5 years, 2 months ago (2015-10-02 20:30:40 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1350023003/620001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1350023003/620001
5 years, 2 months ago (2015-10-02 20:56:48 UTC) #18
commit-bot: I haz the power
Committed patchset #32 (id:620001)
5 years, 2 months ago (2015-10-02 21:01:40 UTC) #19
commit-bot: I haz the power
Patchset 32 (id:??) landed as https://crrev.com/76bcf0c21e332c08ee7a1601d0c878d1c75541a0 Cr-Commit-Position: refs/heads/master@{#352123}
5 years, 2 months ago (2015-10-02 21:02:26 UTC) #20
Will Harris
On 2015/10/02 21:02:26, commit-bot: I haz the power wrote: > Patchset 32 (id:??) landed as ...
5 years, 2 months ago (2015-10-04 04:07:06 UTC) #21
yzshen1
On 2015/10/04 04:07:06, Will Harris wrote: > On 2015/10/02 21:02:26, commit-bot: I haz the power ...
5 years, 2 months ago (2015-10-04 04:19:56 UTC) #22
brucedawson
https://codereview.chromium.org/1350023003/diff/620001/mojo/edk/system/core.cc File mojo/edk/system/core.cc (right): https://codereview.chromium.org/1350023003/diff/620001/mojo/edk/system/core.cc#newcode558 mojo/edk/system/core.cc:558: if (result_index && result_index) The /analyze builder points out ...
5 years, 2 months ago (2015-10-05 16:50:26 UTC) #24
Nico
It looks like this breaks building all targets in component builds: http://build.chromium.org/p/chromium.fyi/builders/CrWinClang64%28dbg%29/builds/2091/steps/compile/logs/stdio FAILED: E:/b/depot_tools/python276_bin/python.exe gyp-win-tool ...
5 years, 2 months ago (2015-10-08 02:00:26 UTC) #26
jam
On 2015/10/08 02:00:26, Nico (offline until Fri Oct 9) wrote: > It looks like this ...
5 years, 2 months ago (2015-10-08 22:27:31 UTC) #27
Nico
5 years, 2 months ago (2015-10-09 16:59:39 UTC) #28
Message was sent while issue was closed.
any luck?

On Thu, Oct 8, 2015 at 3:27 PM, <jam@chromium.org> wrote:

> On 2015/10/08 02:00:26, Nico (offline until Fri Oct 9) wrote:
>
>> It looks like this breaks building all targets in component builds:
>>
>
>
>
>
http://build.chromium.org/p/chromium.fyi/builders/CrWinClang64%28dbg%29/build...
>
> FAILED: E:/b/depot_tools/python276_bin/python.exe gyp-win-tool link-wrapper
>> environment.x64 False link.exe /nologo /IMPLIB:./mojo_system_impl.dll.lib
>> /DLL
>> /OUT:./mojo_system_impl.dll /PDB:./mojo_system_impl.dll.pdb
>> @./mojo_system_impl.dll.rsp
>> interface_control_messages.mojom.obj :error LNK2001: unresolved external
>>
> symbol
>
>> "public: __cdecl mojo::internal::LogMessage::LogMessage(int,char const
>> *,int)"
>> (??0LogMessage@internal@mojo@@QEAA@HPEBDH@Z)
>>
>
> master.mojom.obj :error LNK2001: unresolved external symbol "public:
>> __cdecl
>> mojo::internal::LogMessage::LogMessage(int,char const *,int)"
>> (??0LogMessage@internal@mojo@@QEAA@HPEBDH@Z)
>>
>
> router.obj :error LNK2001: unresolved external symbol "public: __cdecl
>> mojo::internal::LogMessage::LogMessage(int,char const *,int)"
>> (??0LogMessage@internal@mojo@@QEAA@HPEBDH@Z)
>>
>
> string_serialization.obj :error LNK2001: unresolved external symbol
>> "public:
>> __cdecl mojo::internal::LogMessage::LogMessage(int,char const *,int)"
>> (??0LogMessage@internal@mojo@@QEAA@HPEBDH@Z)
>>
>
> validation_errors.obj :error LNK2001: unresolved external symbol "public:
>> __cdecl mojo::internal::LogMessage::LogMessage(int,char const *,int)"
>> (??0LogMessage@internal@mojo@@QEAA@HPEBDH@Z)
>>
>
>
>
> etc. I guess some of the new targets need to be excluded in component
>> builds
>> again –&nbsp;can you take a look?
>>
>
> doh, sorry about that. I'll look into this shortly.
>
> https://codereview.chromium.org/1350023003/
>

To unsubscribe from this group and stop receiving emails from it, send an email
to chromium-reviews+unsubscribe@chromium.org.

Powered by Google App Engine
This is Rietveld 408576698