summaryrefslogtreecommitdiffstats
path: root/build/build_config.h
Commit message (Collapse)AuthorAgeFilesLines
* Initial support for using BoringSSL with NSS certificates.davidben2015-04-221-5/+2
| | | | | | | | | | | | | | | | | | | | | | | This switches the USE_OPENSSL Linux and CrOS builds to continue setting USE_NSS_CERTS. This lets it use BoringSSL for the crypto and SSL stack and NSS for certificate verification. See design doc for details on the flags: https://docs.google.com/document/d/1x4DOCKwFkAxl9MGfd6snIzFigO4ku6Shuci0r5BzasQ/edit On Linux, only client auth and OCSP stapling are missing. On ChromeOS, there are some problematic USE_NSS_CERTS APIs in RSAPrivateKey to resolve. We also still need to resolve crbug.com/347404 to maintain parity. As a follow-up, USE_OPENSSL_CERTS on non-Android can now be removed (it was never supported anyway). BUG=462040 Review URL: https://codereview.chromium.org/881213004 Cr-Commit-Position: refs/heads/master@{#326222}
* Rename USE_NSS to USE_NSS_CERTS.davidben2015-04-171-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | USE_NSS is confusing because it's not actually the analog of USE_OPENSSL; it's the analog to USE_OPENSSL_CERTS. This is in preparation for the chimera build which will set USE_OPENSSL and USE_NSS(_CERTS). This CL was partially done automatically by the following command: git grep -l USE_NSS | xargs sed -i -e 's/defined(USE_NSS)/defined(USE_NSS_CERTS)/' The remaining were caught by the following command and fixed manually: git grep 'USE_NSS\([^_]\|$\)' Finally, the following command verified nothing in a separate repository was sensitive to this change: find . -name '*.cc' -o -name '*.h' | xargs grep 'USE_NSS\([^_]\|$\)' For now, the old name is still defined, but not used within Chromium. A follow-up CL will remove deprecated use_nss and USE_NSS #defines together which will then cause downstream churn. Though from a grep of known downstreams, the churn seems to be fairly minimal. The removal is split from this CL so that, if we need to revert, the CL to revert is small. TBR=pneubeck@chromium.org BUG=462040 Review URL: https://codereview.chromium.org/1082123003 Cr-Commit-Position: refs/heads/master@{#325710}
* Introduce OS_NACL_SFI and OS_NACL_NONSFI macros.hidehiko2014-10-281-1/+10
| | | | | | | | | | | | | | | | | | PNaCl toolchain starts to support "Non-SFI build binary" mode. Some sources are built both for SFI binary and for Non-SFI binary, but, in some cases, there are small diffs which need to be guarded by #ifdef. In "Non-SFI build binary" mode, __native_client_nonsfi__ is defined. This CL introduce OS_NACL_SFI and OS_NACL_NONSFI which can be used among the chrome code, to slightly simplify the #ifdef conditions. This CL is the follow up of crrev.com/659243002 BUG=358465 TEST=Ran trybot. Review URL: https://codereview.chromium.org/664373003 Cr-Commit-Position: refs/heads/master@{#301603}
* Don't include TargetConditionals.h when building for android.torne2014-09-051-4/+4
| | | | | | | | | | | | | | | Move the include of the Mac TargetConditionals.h file to after we've checked if we're building for Android. Apparently this file doesn't exist on all macs used to build android and the rest of android builds fine without it, so including it there causes the build to fail. It appears to only be used to test TARGET_OS_IPHONE which will never be true on android. BUG= Review URL: https://codereview.chromium.org/538563002 Cr-Commit-Position: refs/heads/master@{#293495}
* Adding atomic ops for MIPS64.Gordana.Cmiljanovic@imgtec.com2014-08-141-0/+7
| | | | | | | | | | | This change adds atomic operations for MIPS64. BUG=400684 Review URL: https://codereview.chromium.org/450343002 Cr-Commit-Position: refs/heads/master@{#289624} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289624 0039d316-1c4b-4281-b951-d872f2087c98
* Gate disabling nacl code on proper gyp flags, etc.sehr@chromium.org2014-06-041-4/+5
| | | | | | | | | | | | | | | Background: I am currently trying to test NaCl in clank by setting disable_nacl=0 and enable_plugins=1 in gyp. Some of the code required to get this to work is guarded under overly-specific OS==android and similar constructs. This first CL enables a coherent build with the flags set to gyp, but does not yet turn the functionality on completely. A sampling of issues fixed: 1) std:: prefix is more strictly observed on android 2) define NACL_LINUX, etc., is needed for nacl code 3) properly guard flag-setting code BUG= https://code.google.com/p/nativeclient/issues/detail?id=3032 R=bradnelson@google.com, darin@chromium.org Review URL: https://codereview.chromium.org/299703016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274839 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the WCHAR_T_IS_UNSIGNED definition since it is not really useful. ↵rmcilroy@chromium.org2014-04-251-6/+0
| | | | | | | | | | | Replace its use with a static_cast. BUG=354405 NOTRY=true Review URL: https://codereview.chromium.org/248843004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266058 0039d316-1c4b-4281-b951-d872f2087c98
* disable more stacktrace usage in debug uclibc buildsmostynb@opera.com2014-04-181-0/+2
| | | | | | | | | | | Here are a couple more instances of OutputToStream / Print that are no longer available in uClibc builds. BUG=361130 Review URL: https://codereview.chromium.org/234803002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264887 0039d316-1c4b-4281-b951-d872f2087c98
* Remove all uses of toolkit_use_gtk in the gyp files.erg@chromium.org2014-04-171-6/+0
| | | | | | | | | BUG=297026 R=ben@chromium.org, brettw@chromium.org Review URL: https://codereview.chromium.org/238633004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264609 0039d316-1c4b-4281-b951-d872f2087c98
* define LIBC_GLIBC as 1 for consistencymostynb@opera.com2014-04-071-1/+1
| | | | | | | | | Most of the other defines in build/build_config.h are set to 1, let's define LIBC_GLIBC as 1 for consistency. Review URL: https://codereview.chromium.org/227153008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262255 0039d316-1c4b-4281-b951-d872f2087c98
* Make ARM64 detection consistent.primiano@chromium.org2014-03-311-1/+1
| | | | | | | | | | | | Use only __aarch64__ and don't look for __arm64__ at all. It turns out that clang defines both and GCC only the former. Hence, looking only for __aarch64__ should be enough. BUG=354405,358092 Review URL: https://codereview.chromium.org/218663003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@260671 0039d316-1c4b-4281-b951-d872f2087c98
* Enable Arm64 target arch in gyp build configrmcilroy@chromium.org2014-03-201-1/+1
| | | | | | | | | | Initial support to get us started. There is a lot more work to do before we can compile for arm64. BUG=354405 Review URL: https://codereview.chromium.org/199583008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258363 0039d316-1c4b-4281-b951-d872f2087c98
* gtk: Make sure TOOLKIT_GTK is defined correctly when not using aura on all ↵sadrul@chromium.org2014-02-241-7/+6
| | | | | | | | | | | x11 platforms. BUG=342338 R=erg@chromium.org Review URL: https://codereview.chromium.org/176003002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@252952 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for threading and atomic ops in QNX Neutrino.ctruta@blackberry.com2014-02-061-1/+3
| | | | | | | | | | | | | BUG= Patch by: Eli Fidler <efidler@blackberry.com>, Jeff Rogers <jrogers@blackberry.com>, Cosmin Truta <ctruta@blackberry.com>. Review URL: https://codereview.chromium.org/156233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@249390 0039d316-1c4b-4281-b951-d872f2087c98
* Fix compilation of base for arm64sdefresne@chromium.org2014-02-061-0/+5
| | | | | | | | | | | | | | | | | Add support for the architecture to build/build_config.h (define new macro ARCH_CPU_ARM64 to identify the CPU architecture and set the other appropriate macros to 1). Fix DEBUG_BREAK_ASM() macro to expand to the correct instruction on arm64 cpu (as instruction set is not compatible with previous version of ARM instruction sets). BUG=339477 R=mark@chromium.org Review URL: https://codereview.chromium.org/145273028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@249246 0039d316-1c4b-4281-b951-d872f2087c98
* Revert of https://chromiumcodereview.appspot.com/103293003/jln@chromium.org2013-12-061-3/+0
| | | | | | | | | | | | Reason for revert: http://goo.gl/3ufXOJ TBR=rsesek@chromium.org,willchan@chromium.org,darin@chromium.org NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/108013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239153 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 239102 "Move build/build_config_functions.h to sandbox/"rlarocque@chromium.org2013-12-061-0/+3
| | | | | | | | | | | | | | | | | > Move build/build_config_functions.h to sandbox/ > > There is not much support for build/build_config_functions.h, > as highlighted in http://goo.gl/3ufXOJ. Move it away. > > R=jww@chromium.org > > Review URL: https://codereview.chromium.org/106163008 TBR=jln@chromium.org Review URL: https://codereview.chromium.org/107643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239105 0039d316-1c4b-4281-b951-d872f2087c98
* Move build/build_config_functions.h to sandbox/jln@chromium.org2013-12-061-3/+0
| | | | | | | | | | | There is not much support for build/build_config_functions.h, as highlighted in http://goo.gl/3ufXOJ. Move it away. R=jww@chromium.org Review URL: https://codereview.chromium.org/106163008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239102 0039d316-1c4b-4281-b951-d872f2087c98
* Add build_config_functions.h to avoid #ifdefjln@chromium.org2013-12-061-0/+3
| | | | | | | | | | | | | | | | | | An "#ifdef" statement is more confusing than using C++ syntax and "if (XXX)". They should be used only when strictly necessary (i.e. when code cannot compile). For the cases where #ifdef are not strictly necessary, these new helpers can be used. Thanks to compiler optimization, the final compiled code will be the same when these helpers are used instead of #ifdef. R=rsesek@chromium.org Review URL: https://codereview.chromium.org/103293003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239079 0039d316-1c4b-4281-b951-d872f2087c98
* Define ARCH_CPU_LITTLE_ENDIAN for PNaClsergeyu@chromium.org2013-12-031-0/+1
| | | | | | | | | | | | PNaCl bytecode is little-endian, but build_config.h didn't define ARCH_CPU_LITTLE_ENDIAN. BUG=276739 R=sehr@chromium.org Review URL: https://codereview.chromium.org/69763004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238276 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Allow creating content_shell without views.sadrul@chromium.org2013-10-201-1/+1
| | | | | | | | | | | | | | | | | | | This builds content_shell with use_aura=1 and toolkit_views=0. BUG=none R=derat@chromium.org, jamescook@chromium.org, jochen@chromium.org Previously, on this issue: * Landed in r229507 * Speculatively reverted in r229521. * Relanded in r229524, since the revert didn't fix anything. * Reverted in r229525 because it broken win-blink bots. * Committed again in r229671 with an incorrect fix. * Reverted in r229683 Review URL: https://codereview.chromium.org/26695007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229704 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r229671 "aura: Allow creating content_shell without views."pfeldman@chromium.org2013-10-201-1/+1
| | | | | | http://build.chromium.org/p/chromium.webkit/builders/WebKit%20Win%20Builder%20%28deps%29/builds/74852/steps/compile/logs/stdio git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229683 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Allow creating content_shell without views.sadrul@chromium.org2013-10-201-1/+1
| | | | | | | | | | | | | | | | | This builds content_shell with use_aura=1 and toolkit_views=0. BUG=none R=derat@chromium.org, jamescook@chromium.org, jochen@chromium.org Previously, on this issue: * Landed in r229507 * Speculatively reverted in r229521. * Relanded in r229524, since the revert didn't fix anything. * Reverted in r229525 because it broken win-blink bots. Review URL: https://codereview.chromium.org/26695007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229671 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 229524 "Revert 229521 "Revert 229507 "aura: Allow creating ↵pfeldman@chromium.org2013-10-191-1/+1
| | | | | | | | content_shell..."" Breaks blink waterfall due to TOOLKIT_VIEWS not defined there. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229525 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 229521 "Revert 229507 "aura: Allow creating content_shell..."thakis@chromium.org2013-10-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert didn't help, so reland the change. > Revert 229507 "aura: Allow creating content_shell without views." > > Speculative. All windows bots on the main waterfall except for the clobber > builder started timing out during compile during a window that had only this > change and two test-only changes in the range. > > > aura: Allow creating content_shell without views. > > > > This builds content_shell with use_aura=1 and toolkit_views=0. > > > > BUG=none > > R=derat@chromium.org, jamescook@chromium.org, jochen@chromium.org > > > > Review URL: https://codereview.chromium.org/26695007 > > TBR=sadrul@chromium.org > > Review URL: https://codereview.chromium.org/30413002 TBR=thakis@chromium.org Review URL: https://codereview.chromium.org/27993005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229524 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 229507 "aura: Allow creating content_shell without views."thakis@chromium.org2013-10-191-1/+1
| | | | | | | | | | | | | | | | | | | | | Speculative. All windows bots on the main waterfall except for the clobber builder started timing out during compile during a window that had only this change and two test-only changes in the range. > aura: Allow creating content_shell without views. > > This builds content_shell with use_aura=1 and toolkit_views=0. > > BUG=none > R=derat@chromium.org, jamescook@chromium.org, jochen@chromium.org > > Review URL: https://codereview.chromium.org/26695007 TBR=sadrul@chromium.org Review URL: https://codereview.chromium.org/30413002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229521 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Allow creating content_shell without views.sadrul@chromium.org2013-10-191-1/+1
| | | | | | | | | | | This builds content_shell with use_aura=1 and toolkit_views=0. BUG=none R=derat@chromium.org, jamescook@chromium.org, jochen@chromium.org Review URL: https://codereview.chromium.org/26695007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229507 0039d316-1c4b-4281-b951-d872f2087c98
* add a macro that really identifies glibcmostynb@opera.com2013-05-231-0/+4
| | | | | | | | | | | | | uClibc pretends to be glibc, so just checking for __GLIBC__ doesn't always work. Rather than check for defined(__GLIBC__) && !defined(__UCLIBC__) in multiple places, do it once and define LIBC_GLIBC if we're certain that we're really using glibc. NOTRY=true Review URL: https://chromiumcodereview.appspot.com/15405003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201761 0039d316-1c4b-4281-b951-d872f2087c98
* Adds TCMalloc support for Android.bulach@chromium.org2013-05-221-1/+2
| | | | | | | | | | | | | | This is part of the effort to bring TCMalloc to android. The first goal is to get instrumentation to facilitate integration with DMP and memory profiling. This is not yet intended for full production usage as the default allocator. BUG=162208 Review URL: https://chromiumcodereview.appspot.com/14321006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201524 0039d316-1c4b-4281-b951-d872f2087c98
* Change MessagePumpLinux to MessagePumpOzonedavemoore@chromium.org2013-05-031-5/+0
| | | | | | | | | | BUG=178543 TEST=None R=ben@chromium.org Review URL: https://codereview.chromium.org/14624010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198244 0039d316-1c4b-4281-b951-d872f2087c98
* Rationalize linux vs x11 in uidavemoore@chromium.org2013-04-291-1/+1
| | | | | | | | | | BUG=236170 TEST=None R=ben@chromium.org Review URL: https://codereview.chromium.org/13985039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197087 0039d316-1c4b-4281-b951-d872f2087c98
* Add a message pump for ChromeOS Embedded.rjkroege@chromium.org2013-04-061-1/+1
| | | | | | | | | | | A message pump implementation for embedded ChromeOS. BUG=180666 Review URL: https://chromiumcodereview.appspot.com/12546010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192703 0039d316-1c4b-4281-b951-d872f2087c98
* Reorder platforms in build_config to fix Android on Mac.torne@chromium.org2013-04-041-3/+3
| | | | | | | | | | | | | | | | The Android port relies on the global define ANDROID to identify that we are crosscompiling for Android, but __APPLE__ was being checked first in build_config.h, and so builds on a Mac sometimes ended up with the wrong OS_* macro defined. Reorder the list so that ANDROID is tested first, as it will only be set manually when crosscompiling (__APPLE__ is set internally by the compiler). BUG= Review URL: https://chromiumcodereview.appspot.com/13541003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192303 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Remove CROS_FONTS_USING_BCI.derat@chromium.org2012-08-161-6/+0
| | | | | | | | | | | | | | | | | | | This was a #define that was added when we were deciding whether we should use the bytecode interpreter or FreeType's autohinter when rendering UI text on Chrome OS. The text had different heights depending on which setting was used, so a bunch of constants were special-cased when BCI was enabled. We've been using the autohinter for a long time, and we'll need to update lots of newer code if we decide to switch to BCI someday. BUG=none TEST=UI text looks the same as before TBR=tony@chromium.org,davemoore@chromium.org,zork@chromium.org Review URL: https://chromiumcodereview.appspot.com/10828336 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151928 0039d316-1c4b-4281-b951-d872f2087c98
* Fix build for native client to roll DEPS.bbudge@chromium.org2012-07-041-2/+2
| | | | | | | | BUG=none TEST=compiles in NaCl repo Review URL: https://chromiumcodereview.appspot.com/10696117 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145462 0039d316-1c4b-4281-b951-d872f2087c98
* Fix OS_IOS definitionstuartmorgan@chromium.org2012-07-021-2/+2
| | | | | | | | | | | | TARGET_OS_IOS is always defined, either to 1 or 0, so defined() isn't the right check. BUG=None TEST=None Review URL: https://chromiumcodereview.appspot.com/10697053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145148 0039d316-1c4b-4281-b951-d872f2087c98
* Add iOS support to common.gypistuartmorgan@chromium.org2012-06-291-2/+13
| | | | | | | | | | | | | | | There are basically three categories of changes here: 1) Most OS==mac becomes OS==mac or OS==ios 2) Some Xcode-related settings move into OS==mac blocks since Xcode is no longer Mac-only 3) Addition of iOS-specific settings (SDK, compile flags, etc) BUG=None TEST=None Review URL: https://chromiumcodereview.appspot.com/10704039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145008 0039d316-1c4b-4281-b951-d872f2087c98
* [MIPS] Adding atomic ops for MIPS architecture.petarj@mips.com2012-06-181-0/+6
| | | | | | | | | | | | Initial commit for atomic operations on MIPS architecture. BUG=https://code.google.com/p/chromium/issues/detail?id=130022 TEST=make chrome Review URL: https://chromiumcodereview.appspot.com/10448043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142663 0039d316-1c4b-4281-b951-d872f2087c98
* linux: don't define NO_HEAPCHECKER for every fileevan@chromium.org2012-01-241-6/+1
| | | | | | | | | | | | | | Rather than globally defining NO_HEAPCHECKER and then checking that in build_config.h, let builds that opt in to heap checking directly set USE_HEAPCHECKER. Result should be equivalent builds but less stuff in the build files. Review URL: http://codereview.chromium.org/9146022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118823 0039d316-1c4b-4281-b951-d872f2087c98
* define OS_BSD on *BSD and replace the ifdefs to use thatrobert.nagy@gmail.com2011-11-151-5/+11
| | | | | | | | | | BUG= TEST=compile Review URL: http://codereview.chromium.org/8564020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109986 0039d316-1c4b-4281-b951-d872f2087c98
* Make use_nss a gyp var so that aura can build w/ nss.davemoore@chromium.org2011-10-051-6/+1
| | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/8135024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104100 0039d316-1c4b-4281-b951-d872f2087c98
* These are the changes necessary for views to be able to build w/ use_aura ↵davemoore@chromium.org2011-09-221-6/+0
| | | | | | | | | | | implying no gtk. BUG=97131 TEST=views_unittests Review URL: http://codereview.chromium.org/7996008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102335 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Make GTK a dependency again for chrome/aura etc. to make things buildable.sadrul@chromium.org2011-09-211-1/+1
| | | | | | | | | BUG=97131 TEST=none Review URL: http://codereview.chromium.org/7978016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102078 0039d316-1c4b-4281-b951-d872f2087c98
* Reland 102005 and 102009: aura: Explicitly disable GTK.sadrul@chromium.org2011-09-211-1/+1
| | | | | | | | | | | | | | | Explicitly disable GTK by setting TOOLKIT_USES_GTK. This is the first in a series of changes required to have chrome on aura build and link without GTK. This CL makes base/ build without GTK. Subsequent CLs will do this for other components. TBR=evan@chromium.org BUG=97131 TEST=none Review URL: http://codereview.chromium.org/7983022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102058 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 102005 - aura: Explicitly disable GTK.sky@chromium.org2011-09-201-1/+1
| | | | | | | | | | | | | | Explicitly disable GTK by setting TOOLKIT_USES_GTK. This is the first in a series of changes required to have chrome on aura build and link without GTK. This CL makes base/ build without GTK. Subsequent CLs will do this for other components. BUG=97131 TEST=none Review URL: http://codereview.chromium.org/7904034 TBR=sadrul@chromium.org Review URL: http://codereview.chromium.org/7978007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102015 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Explicitly disable GTK.sadrul@chromium.org2011-09-201-1/+1
| | | | | | | | | | | Explicitly disable GTK by setting TOOLKIT_USES_GTK. This is the first in a series of changes required to have chrome on aura build and link without GTK. This CL makes base/ build without GTK. Subsequent CLs will do this for other components. BUG=97131 TEST=none Review URL: http://codereview.chromium.org/7904034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102005 0039d316-1c4b-4281-b951-d872f2087c98
* Allow __pnacl__ target to build code included from Chrome.sehr@google.com2011-08-261-0/+2
| | | | | | | | | | Committing for pdox@google.com. BUG=none TEST=trybots Review URL: http://codereview.chromium.org/7744034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98461 0039d316-1c4b-4281-b951-d872f2087c98
* Remove USE_BASE_DATA_PACK from build_config.h since it's onlytony@chromium.org2011-08-021-3/+1
| | | | | | | | | used in one file. Inline the usage instead. Review URL: http://codereview.chromium.org/7538030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95123 0039d316-1c4b-4281-b951-d872f2087c98
* Upstream android string implementation etc.michaelbai@google.com2011-06-271-3/+17
| | | | | | | | | BUG= TEST= Review URL: http://codereview.chromium.org/7238018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90616 0039d316-1c4b-4281-b951-d872f2087c98
* Implement AES-CTR for NSS.hclam@chromium.org2011-06-241-0/+3
| | | | | | | | | | | Implement AES-128-CTR. BUG=87152 TEST=None Review URL: http://codereview.chromium.org/7056026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90425 0039d316-1c4b-4281-b951-d872f2087c98