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

Side by Side Diff: third_party/protobuf/protobuf_lite.gypi

Issue 636783002: Use C++11 atomics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'sources': [ 6 'sources': [
7 'src/google/protobuf/stubs/atomicops.h', 7 'src/google/protobuf/stubs/atomicops.h',
8 'src/google/protobuf/stubs/atomicops_internals_arm_gcc.h', 8 'src/google/protobuf/stubs/atomicops_internals_arm_gcc.h',
9 'src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h', 9 'src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h',
10 'src/google/protobuf/stubs/atomicops_internals_macosx.h', 10 'src/google/protobuf/stubs/atomicops_internals_macosx.h',
11 'src/google/protobuf/stubs/atomicops_internals_mips_gcc.h', 11 'src/google/protobuf/stubs/atomicops_internals_mips_gcc.h',
12 'src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc',
13 'src/google/protobuf/stubs/atomicops_internals_x86_gcc.h', 12 'src/google/protobuf/stubs/atomicops_internals_x86_gcc.h',
14 'src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc', 13 'src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc',
15 'src/google/protobuf/stubs/atomicops_internals_x86_msvc.h', 14 'src/google/protobuf/stubs/atomicops_internals_x86_msvc.h',
16 'src/google/protobuf/stubs/common.h', 15 'src/google/protobuf/stubs/common.h',
17 'src/google/protobuf/stubs/once.h', 16 'src/google/protobuf/stubs/once.h',
18 'src/google/protobuf/stubs/platform_macros.h', 17 'src/google/protobuf/stubs/platform_macros.h',
19 'src/google/protobuf/extension_set.h', 18 'src/google/protobuf/extension_set.h',
20 'src/google/protobuf/generated_message_util.h', 19 'src/google/protobuf/generated_message_util.h',
21 'src/google/protobuf/message_lite.h', 20 'src/google/protobuf/message_lite.h',
22 'src/google/protobuf/repeated_field.h', 21 'src/google/protobuf/repeated_field.h',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 'src', 58 'src',
60 ], 59 ],
61 'defines': [ 60 'defines': [
62 'GOOGLE_PROTOBUF_NO_RTTI', 61 'GOOGLE_PROTOBUF_NO_RTTI',
63 'GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER', 62 'GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER',
64 ], 63 ],
65 # TODO(jschuh): http://crbug.com/167187 size_t -> int. 64 # TODO(jschuh): http://crbug.com/167187 size_t -> int.
66 'msvs_disabled_warnings': [ 4267 ], 65 'msvs_disabled_warnings': [ 4267 ],
67 }, 66 },
68 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698