forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcipd.yaml
24 lines (21 loc) · 1007 Bytes
/
cipd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2017 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.
# To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:$(cat version.txt)
# See ./BUILD.gn for why we have a -android.jar version.
# Example for updating guava in the current dir:
# Run:
# cipd auth-login
# rm lib/guava.jar lib/guava-android.jar
# wget https://repo1.maven.org/maven2/com/google/guava/guava/23.0-android/guava-23.0-android.jar -O lib/guava-android.jar
# wget https://repo1.maven.org/maven2/com/google/guava/guava/23.0/guava-23.0.jar -O lib/guava.jar
# cipd create --pkg-def cipd.yaml -tag version:23.0-cr0
# Manually update:
# README.chromium (version number)
# src/build/cipd/android/android.ensure (guava version tag)
package: chromium/third_party/guava
description: guava java library
data:
- file: lib/guava.jar
- file: lib/guava-android.jar