diff options
Diffstat (limited to 'chromium/components/web_cache/browser/BUILD.gn')
-rw-r--r-- | chromium/components/web_cache/browser/BUILD.gn | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chromium/components/web_cache/browser/BUILD.gn b/chromium/components/web_cache/browser/BUILD.gn new file mode 100644 index 00000000000..b9ba85bd634 --- /dev/null +++ b/chromium/components/web_cache/browser/BUILD.gn @@ -0,0 +1,20 @@ +# Copyright 2014 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. + +static_library("browser") { + output_name = "web_cache_browser" + sources = [ + "web_cache_manager.cc", + "web_cache_manager.h", + ] + + configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] + + deps = [ + "//base", + "//components/web_cache/common", + "//content/public/browser", + "//third_party/WebKit/public:blink", + ] +} |