| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 | 2 |
| 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # NOTES | 7 # NOTES |
| 8 # | 8 # |
| 9 # This file must exist both in trunk and trunk/src, since some users sync | 9 # This file must exist both in trunk and trunk/src, since some users sync |
| 10 # trunk and some sync src. (In the end, src will win, since src-internal will | 10 # trunk and some sync src. (In the end, src will win, since src-internal will |
| 11 # be in a different repo.) | 11 # be in a different repo.) |
| 12 # | 12 # |
| 13 # Source packages should go into | 13 # Source packages should go into |
| 14 # _third_party_base + "PACKAGENAME/files" | 14 # _third_party_base + "PACKAGENAME/files" |
| 15 # so that we can put our build wrapper and/or patches for each package into | 15 # so that we can put our build wrapper and/or patches for each package into |
| 16 # _third_party_base + "PACKAGENAME" | 16 # _third_party_base + "PACKAGENAME" |
| 17 # (DEPS must point to empty subdirectories) | 17 # (DEPS must point to empty subdirectories) |
| 18 # | 18 # |
| 19 # No trailing backslash when specifying SVN paths. That confuses gclient and | 19 # No trailing backslash when specifying SVN paths. That confuses gclient and |
| 20 # causes it to re-download the files each time. | 20 # causes it to re-download the files each time. |
| 21 | 21 |
| 22 use_relative_paths=True | 22 use_relative_paths=True |
| 23 use_relative_urls2=True | 23 use_relative_urls2=True |
| 24 | 24 |
| 25 # Base is prefixed with "src/" if this is trunk/DEPS, or "" if this | 25 # Base is prefixed with "src/" if this is trunk/DEPS, or "" if this |
| 26 # is trunk/src/DEPS. | 26 # is trunk/src/DEPS. |
| 27 _third_party_base = "src/third_party/" | 27 _third_party_base = "src/third_party/" |
| 28 _platform_base = "src/platform/" | 28 _platform_base = "src/platform/" |
| 29 _overlays_base = "src/overlays/" | |
| 30 | 29 |
| 31 vars = { | 30 vars = { |
| 32 "chromium_revision": "36775", | 31 "chromium_revision": "36775", |
| 33 } | 32 } |
| 34 | 33 |
| 35 deps = { | 34 deps = { |
| 36 # cros | 35 # cros |
| 37 _platform_base + "cros": "/cros.git", | 36 _platform_base + "cros": "/cros.git", |
| 38 | 37 |
| 39 # login_manager | 38 # login_manager |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 127 |
| 129 # portage | 128 # portage |
| 130 _third_party_base + "portage": "/portage.git", | 129 _third_party_base + "portage": "/portage.git", |
| 131 | 130 |
| 132 # chromiumos-overlay | 131 # chromiumos-overlay |
| 133 _third_party_base + "chromiumos-overlay": "/chromiumos-overlay.git", | 132 _third_party_base + "chromiumos-overlay": "/chromiumos-overlay.git", |
| 134 | 133 |
| 135 # laptop mode tools | 134 # laptop mode tools |
| 136 _third_party_base + "laptop-mode-tools": "/laptop-mode-tools.git", | 135 _third_party_base + "laptop-mode-tools": "/laptop-mode-tools.git", |
| 137 | 136 |
| 138 # board overlays, please keep sorted alphabetically | |
| 139 _overlays_base + "overlay-arm-generic": "/overlay-arm-generic.git", | |
| 140 _overlays_base + "overlay-beagleboard": "/overlay-beagleboard.git", | |
| 141 _overlays_base + "overlay-st1q": "/overlay-st1q.git", | |
| 142 _overlays_base + "overlay-tegra2-dev-board": "/overlay-tegra2-dev-board.git"
, | |
| 143 _overlays_base + "overlay-x86-generic": "/overlay-x86-generic.git", | |
| 144 | |
| 145 # ModemManager | 137 # ModemManager |
| 146 _third_party_base + "modemmanager": "/modemmanager.git", | 138 _third_party_base + "modemmanager": "/modemmanager.git", |
| 147 } | 139 } |
| OLD | NEW |