diff options
-rwxr-xr-x | chrome/browser/ui/libgtk2ui/PRESUBMIT.py | 14 | ||||
-rw-r--r-- | ui/aura/PRESUBMIT.py | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/chrome/browser/ui/libgtk2ui/PRESUBMIT.py b/chrome/browser/ui/libgtk2ui/PRESUBMIT.py new file mode 100755 index 0000000..8a35f36 --- /dev/null +++ b/chrome/browser/ui/libgtk2ui/PRESUBMIT.py @@ -0,0 +1,14 @@ +#!/usr/bin/python + +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Chromium presubmit script for src/chrome/browser/externsions. + +See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts +for more details on the presubmit API built into gcl. +""" + +def GetPreferredTrySlaves(): + return ['linux_aura'] diff --git a/ui/aura/PRESUBMIT.py b/ui/aura/PRESUBMIT.py index 8311e1c..335eae3 100644 --- a/ui/aura/PRESUBMIT.py +++ b/ui/aura/PRESUBMIT.py @@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl. """ def GetPreferredTrySlaves(): - return ['linux_chromeos'] + return ['linux_chromeos', 'linux_aura'] |