| Index: third_party/ced/BUILD.gn
|
| diff --git a/third_party/ced/BUILD.gn b/third_party/ced/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..86b2f8553c6966f5630537a1bdcf8ff35a3bca19
|
| --- /dev/null
|
| +++ b/third_party/ced/BUILD.gn
|
| @@ -0,0 +1,76 @@
|
| +# Copyright 2016 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.
|
| +
|
| +import("//testing/test.gni")
|
| +
|
| +config("ced_config") {
|
| + include_dirs = [ "src" ]
|
| + if (is_clang) {
|
| + cflags = [ "-Wno-unused-function" ]
|
| + }
|
| +}
|
| +
|
| +source_set("ced") {
|
| + sources = [
|
| + "src/compact_enc_det/compact_enc_det.cc",
|
| + "src/compact_enc_det/compact_enc_det.h",
|
| + "src/compact_enc_det/compact_enc_det_generated_tables.h",
|
| + "src/compact_enc_det/compact_enc_det_generated_tables2.h",
|
| + "src/compact_enc_det/compact_enc_det_hint_code.cc",
|
| + "src/compact_enc_det/compact_enc_det_hint_code.h",
|
| + "src/util/basictypes.h",
|
| + "src/util/build_config.h",
|
| + "src/util/commandlineflags.h",
|
| + "src/util/encodings/encodings.cc",
|
| + "src/util/encodings/encodings.h",
|
| + "src/util/encodings/encodings.pb.h",
|
| + "src/util/languages/languages.cc",
|
| + "src/util/languages/languages.h",
|
| + "src/util/languages/languages.pb.h",
|
| + "src/util/logging.h",
|
| + "src/util/port.h",
|
| + "src/util/string_util.h",
|
| + "src/util/varsetter.h",
|
| + ]
|
| +
|
| + configs -= [ "//build/config/compiler:chromium_code" ]
|
| + configs += [ "//build/config/compiler:no_chromium_code" ]
|
| +
|
| + public_configs = [ ":ced_config" ]
|
| +
|
| + if (is_win) {
|
| + defines = [ "COMPILER_MSVC" ]
|
| + cflags = [
|
| + "/wd4005", # Macro defined twice.
|
| + "/wd4006", # #undef expected an identifier.
|
| + "/wd4309", # Truncation of constant value.
|
| + ]
|
| + } else {
|
| + defines = [ "COMPILER_GCC" ]
|
| + }
|
| +}
|
| +
|
| +test("ced_unittests") {
|
| + sources = [
|
| + "src/compact_enc_det/compact_enc_det_fuzz_test.cc",
|
| + "src/compact_enc_det/compact_enc_det_unittest.cc",
|
| + "src/compact_enc_det/detail_head_string.inc",
|
| + ]
|
| +
|
| + if (is_win) {
|
| + defines = [ "COMPILER_MSVC" ]
|
| + cflags = [
|
| + "/wd4310", # Truncation of constant value.
|
| + "/wd4267", # size_t -> int
|
| + ]
|
| + } else {
|
| + defines = [ "COMPILER_GCC" ]
|
| + }
|
| +
|
| + deps = [
|
| + ":ced",
|
| + "//testing/gtest",
|
| + "//testing/gtest:gtest_main",
|
| + ]
|
| +}
|
|
|