Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: devil/devil/android/sdk/version_codes.py

Issue 2996113002: [devil] Add O version code. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Android SDK version codes. 5 """Android SDK version codes.
6 6
7 http://developer.android.com/reference/android/os/Build.VERSION_CODES.html 7 http://developer.android.com/reference/android/os/Build.VERSION_CODES.html
8 """ 8 """
9 9
10 JELLY_BEAN = 16 10 JELLY_BEAN = 16
11 JELLY_BEAN_MR1 = 17 11 JELLY_BEAN_MR1 = 17
12 JELLY_BEAN_MR2 = 18 12 JELLY_BEAN_MR2 = 18
13 KITKAT = 19 13 KITKAT = 19
14 KITKAT_WATCH = 20 14 KITKAT_WATCH = 20
15 LOLLIPOP = 21 15 LOLLIPOP = 21
16 LOLLIPOP_MR1 = 22 16 LOLLIPOP_MR1 = 22
17 MARSHMALLOW = 23 17 MARSHMALLOW = 23
18 NOUGAT = 24 18 NOUGAT = 24
19 NOUGAT_MR1 = 25 19 NOUGAT_MR1 = 25
20 20 O = 26
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698