summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/DEPS
Commit message (Collapse)AuthorAgeFilesLines
* Moved bluetooth adapter files from chrome/browser/chromeos/bluetooth/ to ↵youngki@chromium.org2012-10-181-0/+1
| | | | | | | | | | | | device/bluetooth/. device/bluetooth/ is a new directory to host the bluetooth related files. I also changed the namespace from chromeos to bluetooth under new directory. BUG=135470 Review URL: https://chromiumcodereview.appspot.com/11075006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162811 0039d316-1c4b-4281-b951-d872f2087c98
* Tighten the restrictions on including webkit code from chrome/stuartmorgan@chromium.org2012-09-131-0/+1
| | | | | | | | | | | | | | | | | | This removes the chrome/DEPS allowances for including webkit/, adds temporary allowances in the subdirectories, and makes it clear that in most cases the allowance is temporary and should be removed. This is an incremental step toward disallowing use of webkit/ code directly from most chrome/ code (excepting specific subdirectories, most notably chrome/renderer/). BUG=146251 Review URL: https://chromiumcodereview.appspot.com/10905061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156521 0039d316-1c4b-4281-b951-d872f2087c98
* ChromeOS: login: Pass the use-cras option to guest mode.dgreid@chromium.org2012-05-271-0/+1
| | | | | | | | | | | | | | | | Pass the --use-cras (kUseCras) option to 'browse as guest' sessions. Before this the guest session would use the alsa plugin. BUG=chromium:129243 TEST=Manual, 'browse as guest', then play audio. Check that the audio server is being used (through logs or clients list in chrome://system). Signed-off-by: Dylan Reid <dgreid@chromium.org> Review URL: https://chromiumcodereview.appspot.com/10452005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139207 0039d316-1c4b-4281-b951-d872f2087c98
* Don't make checkdeps ignore includes to directories that are brought in via ↵jam@chromium.org2012-04-271-0/+1
| | | | | | | | deps. Most of these are already listed in DEPS files, and it seems that we want to prevent includes on them just like normal directories that are in our tree (otherwise content can depend on native_client, for ex) Review URL: https://chromiumcodereview.appspot.com/10248005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134296 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Add operations to monitor the screen orientation.cwolfe@chromium.org2011-09-151-0/+1
| | | | | | | | | | | | | | | | | This is intended to help test <http://codereview.chromium.org/7273073/>. These orientation-only functions will later be replaced with a generalized sensors API (after appropriate design review). Getting this pipeline working helps root out bugs and issues in the interim. BUG=None TEST=Inject orientation changes via dbus API. With <http://codereview.chromium.org/7845029/>, inject changes using dbus-send: dbus-send --system / org.chromium.Sensors.ScreenOrientationChanged int32:1 Review URL: http://codereview.chromium.org/7862020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101387 0039d316-1c4b-4281-b951-d872f2087c98
* Remove CRs from DEPs file and mark as eol-style LFrbyers@chromium.org2011-09-151-3/+3
| | | | | | | | | | | CRs in this file were making it impossible to apply patches to it in the commit and try bots. Removed CRs and marked with svn:eol-style LF property. BUG=None TEST=None Review URL: http://codereview.chromium.org/7906011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101340 0039d316-1c4b-4281-b951-d872f2087c98
* Checking in http://codereview.chromium.org/2806070 and ↵zelidrag@chromium.org2010-07-271-1/+0
| | | | | | | | | | | | | | | http://codereview.chromium.org/3028018 on behalf of zbehan@. third_party: add a stub cros directory and cros_api.gyp for libcros to satisfy gyp depdendencies cros: fix more of the third_party includes, forbid similar includes for future BUG=none TEST=make sure both chrome and chromeos builds are happy. TBR=zelidrag Review URL: http://codereview.chromium.org/3035021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53729 0039d316-1c4b-4281-b951-d872f2087c98
* Checking in CL http://www.codereview.chromium.org/2836058 on behalf of zbehan@:zelidrag@chromium.org2010-07-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | chrome: create an option for using libcros provided by the system; fix all includes referring to libcros to not include third_party/ * Headers fix is needed to support using system libcros (installed to /usr/include) * All includes are "", and therefore a local variant in third_party/cros/ is always preferred, but system will also get picked up as a secondary target * Fixed chrome/browser/chromeos/cros/synaptics_library.h comments to better reflect the header placement * Added a variable system_libcros defaulting to 0 * Gotten rid of duplicate cros_api.gyp * Changed both places to either link against cros_api or libcrosapi TEST=build in the following scenarios: 1) libcros not installed, libcros sources in third_party/, !defined system_libcros - sucess 2) installed libcros, put #error into /usr/include/cros/chromeos_cros_api.h, repeat 1) - success 3) BUILD_DEFINES+=system_libcros=1, removed libcros from third_party, repeat 2) - fail (on #error in chromeos_cros_api.h) 4) Installed clean libcros, repeat 3) - success Review URL: http://codereview.chromium.org/3043010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53288 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Make Chrome use enums from libcros to talk to WM.derat@chromium.org2010-04-291-1/+1
| | | | | | | | | | | | | | | | | | | | We currently have two copies of these enums, one in Chrome and one in Chrome OS. I'm switching us to have a single copy in the libcros repo. This reverts r45955, which reverted r45952. I've added third_party/cros to the browser directory's DEPS file to fix the checkdeps.py failure. http://codereview.chromium.org/1811002/show contains the review of the original change. BUG=none TEST=built it and ran checkdeps.py manually Review URL: http://codereview.chromium.org/1705017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45964 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r45952: broke checkdeps.willchan@chromium.org2010-04-291-1/+1
| | | | | | Review URL: http://codereview.chromium.org/1692017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45955 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Make Chrome use enums from libcros to talk to WM.derat@chromium.org2010-04-291-1/+1
| | | | | | | | | | | | | We currently have two copies of these enums, one in Chrome and one in Chrome OS. I'm switching us to have a single copy in the libcros repo. BUG=none TEST=built it Review URL: http://codereview.chromium.org/1811002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45952 0039d316-1c4b-4281-b951-d872f2087c98
* Remove svn:executable property from more files that don't need it.thestig@chromium.org2010-04-271-0/+0
| | | | | | Review URL: http://codereview.chromium.org/1723014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45659 0039d316-1c4b-4281-b951-d872f2087c98
* Change the DEPS to support a directory name change.davemoore@chromium.org2009-09-291-1/+1
| | | | | | Review URL: http://codereview.chromium.org/245044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27489 0039d316-1c4b-4281-b951-d872f2087c98
* Make chromeos build use shared object to load batterydavemoore@chromium.org2009-09-231-0/+3
functionality. Call into it and show new battery images Review URL: http://codereview.chromium.org/215025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26898 0039d316-1c4b-4281-b951-d872f2087c98