--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
$ cros_sdk
(cr) (cros_sdk) $ mount | grep depot_tools
/dev/mapper/jonwall-usr+local+google on /home/vapier/depot_tools type
ext4 (rw,relatime,barrier=1,data=writeback)
-mike
> --
> Chromium OS Developers mailing list: chromiu...@chromium.org
> View archives, change email options, or unsubscribe:
> http://groups.google.com/a/chromium.org/group/chromium-os-dev?hl=en
>
On Mon, Oct 17, 2011 at 15:30, Eugene Nalimov <en...@google.com> wrote:
> Now I have next problem: I am getting syntax errors when compiling
> native client. On my Linux box I just turned off native client build
> by adding "disable_nacl":1 to include.gypi. Unfortunately, in cros_sdk
> environment, neither adding export GYP_DEFINES="disable_nacl=1" to
> ~./bashrc, nor adding ~/.gyp/include.gypi does not help...
On Mon, Oct 17, 2011 at 15:38, Eugene Nalimov <en...@google.com> wrote:
> So, why I am getting errors when compiling native clients? Google
> "error: PP_GRAPHICS3DATTRIB_ALPHA_SIZE" and yo'll see I am not the
> only one... Recommended fix is just to disable build of native client.
>
> On Mon, Oct 17, 2011 at 12:32 PM, Mike Frysinger <vap...@chromium.org> wrote:
>> correct, cros' ebuild does not have an exported knob for you to
>> disable nacl. if you really want, you can edit the ebuilds in
>> third_party/chromiumos-overlay/chromeos-base/chromeos-chrome/ like so:
>> use_nacl() { return 1 ; }
>>
someone else will probably have to answer. i'm not terribly familiar
with chrome building itself.
-mike
On Mon, Oct 17, 2011 at 15:49, Eugene Nalimov <en...@google.com> wrote:
> Yes, I am building from cros_sdk, following instructions from
> http://www.chromium.org/chromium-os/how-tos-and-troubleshooting/building-chromium-browser.
> It specifically says that LOCAL_BINARY is not recommended...