[Sync] Componentize UIModelWorker.
[chromium-blink-merge.git] / components / compression / BUILD.gn
blobe35fe238c426047a8f75857dc2ee19da23990f2f
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
3 # found in the LICENSE file.
5 # GYP version: components/compression.gypi:compression
6 source_set("compression") {
7   sources = [
8     "compression_utils.cc",
9     "compression_utils.h",
10   ]
11   deps = [
12     "//base",
13     "//third_party/zlib",
14   ]
17 source_set("unit_tests") {
18   testonly = true
19   sources = [
20     "compression_utils_unittest.cc",
21   ]
22   deps = [
23     ":compression",
24     "//testing/gtest",
25   ]