blob: e6d975a350a7b598c4364503d1ab1066fe32df96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2020 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.
if (is_android) {
import("//build/config/android/config.gni")
import("//build/config/android/rules.gni")
}
group("upboarding") {
deps = [ "//chrome/browser/upboarding/query_tiles" ]
}
group("unit_tests") {
testonly = true
deps = [ "//chrome/browser/upboarding/query_tiles:unit_tests" ]
}
if (is_android) {
java_group("java") {
deps = [ "query_tiles:query_tiles_java" ]
}
}
|