1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 package org.chromium.base.test.util;
6 
7 import java.lang.annotation.ElementType;
8 import java.lang.annotation.Inherited;
9 import java.lang.annotation.Retention;
10 import java.lang.annotation.RetentionPolicy;
11 import java.lang.annotation.Target;
12 
13 @Inherited
14 @Retention(RetentionPolicy.RUNTIME)
15 @Target({ElementType.METHOD, ElementType.TYPE})
16 public @interface MinAndroidSdkLevel {
value()17     int value() default 0;
18 }
19 
20