| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//extensions/features/features.gni") |
| 6 | 7 |
| 7 assert(enable_extensions) | 8 assert(enable_extensions) |
| 8 | 9 |
| 9 source_set("utility") { | 10 source_set("utility") { |
| 10 sources = [ | 11 sources = [ |
| 11 "unpacker.cc", | 12 "unpacker.cc", |
| 12 "unpacker.h", | 13 "unpacker.h", |
| 13 "utility_handler.cc", | 14 "utility_handler.cc", |
| 14 "utility_handler.h", | 15 "utility_handler.h", |
| 15 ] | 16 ] |
| (...skipping 18 matching lines...) Expand all Loading... |
| 34 ":utility", | 35 ":utility", |
| 35 "//base", | 36 "//base", |
| 36 "//extensions:test_support", | 37 "//extensions:test_support", |
| 37 "//extensions/common", | 38 "//extensions/common", |
| 38 "//extensions/strings", | 39 "//extensions/strings", |
| 39 "//testing/gtest", | 40 "//testing/gtest", |
| 40 "//third_party/zlib:zip", | 41 "//third_party/zlib:zip", |
| 41 "//ui/base", | 42 "//ui/base", |
| 42 ] | 43 ] |
| 43 } | 44 } |
| OLD | NEW |