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

Side by Side Diff: third_party/protobuf/BUILD.gn

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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 if (is_win) { 5 if (is_win) {
6 config_h_dir = "vsprojects" 6 config_h_dir = "vsprojects"
7 } else { 7 } else {
8 config_h_dir = "." 8 config_h_dir = "."
9 } 9 }
10 10
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 "src/google/protobuf/io/zero_copy_stream_impl_lite.h", 52 "src/google/protobuf/io/zero_copy_stream_impl_lite.h",
53 "src/google/protobuf/message_lite.cc", 53 "src/google/protobuf/message_lite.cc",
54 "src/google/protobuf/message_lite.h", 54 "src/google/protobuf/message_lite.h",
55 "src/google/protobuf/repeated_field.cc", 55 "src/google/protobuf/repeated_field.cc",
56 "src/google/protobuf/repeated_field.h", 56 "src/google/protobuf/repeated_field.h",
57 "src/google/protobuf/stubs/atomicops.h", 57 "src/google/protobuf/stubs/atomicops.h",
58 "src/google/protobuf/stubs/atomicops_internals_arm_gcc.h", 58 "src/google/protobuf/stubs/atomicops_internals_arm_gcc.h",
59 "src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h", 59 "src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h",
60 "src/google/protobuf/stubs/atomicops_internals_macosx.h", 60 "src/google/protobuf/stubs/atomicops_internals_macosx.h",
61 "src/google/protobuf/stubs/atomicops_internals_mips_gcc.h", 61 "src/google/protobuf/stubs/atomicops_internals_mips_gcc.h",
62 "src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc",
63 "src/google/protobuf/stubs/atomicops_internals_x86_gcc.h", 62 "src/google/protobuf/stubs/atomicops_internals_x86_gcc.h",
64 "src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc", 63 "src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc",
65 "src/google/protobuf/stubs/atomicops_internals_x86_msvc.h", 64 "src/google/protobuf/stubs/atomicops_internals_x86_msvc.h",
66 "src/google/protobuf/stubs/common.cc", 65 "src/google/protobuf/stubs/common.cc",
67 "src/google/protobuf/stubs/common.h", 66 "src/google/protobuf/stubs/common.h",
68 "src/google/protobuf/stubs/hash.h", 67 "src/google/protobuf/stubs/hash.h",
69 "src/google/protobuf/stubs/map-util.h", 68 "src/google/protobuf/stubs/map-util.h",
70 "src/google/protobuf/stubs/once.cc", 69 "src/google/protobuf/stubs/once.cc",
71 "src/google/protobuf/stubs/once.h", 70 "src/google/protobuf/stubs/once.h",
72 "src/google/protobuf/stubs/platform_macros.h", 71 "src/google/protobuf/stubs/platform_macros.h",
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 configs -= [ "//build/config/win:lean_and_mean" ] 250 configs -= [ "//build/config/win:lean_and_mean" ]
252 } 251 }
253 252
254 cflags = protobuf_lite_cflags 253 cflags = protobuf_lite_cflags
255 254
256 deps = [ 255 deps = [
257 ":protobuf_full", 256 ":protobuf_full",
258 ] 257 ]
259 } 258 }
260 } 259 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698