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

Issue 250823008: Add GN build file for ui/base target. (Closed)

Created:
6 years, 8 months ago by tfarina
Modified:
5 years, 3 months ago
Reviewers:
Dirk Pranke, brettw
CC:
chromium-reviews, Dirk Pranke, sadrul
Visibility:
Public.

Description

Add GN build file for ui/base target. In Debug config: $ gn gen out/Debug_gn $ ninja -C out/Debug_gn ui_base In Release config: $ gn gen out/Release_gn --args='is_debug=false' $ ninja -C out/Release_gn ui_base BUG=None TEST=see above R=brettw@chromium.org TBR=ben Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=266836

Patch Set 1 : #

Total comments: 18

Patch Set 2 : review #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+517 lines, -1 line) Patch
M BUILD.gn View 1 2 chunks +2 lines, -0 lines 0 comments Download
A ui/base/BUILD.gn View 1 1 chunk +514 lines, -0 lines 2 comments Download
M ui/base/ui_base.gyp View 1 2 chunks +1 line, -1 line 0 comments Download

Messages

Total messages: 9 (1 generated)
tfarina
All green! Should be good to go. ptal.
6 years, 7 months ago (2014-04-28 06:29:38 UTC) #1
brettw
Sweet! LGTM https://codereview.chromium.org/250823008/diff/20001/ui/base/BUILD.gn File ui/base/BUILD.gn (right): https://codereview.chromium.org/250823008/diff/20001/ui/base/BUILD.gn#newcode11 ui/base/BUILD.gn:11: component("ui_base") { Can you call this "base" ...
6 years, 7 months ago (2014-04-28 17:31:26 UTC) #2
tfarina
The CQ bit was checked by tfarina@chromium.org
6 years, 7 months ago (2014-04-29 03:47:47 UTC) #3
tfarina
https://codereview.chromium.org/250823008/diff/20001/ui/base/BUILD.gn File ui/base/BUILD.gn (right): https://codereview.chromium.org/250823008/diff/20001/ui/base/BUILD.gn#newcode11 ui/base/BUILD.gn:11: component("ui_base") { On 2014/04/28 17:31:26, brettw wrote: > Can ...
6 years, 7 months ago (2014-04-29 03:48:06 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tfarina@chromium.org/250823008/40001
6 years, 7 months ago (2014-04-29 03:48:21 UTC) #5
commit-bot: I haz the power
Change committed as 266836
6 years, 7 months ago (2014-04-29 10:51:24 UTC) #6
Ruud van Asseldonk
https://codereview.chromium.org/250823008/diff/40001/ui/base/BUILD.gn File ui/base/BUILD.gn (right): https://codereview.chromium.org/250823008/diff/40001/ui/base/BUILD.gn#newcode346 ui/base/BUILD.gn:346: if ((is_linux && !is_chromeos) || is_chromeos) { This is ...
5 years, 3 months ago (2015-09-24 16:17:01 UTC) #7
Dirk Pranke
5 years, 3 months ago (2015-09-24 18:32:15 UTC) #9
Message was sent while issue was closed.
https://codereview.chromium.org/250823008/diff/40001/ui/base/BUILD.gn
File ui/base/BUILD.gn (right):

https://codereview.chromium.org/250823008/diff/40001/ui/base/BUILD.gn#newcode346
ui/base/BUILD.gn:346: if ((is_linux && !is_chromeos) || is_chromeos) {
On 2015/09/24 16:17:00, Ruud van Asseldonk wrote:
> This is logically equivalent to (is_linux || is_chromeos).
> 
> A   B   ((A && !B) || B)   (A || B)
> 0   0                  0          0
> 0   1                  1          1
> 1   0                  1          1
> 1   1                  1          1
> 
> Could this be a bug?

I'm not sure what the intent here is, but since is_chromeos implies
is_linux, this is really just saying if (is_linux) :).

Feel free to file a bug and get one of the file owners to look at it.

Powered by Google App Engine
This is Rietveld 408576698