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

Side by Side Diff: third_party/ced/ced.gyp

Issue 2047993002: Initial repo setup for third party library CED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated sha-1 to fix build Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « third_party/ced/README.chromium ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2016 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.
4
5 {
6 'includes': [
7 '../../build/win_precompile.gypi',
8 ],
9 'targets': [
10 {
11 'target_name': 'ced',
12 'type': 'static_library',
13 'include_dirs': [
14 'src',
15 ],
16 'sources': [
17 "src/compact_enc_det/compact_enc_det.cc",
18 "src/compact_enc_det/compact_enc_det.h",
19 "src/compact_enc_det/compact_enc_det_generated_tables.h",
20 "src/compact_enc_det/compact_enc_det_generated_tables2.h",
21 "src/compact_enc_det/compact_enc_det_hint_code.cc",
22 "src/compact_enc_det/compact_enc_det_hint_code.h",
23 "src/compact_enc_det/detail_head_string.inc",
24 "src/util/basictypes.h",
25 "src/util/build_config.h",
26 "src/util/commandlineflags.h",
27 "src/util/encodings/encodings.cc",
28 "src/util/encodings/encodings.h",
29 "src/util/encodings/encodings.pb.h",
30 "src/util/languages/languages.cc",
31 "src/util/languages/languages.h",
32 "src/util/languages/languages.pb.h",
33 "src/util/logging.h",
34 "src/util/port.h",
35 "src/util/string_util.h",
36 "src/util/varsetter.h",
37 ],
38 'direct_dependent_settings': {
39 'include_dirs': [
40 'src',
41 ],
42 },
43 'conditions': [
44 ['OS=="win"', {
45 'direct_dependent_settings': {
46 'defines': [
47 'COMPILER_MSVC',
48 ],
49 },
50 'msvs_disabled_warnings': [4005, 4006, 4244, 4309, 4800, 4267],
51 }, {
52 'direct_dependent_settings': {
53 'defines': [
54 'COMPILER_GCC',
55 ],
56 },
57 }],
58 ],
59 },
60 {
61 'target_name': 'ced_unittests',
62 'type': 'executable',
63 'dependencies': [
64 '<(DEPTH)/testing/gtest.gyp:gtest',
65 '<(DEPTH)/testing/gtest.gyp:gtest_main',
66 'ced',
67 ],
68 'include_dirs': [
69 '<(DEPTH)',
70 ],
71 'sources': [
72 "src/compact_enc_det/compact_enc_det_fuzz_test.cc",
73 "src/compact_enc_det/compact_enc_det_unittest.cc",
74 ],
75 },
76 ],
77 }
OLDNEW
« no previous file with comments | « third_party/ced/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698