summaryrefslogtreecommitdiffstats
path: root/chromeos/DEPS
Commit message (Collapse)AuthorAgeFilesLines
* Enable Enterprise enrollment on desktop builds.joaodasilva@chromium.org2014-05-021-0/+2
| | | | | | | | | | | | | | | | | | | | | Note: this is a reland of https://codereview.chromium.org/258743005 This change implements some of the DBus stub methods so that enterprise enrollment works on desktop builds. That will make development of features that depend on enrollment faster for developers that use this workflow (e.g. for kiosk enterprise apps, public accounts, testing some device policies, etc). - Override some of the directories and files involved with the enrollment state - Simple stub implementation of the DBus calls involved - Write a persistent cache of the install attributes - Cleaned up the stub for user cloud policy and made them persistent too - Updated some tests This change doesn't affect production code. TBR=jochen@chromium.org BUG=240269, 367674 Review URL: https://codereview.chromium.org/264943011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267861 0039d316-1c4b-4281-b951-d872f2087c98
* Revert of Enable Enterprise enrollment on desktop builds. ↵falken@chromium.org2014-05-021-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (https://codereview.chromium.org/258743005/) Reason for revert: It seems to have broken the following test from base_unittests and unit_tests on chromium.webkit Android Tests (dbg) builder: PathServiceTest.Override Log: http://build.chromium.org/p/chromium.webkit/builders/Android%20Tests%20%28dbg%29/builds/18922 Snippet from log: C 237s Main [FAIL] PathServiceTest.Override: C 237s Main ../../base/path_service_unittest.cc:184: Failure C 237s Main Value of: PathService::OverrideAndCreateIfNeeded(my_special_key, non_existent, false, false) C 237s Main Actual: true C 237s Main Expected: false Original issue's description: > Enable Enterprise enrollment on desktop builds. > > This change implements some of the DBus stub methods so that enterprise enrollment works on desktop builds. That will make development of features that depend on enrollment faster for developers that use this workflow (e.g. for kiosk enterprise apps, public accounts, testing some device policies, etc). > > - Override some of the directories and files involved with the enrollment state > - Simple stub implementation of the DBus calls involved > - Write a persistent cache of the install attributes > - Cleaned up the stub for user cloud policy and made them persistent too > - Updated some tests > > This change doesn't affect production code. > > TBR=jochen@chromium.org > BUG=240269, 367674 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=267640 TBR=brettw@chromium.org,nkostylev@chromium.org,pastarmovj@chromium.org,satorux@chromium.org,jochen@chromium.org,joaodasilva@chromium.org NOTREECHECKS=true NOTRY=true BUG=240269, 367674 Review URL: https://codereview.chromium.org/265013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267761 0039d316-1c4b-4281-b951-d872f2087c98
* Enable Enterprise enrollment on desktop builds.joaodasilva@chromium.org2014-05-011-0/+2
| | | | | | | | | | | | | | | | | | | This change implements some of the DBus stub methods so that enterprise enrollment works on desktop builds. That will make development of features that depend on enrollment faster for developers that use this workflow (e.g. for kiosk enterprise apps, public accounts, testing some device policies, etc). - Override some of the directories and files involved with the enrollment state - Simple stub implementation of the DBus calls involved - Write a persistent cache of the install attributes - Cleaned up the stub for user cloud policy and made them persistent too - Updated some tests This change doesn't affect production code. TBR=jochen@chromium.org BUG=240269, 367674 Review URL: https://codereview.chromium.org/258743005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267640 0039d316-1c4b-4281-b951-d872f2087c98
* x11: Create a gfx_x11 component.sadrul@chromium.org2014-04-151-1/+2
| | | | | | | | | | | | | | | | | | | Separate out the X11 related code in gfx into a separate gfx_x11 component that only depends on gfx_geometry. This change makes it possible to add a dependency on gfx_x11 without pulling in a lot of additional dependencies on chromeos/. With this updated dependency, use gfx::GetXDisplay() to get to the X11 connection without having to depend on the message-pump inside chromeos/. BUG=354062 R=derat@chromium.org, sky@chromium.org Previously landed in r263718, but reverted in r263734 because it caused linking errors for some tests. Review URL: https://codereview.chromium.org/225803003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263768 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 263718 "x11: Create a gfx_x11 component."fischman@chromium.org2014-04-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Reason for revert: along with 263726 blamed for http://build.chromium.org/p/chromium.linux/builders/Linux%20Tests%20%28dbg%29%282%29/builds/45298 http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20Tests%20%28dbg%29%281%29/builds/29956 > x11: Create a gfx_x11 component. > > Separate out the X11 related code in gfx into a separate gfx_x11 component > that only depends on gfx_geometry. This change makes it possible to add a > dependency on gfx_x11 without pulling in a lot of additional dependencies > on chromeos/. With this updated dependency, use gfx::GetXDisplay() to get > to the X11 connection without having to depend on the message-pump inside > chromeos/. > > BUG=354062 > R=derat@chromium.org, sky@chromium.org > > Review URL: https://codereview.chromium.org/225803003 TBR=sadrul@chromium.org Review URL: https://codereview.chromium.org/237873004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263734 0039d316-1c4b-4281-b951-d872f2087c98
* x11: Create a gfx_x11 component.sadrul@chromium.org2014-04-141-1/+2
| | | | | | | | | | | | | | | | Separate out the X11 related code in gfx into a separate gfx_x11 component that only depends on gfx_geometry. This change makes it possible to add a dependency on gfx_x11 without pulling in a lot of additional dependencies on chromeos/. With this updated dependency, use gfx::GetXDisplay() to get to the X11 connection without having to depend on the message-pump inside chromeos/. BUG=354062 R=derat@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/225803003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263718 0039d316-1c4b-4281-b951-d872f2087c98
* Read and expose accelerometer values from cros-ec-accel trigger.flackr@chromium.org2014-04-031-0/+1
| | | | | | | | BUG=342907 Review URL: https://codereview.chromium.org/200643005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@261317 0039d316-1c4b-4281-b951-d872f2087c98
* Move chromeos/display/* to ui/display/chromeosdnicoara@chromium.org2014-03-141-1/+0
| | | | | | | | | | TBR=darin@chromium.org BUG=333413 Review URL: https://codereview.chromium.org/192483007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257197 0039d316-1c4b-4281-b951-d872f2087c98
* Moving display constants from OutputConfigurator to ui/displaydnicoara@chromium.org2014-02-121-0/+1
| | | | | | | | | | | | Before defining DisplayMode, DisplaySnapshot, NativeDisplayDelegate, etc. in ui/display and updating OutputConfigurator to use these components, moving all the enums required by these components. BUG=333413 Review URL: https://codereview.chromium.org/154613002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250713 0039d316-1c4b-4281-b951-d872f2087c98
* This moves the ONC parsing code into chromeos/network/oncgspencer@chromium.org2012-12-111-0/+1
| | | | | | | | | | | | | | | | so that it can be used there without violating dependency rules. (Using the "refactoring" OWNERS TBR rule...) BUG=none TEST=ran unit tests TBR=jhawkins@chromium.org Review URL: https://chromiumcodereview.appspot.com/11299236 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172446 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Stop checking out Libcroshashimoto@chromium.org2012-06-251-1/+0
| | | | | | | | | | BUG=127051 TEST=git try -c -b linux_chromeos,cros_x86 Review URL: https://chromiumcodereview.appspot.com/10621002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143873 0039d316-1c4b-4281-b951-d872f2087c98
* Move chromeos::GetInterfacesFromIntrospectResult into IntrospectableClienthashimoto@chromium.org2012-05-301-0/+1
| | | | | | | | | | | | Since XmlReader was moved from chrome/ to third_party/libxml/, now chromeos/ can depend on it. BUG=119583 TEST=chromeos_unittests Review URL: https://chromiumcodereview.appspot.com/10440013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139520 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos top directoryoshima@chromium.org2012-03-211-0/+5
BUG=119298 TEST=none Review URL: https://chromiumcodereview.appspot.com/9823001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128074 0039d316-1c4b-4281-b951-d872f2087c98