summaryrefslogtreecommitdiffstats
path: root/chrome/chrome.gyp
Commit message (Collapse)AuthorAgeFilesLines
* Remove unit_tests target from iOS builds.justincohen@chromium.org2013-11-201-1/+1
| | | | | | | | | | | | chrome/ is no longer being brought up on iOS, since code used on iOS should be extracted into layered components. unit_tests is now empty on iOS, so stop building it. BUG=312293 Review URL: https://codereview.chromium.org/72663006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236164 0039d316-1c4b-4281-b951-d872f2087c98
* ui: Android changes.tfarina@chromium.org2013-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | A series of changes related to android code organization under ui, that came after the discussion in https://codereview.chromium.org/62203014/. - Rename ui_jni_registrar.* to ui_base_jni_registrar.* - Create a base/ directory under ui/android/java/src/org/chromium/ui, and move some java files there. - Move Surface java files into ui/android/java/src/org/chromium/ui/gl/ directory. - Rename ui_jni_headers to ui_base_jni_headers. - Create a new ui_android.gyp file under ui/android to contain ui_java target. BUG=299841 R=tedchoc@chromium.org, yfriedman@chromium.org TBR=ben Review URL: https://codereview.chromium.org/70843003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235369 0039d316-1c4b-4281-b951-d872f2087c98
* Upstream Android printing code.cimamoglu@chromium.org2013-11-141-0/+1
| | | | | | | | | | | | | | | | With regards to the original downstream code, there are some differences: * PrintintControllerComponent(Impl) are renamed to PrintingController(Impl) * ChromeComponentFactory is renamed into PrintingControllerFactory * Some obsolete documentation removed/updated. More refactoring and tests will follow. BUG=315229 TBR=vitalybuka@chromium.org Review URL: https://codereview.chromium.org/64093004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235171 0039d316-1c4b-4281-b951-d872f2087c98
* Added PWG raster generatornoamsml@chromium.org2013-11-141-0/+4
| | | | | | | | | | Added class plus tests to generate PWG raster files from in-memory bitmaps. BUG=318373 Review URL: https://codereview.chromium.org/70193006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235022 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Refactor InspectUI class for extensibilitykaznacheev@chromium.org2013-11-131-0/+2
| | | | | | | | | | | Currently InspectUI contains code that listens to inspection targets coming from 3 different sources (RVHs, workers, ADB) which makes it quite complex and intertwined. More sources are to come soon (e.g. targets from wirelessly connected devices). This patch extracts a base class DevToolsTargetsUIHandler that should be used to add another target source. TBR=jochen@chromium.org for chrome.gyp BUG=None Review URL: https://codereview.chromium.org/65143004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234859 0039d316-1c4b-4281-b951-d872f2087c98
* Move nacl_helper_linux.cc to components/naclalexis.menard@intel.com2013-11-121-1/+0
| | | | | | | | | | | | | | | | Move the NaCl linux helper into the components/nacl/loader directory as well as the build target to components/nacl.gyp. This patch also removed chrome/nacl.gypi which is not needed anymore. This is part of an effort to componentize NaCl code. Patch by mrunal.kapade@intel.com with modifications by myself. BUG=244791 Review URL: https://codereview.chromium.org/58333002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234379 0039d316-1c4b-4281-b951-d872f2087c98
* Extract XPS code from PrintSystemWin.vitalybuka@chromium.org2013-11-101-0/+2
| | | | | | | | BUG=317027 Review URL: https://codereview.chromium.org/61673004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234174 0039d316-1c4b-4281-b951-d872f2087c98
* Removes unnecessary macro.vitalybuka@chromium.org2013-11-101-11/+5
| | | | | | Review URL: https://codereview.chromium.org/65343009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234146 0039d316-1c4b-4281-b951-d872f2087c98
* Make a new component 'app_shim'.jackhou@chromium.org2013-11-081-2/+5
| | | | | | | | | | This moves app_shim code into its own gypi. BUG=266705 Review URL: https://codereview.chromium.org/47603020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233769 0039d316-1c4b-4281-b951-d872f2087c98
* Remove flush_cache tool.tfarina@chromium.org2013-11-071-15/+0
| | | | | | | | | | | | | | | tools/perf/clear_system_cache is an upgraded version of it, so we can remove this code now. Discussion here: https://groups.google.com/a/chromium.org/d/topic/chromium-dev/6a-WQnI7QFM/discussion BUG=None TEST=None R=thestig@chromium.org Review URL: https://codereview.chromium.org/57033002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233636 0039d316-1c4b-4281-b951-d872f2087c98
* Allow printing component to be removed completelyspang@chromium.org2013-11-071-1/+5
| | | | | | | | | | | | | | Using enable_printing=0 removes all of the source files of the printing component, but has no effect on its dependencies. It is wrong to empty out the target inside the target. If printing is disabled, then the dependency on printing.gyp is not needed and can be removed. This target was causing libgcrypt to be linked even when printing was disabled. That problem goes away with this change. Review URL: https://codereview.chromium.org/62793002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233563 0039d316-1c4b-4281-b951-d872f2087c98
* Restructure the events target into two components:ben@chromium.org2013-11-061-1/+0
| | | | | | | | | | | | | | - events_base (built by most people) - defining some basic utilities. - events (built by users of aura/views) - the ui::Event type & friends. Prior to this there was one target, and platforms that did not want ui::Event would exclude those files explicitly, making it hard to build those files on those platforms without breaking other components. R=sadrul@chromium.org BUG=none Review URL: https://codereview.chromium.org/57433011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233347 0039d316-1c4b-4281-b951-d872f2087c98
* Renamed chrome/service/cloud_print/cloud_print_helpers* -> ↵vitalybuka@chromium.org2013-11-051-2/+2
| | | | | | | | | | | | cloud_print_service_helpers File name the same as in chrome/common/cloud_print/ failed some VS builds. NOTRY=true Review URL: https://codereview.chromium.org/55143012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232937 0039d316-1c4b-4281-b951-d872f2087c98
* Extract convert_dict target from chrome.gyp.tfarina@chromium.org2013-11-021-34/+0
| | | | | | | | | | | | | | | | The gyp files under chrome/ are really not well organized, kind of a mess, so it is hard to find the right places to put things. As most of the things goes into browser, browser_ui or common libraries, this isn't much an issue though. But we can do better. BUG=None TEST=build/gyp_chromium chrome/tools/convert_dict/convert_dict.gyp ninja -C out/Debug convert_dict R=thestig@chromium.org Review URL: https://codereview.chromium.org/48623008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232584 0039d316-1c4b-4281-b951-d872f2087c98
* Add 'Inspect' Links for views in the Extension Error Consolerdevlin.cronin@chromium.org2013-11-011-0/+1
| | | | | | | | | | | | | | | Add the option to inspect a resource or render view in the error console, opening the developer tools for that resource/view. Goes with: https://codereview.chromium.org/23816005 BUG=21734 TBR=yoshiki@chromium.org (task_manager) TBR=ben@chromium.org (ui [refactor only]) Review URL: https://codereview.chromium.org/23459008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232246 0039d316-1c4b-4281-b951-d872f2087c98
* Extract ipclist target from chrome.gyp.tfarina@chromium.org2013-10-291-16/+0
| | | | | | | | | | | | | | | | The gyp files under chrome/ are really not well organized, kind of a mess, so it is hard to find the right places to put things. As most of the things goes into browser, browser_ui or common libraries, this isn't much an issue though. But we can do better. BUG=None TEST=build/gyp_chromium chrome/tools/ipclist/ipclist.gyp ninja -C out/Debug ipclist R=thestig@chromium.org Review URL: https://codereview.chromium.org/46853003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231583 0039d316-1c4b-4281-b951-d872f2087c98
* ui: Have shell_dialogs into its own gyp file under its shell_dialogs/ directory.tfarina@chromium.org2013-10-291-1/+1
| | | | | | | | | | | | | | | This is the pattern we follow for projects under ui/, each top-level directory (app_list, aura, compositor, events) have its own gyp file for its main target (library). BUG=299841 TEST=build/gyp_chromium, ninja -C out/Debug shell_dialogs, and other targets still build. R=ben@chromium.org Review URL: https://codereview.chromium.org/47323002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231478 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Re-land DevToolsTargetImpl only using it in inspect_ui.cckaznacheev@chromium.org2013-10-271-0/+3
| | | | | | | | | | | | This is a partial reland of https://chromiumcodereview.appspot.com/27217005/ which got reverted because it broke telemetry. This patch excludes changes to remote debugging server and only touches chrome://inspect logic. TBR=vsevik BUG=311014 Review URL: https://codereview.chromium.org/46983002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231262 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Telemetry.tonyg@chromium.org2013-10-261-3/+0
| | | | | | | | | | | | | | | | | | | | | | "Introduce DevToolsTargetImpl" breaks Telemetry because it no longer returns type: "other" for prerenders. "Add URL query parameter" had to go because it builds atop the broken change. BUG=311652 TBR=kaznacheev@chromium.org NOTRY=True Revert "DevTools: Add URL query parameter to json/new command" This reverts commit 296d770a744a554751bca5bdf16e681bb8615589. Revert "DevTools: Introduce DevToolsTargetImpl to unify debug target across several places in Chrome" This reverts commit 329082e9edfe5a0e5672250abc269a66ba33bdf1. Review URL: https://codereview.chromium.org/46523002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231180 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Introduce DevToolsTargetImpl to unify debug target across several ↵kaznacheev@chromium.org2013-10-251-0/+3
| | | | | | | | | | | | | | | | places in Chrome R=vsevik@chromium.org TBR=jochen@chromium.org for chrome.gyp BUG=None Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=230720 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=230840 Review URL: https://codereview.chromium.org/27217005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230994 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 230840 "DevTools: Introduce DevToolsTargetImpl to unify d..."kuan@chromium.org2013-10-251-3/+0
| | | | | | | | | | | | | | | | | | | | > DevTools: Introduce DevToolsTargetImpl to unify debug target across several places in Chrome > > R=vsevik@chromium.org > TBR=jochen@chromium.org for chrome.gyp > BUG=None > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=230720 > > Review URL: https://codereview.chromium.org/27217005 it was failing http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%282%29/builds/25740/steps/browser_tests/logs/RemoteDebugger. TBR=kaznacheev@chromium.org Review URL: https://codereview.chromium.org/42753002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230876 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Introduce DevToolsTargetImpl to unify debug target across several ↵kaznacheev@chromium.org2013-10-241-0/+3
| | | | | | | | | | | | | | places in Chrome R=vsevik@chromium.org TBR=jochen@chromium.org for chrome.gyp BUG=None Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=230720 Review URL: https://codereview.chromium.org/27217005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230840 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 230720 "DevTools: Introduce DevToolsTargetImpl to unify d..."ajwong@chromium.org2013-10-241-3/+0
| | | | | | | | | | | | | | | | > DevTools: Introduce DevToolsTargetImpl to unify debug target across several places in Chrome > > R=vsevik@chromium.org > TBR=jochen@chromium.org for chrome.gyp > BUG=None > > Review URL: https://codereview.chromium.org/27217005 TBR=kaznacheev@chromium.org Review URL: https://codereview.chromium.org/40633002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230743 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Introduce DevToolsTargetImpl to unify debug target across several ↵kaznacheev@chromium.org2013-10-241-0/+3
| | | | | | | | | | | | places in Chrome R=vsevik@chromium.org TBR=jochen@chromium.org for chrome.gyp BUG=None Review URL: https://codereview.chromium.org/27217005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230720 0039d316-1c4b-4281-b951-d872f2087c98
* Introduced AndroidDeviceProvider to simplify testing.zvorygin@chromium.org2013-10-231-0/+4
| | | | | | | | | TBR=pfeldman BUG=308514 Review URL: https://codereview.chromium.org/26568004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230374 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce a separate gyp file for content shell and testsjochen@chromium.org2013-10-191-3/+3
| | | | | | | | | | | | This will make it possible to depend on components from content shell BUG=247431 R=jam@chromium.org TBR=ben@chromium.org Review URL: https://codereview.chromium.org/28123002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229620 0039d316-1c4b-4281-b951-d872f2087c98
* Remove ipc fuzzing code.thestig@chromium.org2013-10-191-14/+0
| | | | | | | | BUG=298372 Review URL: https://codereview.chromium.org/27031007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229577 0039d316-1c4b-4281-b951-d872f2087c98
* Move CrashService class to breakpad componentjochen@chromium.org2013-10-181-8/+2
| | | | | | | | | BUG=247431 R=rsesek@chromium.org Review URL: https://codereview.chromium.org/26688006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229279 0039d316-1c4b-4281-b951-d872f2087c98
* [MediaGalleries] Add utility process handling for iphoto library parsing.gbillock@chromium.org2013-10-171-0/+8
| | | | | | | | | R=tommycli@chromium.org BUG=151703 Review URL: https://codereview.chromium.org/24442002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229174 0039d316-1c4b-4281-b951-d872f2087c98
* events: Create a separate events component out of ui.sadrul@chromium.org2013-10-011-0/+1
| | | | | | | | | BUG=none R=ben@chromium.org Review URL: https://codereview.chromium.org/24788002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226105 0039d316-1c4b-4281-b951-d872f2087c98
* gfx: Create a separate gfx component out of ui.sadrul@chromium.org2013-09-301-0/+1
| | | | | | | | | | | Landed previously in r225857, which was reverted in r225859 because it broke android tests. BUG=103304 R=ben@chromium.org Review URL: https://codereview.chromium.org/25015003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225909 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 225857 "gfx: Create a separate gfx component out of ui."ckocagil@chromium.org2013-09-281-1/+0
| | | | | | | | | | | | | | | > gfx: Create a separate gfx component out of ui. > > BUG=103304 > R=ben@chromium.org > > Review URL: https://codereview.chromium.org/25015003 TBR=sadrul@chromium.org Review URL: https://codereview.chromium.org/25161002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225859 0039d316-1c4b-4281-b951-d872f2087c98
* gfx: Create a separate gfx component out of ui.sadrul@chromium.org2013-09-281-0/+1
| | | | | | | | | BUG=103304 R=ben@chromium.org Review URL: https://codereview.chromium.org/25015003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225857 0039d316-1c4b-4281-b951-d872f2087c98
* Delete automation code needed by old (and deleted) ChromeDriver.kkania@chromium.org2013-09-241-5/+0
| | | | | | | | BUG=none Review URL: https://chromiumcodereview.appspot.com/24396002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224949 0039d316-1c4b-4281-b951-d872f2087c98
* webkit: Kill support/ directory.tfarina@chromium.org2013-09-241-1/+1
| | | | | | | | | | | | | - Rename webkit_support.gyp to webkit_glue.gyp - Move it into glue/ directory. - Remove DEPS and OWNERS file. BUG=265753 R=darin@chromium.org Review URL: https://chromiumcodereview.appspot.com/23583055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224864 0039d316-1c4b-4281-b951-d872f2087c98
* GTTF: Fix build breakage.phajdan.jr@chromium.org2013-09-191-6/+0
| | | | | | | | | | TBR=sky BUG=288383 Review URL: https://codereview.chromium.org/24235005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224207 0039d316-1c4b-4281-b951-d872f2087c98
* Migrate DevToolsWindow from specific to opaque frontend host messageskaznacheev@chromium.org2013-09-051-0/+2
| | | | | | | | | TBR=jam (new file in chrome.gyp) BUG=278002 Review URL: https://chromiumcodereview.appspot.com/22972007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221418 0039d316-1c4b-4281-b951-d872f2087c98
* Android: exclude dead code from android buildanton@chromium.org2013-09-021-0/+2
| | | | | | | | | | | | | | | Dead code is found examining symbols in the final targets of the 'All' build target. Note, Ninja/Gyp combination does not provide a mechanism to blocking include files. A later change could make something undead and the developer would get a link error, where they might expect a compile error. I didn't modify GYP files were there was currently no branching or where there was already a very complex set of conditional configurations. Other than these cases which are minor, the majority of remaining dead code is because we link third party libraries with whole-archive flag. BUG= Review URL: https://chromiumcodereview.appspot.com/23030005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220856 0039d316-1c4b-4281-b951-d872f2087c98
* Rename chrome/browser/devtools/tethering_adb_filter.* to ↵kaznacheev@chromium.org2013-08-301-2/+2
| | | | | | | | | | | | | | port_forwarding_controller.* Also moved TetheringAdbFilter class declaration into a cc file, preparing for merge with PortForwardingController::Connection. TBR=jam (file renamed in chrome.gyp) BUG=None Review URL: https://chromiumcodereview.appspot.com/23490021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220560 0039d316-1c4b-4281-b951-d872f2087c98
* Delete app_host from apps/benwells@chromium.org2013-08-301-1/+0
| | | | | | | | | | | | | This isn't used any more now and can be deleted. Chrome apps and the chrome app launcher are now part of the main chrome install, and don't need a separate executable to shunt control to chrome. TBR=sky BUG=279671 Review URL: https://chromiumcodereview.appspot.com/23539002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220555 0039d316-1c4b-4281-b951-d872f2087c98
* Move default apps from Chrome to Chrome OSdpolukhin@chromium.org2013-08-291-11/+1
| | | | | | | | | | | | | Also changed dir with default apps for managed users. Main CL that moves cache: https://gerrit-int.chromium.org/#/c/42720/ BUG=271247 TEST=manual R=jhawkins@chromium.org, mek@chromium.org Review URL: https://codereview.chromium.org/22931006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220410 0039d316-1c4b-4281-b951-d872f2087c98
* Printing: Add a basic printing mode without print preview and cloud print.thestig@chromium.org2013-08-121-94/+97
| | | | | | | | | BUG=147070 TBR=cimamoglu@google.com Review URL: https://codereview.chromium.org/22577010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@217025 0039d316-1c4b-4281-b951-d872f2087c98
* Add media file validation to utility processvandebo@chromium.org2013-08-091-0/+1
| | | | | | | | | | This does not do a full validation of the media file, but only does basic checks. BUG=144509 Review URL: https://chromiumcodereview.appspot.com/20572004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216653 0039d316-1c4b-4281-b951-d872f2087c98
* Clone a subset of content::DevToolsProtocol class into DevToolsProtocol ↵kaznacheev@chromium.org2013-08-071-0/+2
| | | | | | | | | | | | | | | | class in chrome There is a growing number of places under chrome/browser/devtools where protocol messages are handled in the browser process (as opposed to the renderer). Manual composition and parsing of messages is making the code less readable and content::DevToolsProtocol utility class is not accessible. BUG=None TBR=pfeldman@chromium.org Review URL: https://codereview.chromium.org/22274018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216187 0039d316-1c4b-4281-b951-d872f2087c98
* Fix content_browsertests and other full stack tests in multiple_dllscottmg@chromium.org2013-08-061-1/+0
| | | | | | | | | | | | | | | Tests need both sets of entry point functions, ContentClient embedder pointers, etc. Now in gyp, the three targets are content_app_browser for browser-only, content_app_child, which is child-only, and content_app_both which contains both. TBR=joth@chromium.org, grt@chromium.org R=jam@chromium.org BUG=237249 Review URL: https://chromiumcodereview.appspot.com/21453003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215771 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Support workspace files indexing in browser process.vsevik@chromium.org2013-08-051-0/+2
| | | | | | | | | | | | | | | | | This patch introduces a trigram based index for file system folders added to DevTools. Three methods are added to the interface between DevTools frontend and browser process: - IndexPath() performs indexing of the file system folder - SearchInPath() performs search in the index - StopIndexing() stops the indexing. This is needed because indexing is time consuming (seconds or even tens of seconds on huge folders). The trigram based index is essentially a map from trigram to a list of files. The search method returns a list of files matching all trigrams that are present in the search query. BUG=263313 R=pfeldman@chromium.org Review URL: https://chromiumcodereview.appspot.com/19851007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215622 0039d316-1c4b-4281-b951-d872f2087c98
* Extracted AdbWebSocket class into a separate filekaznacheev@chromium.org2013-08-021-0/+2
| | | | | | | | | | BUG=None TBR=pfeldman@chromium.org Review URL: https://codereview.chromium.org/21474002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215256 0039d316-1c4b-4281-b951-d872f2087c98
* Move itunes related files in common/ and utility/ into media galleries ↵vandebo@chromium.org2013-07-311-4/+4
| | | | | | | | | | | | subdirectories. Also, update OWNERS files in those subdirectories. BUG=NONE Review URL: https://chromiumcodereview.appspot.com/20409003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214574 0039d316-1c4b-4281-b951-d872f2087c98
* Move nacl_defines to build/nacl_defines.gypi.yael.aharon@chromium.org2013-07-301-45/+1
| | | | | | | | | | | | | | | Remove the definition of nacl_defines from chrome.gyp. This will allow including these defines in other gyp files which are not in the chrome layer. This is part of an effort to componentize NaCl code. BUG=244791 R=jam@chromium.org, mseaborn@chromium.org Review URL: https://codereview.chromium.org/20550003 Patch from Yael Aharon <yael.aharon@intel.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214344 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Android build after https://codereview.chromium.org/20401002phajdan.jr@chromium.org2013-07-261-0/+3
| | | | | | | | | | TBR=thestig BUG=none Review URL: https://codereview.chromium.org/20603003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213734 0039d316-1c4b-4281-b951-d872f2087c98