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

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

Issue 2103793005: [ced] Suppress a compiler warning on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | 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
1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. 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 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 { 5 {
6 'includes': [ 6 'includes': [
7 '../../build/win_precompile.gypi', 7 '../../build/win_precompile.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 29 matching lines...) Expand all
40 'src', 40 'src',
41 ], 41 ],
42 }, 42 },
43 'conditions': [ 43 'conditions': [
44 ['OS=="win"', { 44 ['OS=="win"', {
45 'direct_dependent_settings': { 45 'direct_dependent_settings': {
46 'defines': [ 46 'defines': [
47 'COMPILER_MSVC', 47 'COMPILER_MSVC',
48 ], 48 ],
49 }, 49 },
50 'msvs_disabled_warnings': [4005, 4006, 4244, 4309, 4800, 4267], 50 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800, 4267],
51 }, { 51 }, {
52 'direct_dependent_settings': { 52 'direct_dependent_settings': {
53 'defines': [ 53 'defines': [
54 'COMPILER_GCC', 54 'COMPILER_GCC',
55 ], 55 ],
56 }, 56 },
57 }], 57 }],
58 ], 58 ],
59 }, 59 },
60 { 60 {
61 'target_name': 'ced_unittests', 61 'target_name': 'ced_unittests',
62 'type': 'executable', 62 'type': 'executable',
63 'dependencies': [ 63 'dependencies': [
64 '<(DEPTH)/testing/gtest.gyp:gtest', 64 '<(DEPTH)/testing/gtest.gyp:gtest',
65 '<(DEPTH)/testing/gtest.gyp:gtest_main', 65 '<(DEPTH)/testing/gtest.gyp:gtest_main',
66 'ced', 66 'ced',
67 ], 67 ],
68 'include_dirs': [ 68 'include_dirs': [
69 '<(DEPTH)', 69 '<(DEPTH)',
70 ], 70 ],
71 'sources': [ 71 'sources': [
72 "src/compact_enc_det/compact_enc_det_fuzz_test.cc", 72 "src/compact_enc_det/compact_enc_det_fuzz_test.cc",
73 "src/compact_enc_det/compact_enc_det_unittest.cc", 73 "src/compact_enc_det/compact_enc_det_unittest.cc",
74 ], 74 ],
75 }, 75 },
76 ], 76 ],
77 } 77 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698