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

Issue 377293002: Core mojo API for python. (Closed)

Created:
6 years, 5 months ago by qsr
Modified:
6 years, 3 months ago
CC:
chromium-reviews, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, darin (slow to review), ben+mojo_chromium.org
Project:
chromium
Visibility:
Public.

Description

Core mojo API for python. Committed: https://crrev.com/28e16123231497d889ef08ebd917e80d5008ffbf Cr-Commit-Position: refs/heads/master@{#291701}

Patch Set 1 #

Total comments: 6

Patch Set 2 : Adding build #

Patch Set 3 : Fix gyp #

Patch Set 4 : Run unittests #

Patch Set 5 : Do not build python bindings on component builds. #

Patch Set 6 : Try to fix mac compilation #

Patch Set 7 : Use loadable module instead of shared library #

Patch Set 8 : Fix gyp #

Patch Set 9 : Add libraries for mac #

Patch Set 10 : Try to fix max c build #

Patch Set 11 : Fix mac compilation #

Patch Set 12 : Only have python on linux #

Patch Set 13 : Really limit to linux #

Patch Set 14 : y #

Patch Set 15 : Fix build #

Patch Set 16 : Try to understand chromeos failure. #

Patch Set 17 : Try to fix timing unit tests #

Total comments: 26

Patch Set 18 : Follow review and fix the embedder after API change. #

Patch Set 19 : Follow review #

Patch Set 20 : Add gn build #

Patch Set 21 : Fix define issues due to escaping #

Patch Set 22 : Fix dependency issue #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1742 lines, --1 lines) Patch
M mojo/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +6 lines, -0 lines 0 comments Download
M mojo/mojo.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +79 lines, -0 lines 0 comments Download
M mojo/public/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +6 lines, -0 lines 0 comments Download
A mojo/public/python/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +33 lines, -0 lines 0 comments Download
A + mojo/public/python/mojo/__init__.py View 1 2 3 4 5 6 7 0 chunks +-1 lines, --1 lines 0 comments Download
A mojo/public/python/mojo/c_core.pxd View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +201 lines, -0 lines 0 comments Download
A mojo/public/python/mojo/system.pyx View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +696 lines, -0 lines 0 comments Download
A mojo/python/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +29 lines, -0 lines 0 comments Download
A mojo/python/system/mojo/embedder.pyx View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +41 lines, -0 lines 0 comments Download
A mojo/python/tests/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +24 lines, -0 lines 0 comments Download
A mojo/python/tests/test_core.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +314 lines, -0 lines 0 comments Download
A third_party/cython/cp_python_binary_modules.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +42 lines, -0 lines 0 comments Download
A third_party/cython/cython_compiler.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +71 lines, -0 lines 0 comments Download
A third_party/cython/python_export.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +13 lines, -0 lines 0 comments Download
A third_party/cython/python_flags.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +53 lines, -0 lines 0 comments Download
A third_party/cython/python_module.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +51 lines, -0 lines 0 comments Download
A third_party/cython/rules.gni View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +84 lines, -0 lines 0 comments Download

Messages

Total messages: 26 (0 generated)
qsr
This is not in a state ready for commit, but I'd like to have a ...
6 years, 5 months ago (2014-07-09 15:03:08 UTC) #1
pkl (ping after 24h if needed)
qsr: consider this the first pass. I didn't try to do any style-nits (except for ...
6 years, 5 months ago (2014-07-10 18:03:23 UTC) #2
qsr
https://codereview.chromium.org/377293002/diff/1/mojo/public/python/mojo/core.pyx File mojo/public/python/mojo/core.pyx (right): https://codereview.chromium.org/377293002/diff/1/mojo/public/python/mojo/core.pyx#newcode266 mojo/public/python/mojo/core.pyx:266: def isValid(self): On 2014/07/10 18:03:23, pklpkl wrote: > Use ...
6 years, 5 months ago (2014-07-11 13:30:04 UTC) #3
qsr
gentle ping?
6 years, 4 months ago (2014-08-20 08:49:51 UTC) #4
pkl (ping after 24h if needed)
ack
6 years, 4 months ago (2014-08-20 11:05:07 UTC) #5
pkl (ping after 24h if needed)
https://chromiumcodereview.appspot.com/377293002/diff/320001/mojo/public/python/mojo/system.pyx File mojo/public/python/mojo/system.pyx (right): https://chromiumcodereview.appspot.com/377293002/diff/320001/mojo/public/python/mojo/system.pyx#newcode87 mojo/public/python/mojo/system.pyx:87: raise TypeError("Unable to read buffer.") style: Be consistent with ...
6 years, 4 months ago (2014-08-21 09:32:48 UTC) #6
qsr
https://chromiumcodereview.appspot.com/377293002/diff/320001/mojo/public/python/mojo/system.pyx File mojo/public/python/mojo/system.pyx (right): https://chromiumcodereview.appspot.com/377293002/diff/320001/mojo/public/python/mojo/system.pyx#newcode87 mojo/public/python/mojo/system.pyx:87: raise TypeError("Unable to read buffer.") On 2014/08/21 09:32:47, pklpkl ...
6 years, 4 months ago (2014-08-21 12:10:05 UTC) #7
pkl (ping after 24h if needed)
lgtm
6 years, 4 months ago (2014-08-21 13:01:41 UTC) #8
qsr
Darin, Trung, Chris, do you want to take a look before I push this?
6 years, 4 months ago (2014-08-21 13:21:49 UTC) #9
Chris Masone
On 2014/08/21 13:21:49, qsr wrote: > Darin, Trung, Chris, do you want to take a ...
6 years, 4 months ago (2014-08-21 13:33:54 UTC) #10
qsr
On 2014/08/21 13:33:54, Chris Masone wrote: > On 2014/08/21 13:21:49, qsr wrote: > > Darin, ...
6 years, 4 months ago (2014-08-22 13:02:06 UTC) #11
Chris Masone
On 2014/08/22 13:02:06, qsr wrote: > On 2014/08/21 13:33:54, Chris Masone wrote: > > On ...
6 years, 4 months ago (2014-08-24 19:59:41 UTC) #12
qsr
The CQ bit was checked by qsr@chromium.org
6 years, 4 months ago (2014-08-25 08:45:33 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/qsr@chromium.org/377293002/400001
6 years, 4 months ago (2014-08-25 08:46:29 UTC) #14
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-25 08:46:31 UTC) #15
commit-bot: I haz the power
No LGTM from a valid reviewer yet. Only full committers are accepted. Even if an ...
6 years, 4 months ago (2014-08-25 08:46:32 UTC) #16
blundell
RSLGTM
6 years, 4 months ago (2014-08-25 08:48:51 UTC) #17
qsr
The CQ bit was checked by qsr@chromium.org
6 years, 4 months ago (2014-08-25 08:50:28 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/qsr@chromium.org/377293002/400001
6 years, 4 months ago (2014-08-25 08:51:29 UTC) #19
commit-bot: I haz the power
Committed patchset #21 (400001) as d4127069d77fb9c569cce2acc3a8a5b48c986ff8
6 years, 4 months ago (2014-08-25 11:18:02 UTC) #20
qsr
6 years, 3 months ago (2014-08-25 16:01:24 UTC) #21
qsr
The CQ bit was checked by qsr@chromium.org
6 years, 3 months ago (2014-08-25 16:01:31 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/qsr@chromium.org/377293002/420001
6 years, 3 months ago (2014-08-25 16:02:29 UTC) #23
commit-bot: I haz the power
Committed patchset #22 (420001) as 83b9b15f0e3f12f86091c3bf99ef57c81f25cec3
6 years, 3 months ago (2014-08-25 17:01:14 UTC) #24
commit-bot: I haz the power
Patchset 22 (id:??) landed as https://crrev.com/94c1ddb7dfdafaec4a5045cdf2067a7ade6ea6ad Cr-Commit-Position: refs/heads/master@{#291662}
6 years, 3 months ago (2014-09-10 02:33:48 UTC) #25
commit-bot: I haz the power
6 years, 3 months ago (2014-09-10 02:35:12 UTC) #26
Message was sent while issue was closed.
Patchset 22 (id:??) landed as
https://crrev.com/28e16123231497d889ef08ebd917e80d5008ffbf
Cr-Commit-Position: refs/heads/master@{#291701}

Powered by Google App Engine
This is Rietveld 408576698