Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: tools/gn/secondary/sdch/BUILD.gn

Issue 308123006: Add GN build file for src/sdch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix include path Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdch/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/secondary/sdch/BUILD.gn
diff --git a/tools/gn/secondary/sdch/BUILD.gn b/tools/gn/secondary/sdch/BUILD.gn
deleted file mode 100644
index 73f3afb8d7cf232f43af785de3b815fc537344dc..0000000000000000000000000000000000000000
--- a/tools/gn/secondary/sdch/BUILD.gn
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright (c) 2013 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.
-
-config("sdch_config") {
- include_dirs = [ "open-vcdiff/src" ]
-}
-
-static_library("sdch") {
- sources = [
- "open-vcdiff/src/addrcache.cc",
- "open-vcdiff/src/blockhash.cc",
- "open-vcdiff/src/blockhash.h",
- "open-vcdiff/src/checksum.h",
- "open-vcdiff/src/codetable.cc",
- "open-vcdiff/src/codetable.h",
- "open-vcdiff/src/compile_assert.h",
- "open-vcdiff/src/decodetable.cc",
- "open-vcdiff/src/decodetable.h",
- "open-vcdiff/src/encodetable.cc",
- "open-vcdiff/src/encodetable.h",
- "open-vcdiff/src/google/output_string.h",
- "open-vcdiff/src/google/vcdecoder.h",
- "open-vcdiff/src/headerparser.cc",
- "open-vcdiff/src/headerparser.h",
- "open-vcdiff/src/instruction_map.cc",
- "open-vcdiff/src/instruction_map.h",
- "open-vcdiff/src/logging.cc",
- "open-vcdiff/src/logging.h",
- "open-vcdiff/src/rolling_hash.h",
- "open-vcdiff/src/testing.h",
- "open-vcdiff/src/varint_bigendian.cc",
- "open-vcdiff/src/varint_bigendian.h",
- "open-vcdiff/src/vcdecoder.cc",
- "open-vcdiff/src/vcdiff_defs.h",
- "open-vcdiff/src/vcdiffengine.cc",
- "open-vcdiff/src/vcdiffengine.h",
- "open-vcdiff/vsprojects/config.h",
- "open-vcdiff/vsprojects/stdint.h",
- ]
-
- direct_dependent_configs = [ ":sdch_config" ]
-
- if (is_linux || is_android) {
- include_dirs = [ "linux" ]
- } else if (is_ios) {
- include_dirs = [ "ios" ]
- } else if (is_mac) {
- include_dirs = [ "mac" ]
- } else if (is_win) {
- include_dirs = [ "win" ]
- }
-
- deps = [ "//third_party/zlib" ]
-
- if (is_clang) {
- cflags = [
- # TODO(mostynb): remove this if open-vcdiff is ever updated for c++11:
- "-Wno-deprecated-declarations",
- ]
- }
-}
« no previous file with comments | « sdch/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698