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

Side by Side Diff: util/util.gyp

Issue 467103002: Add InRangeCast<> and its test (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Switch from [u]ll constants to correct [U]INT64_C() constants Created 6 years, 4 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 | « util/numeric/in_range_cast_test.cc ('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
1 # Copyright 2014 The Crashpad Authors. All rights reserved. 1 # Copyright 2014 The Crashpad Authors. All rights reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 20 matching lines...) Expand all
31 'file/file_writer.cc', 31 'file/file_writer.cc',
32 'file/file_writer.h', 32 'file/file_writer.h',
33 'file/string_file_writer.cc', 33 'file/string_file_writer.cc',
34 'file/string_file_writer.h', 34 'file/string_file_writer.h',
35 'mac/launchd.h', 35 'mac/launchd.h',
36 'mac/launchd.mm', 36 'mac/launchd.mm',
37 'mach/task_memory.cc', 37 'mach/task_memory.cc',
38 'mach/task_memory.h', 38 'mach/task_memory.h',
39 'misc/uuid.cc', 39 'misc/uuid.cc',
40 'misc/uuid.h', 40 'misc/uuid.h',
41 'numeric/in_range_cast.h',
42 'numeric/safe_assignment.h',
Robert Sesek 2014/08/14 20:35:52 ?
Mark Mentovai 2014/08/14 23:00:41 The file was checked in 995012534e34 (https://code
41 'stdlib/cxx.h', 43 'stdlib/cxx.h',
42 'stdlib/objc.h', 44 'stdlib/objc.h',
43 'stdlib/strlcpy.cc', 45 'stdlib/strlcpy.cc',
44 'stdlib/strlcpy.h', 46 'stdlib/strlcpy.h',
45 ], 47 ],
46 }, 48 },
47 { 49 {
48 'target_name': 'util_test_lib', 50 'target_name': 'util_test_lib',
49 'type': 'static_library', 51 'type': 'static_library',
50 'dependencies': [ 52 'dependencies': [
(...skipping 23 matching lines...) Expand all
74 ], 76 ],
75 'include_dirs': [ 77 'include_dirs': [
76 '..', 78 '..',
77 ], 79 ],
78 'sources': [ 80 'sources': [
79 '../third_party/gtest/gtest/src/gtest_main.cc', 81 '../third_party/gtest/gtest/src/gtest_main.cc',
80 'file/string_file_writer_test.cc', 82 'file/string_file_writer_test.cc',
81 'mac/launchd_test.mm', 83 'mac/launchd_test.mm',
82 'mach/task_memory_test.cc', 84 'mach/task_memory_test.cc',
83 'misc/uuid_test.cc', 85 'misc/uuid_test.cc',
86 'numeric/in_range_cast_test.cc',
84 'stdlib/strlcpy_test.cc', 87 'stdlib/strlcpy_test.cc',
85 ], 88 ],
86 }, 89 },
87 ], 90 ],
88 } 91 }
OLDNEW
« no previous file with comments | « util/numeric/in_range_cast_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698