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

Side by Side Diff: third_party/protobuf/cmake/libprotobuf-lite.cmake

Issue 1322483002: Revert https://codereview.chromium.org/1291903002 (protobuf roll). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
(Empty)
1 set(libprotobuf_lite_files
2 ${protobuf_source_dir}/src/google/protobuf/arena.cc
3 ${protobuf_source_dir}/src/google/protobuf/arenastring.cc
4 ${protobuf_source_dir}/src/google/protobuf/extension_set.cc
5 ${protobuf_source_dir}/src/google/protobuf/generated_message_util.cc
6 ${protobuf_source_dir}/src/google/protobuf/io/coded_stream.cc
7 ${protobuf_source_dir}/src/google/protobuf/io/zero_copy_stream.cc
8 ${protobuf_source_dir}/src/google/protobuf/io/zero_copy_stream_impl_lite.cc
9 ${protobuf_source_dir}/src/google/protobuf/message_lite.cc
10 ${protobuf_source_dir}/src/google/protobuf/repeated_field.cc
11 ${protobuf_source_dir}/src/google/protobuf/stubs/atomicops_internals_x86_gcc.c c
12 ${protobuf_source_dir}/src/google/protobuf/stubs/atomicops_internals_x86_msvc. cc
13 ${protobuf_source_dir}/src/google/protobuf/stubs/bytestream.cc
14 ${protobuf_source_dir}/src/google/protobuf/stubs/common.cc
15 ${protobuf_source_dir}/src/google/protobuf/stubs/once.cc
16 ${protobuf_source_dir}/src/google/protobuf/stubs/status.cc
17 ${protobuf_source_dir}/src/google/protobuf/stubs/statusor.cc
18 ${protobuf_source_dir}/src/google/protobuf/stubs/stringpiece.cc
19 ${protobuf_source_dir}/src/google/protobuf/stubs/stringprintf.cc
20 ${protobuf_source_dir}/src/google/protobuf/stubs/strutil.cc
21 ${protobuf_source_dir}/src/google/protobuf/stubs/time.cc
22 ${protobuf_source_dir}/src/google/protobuf/wire_format_lite.cc
23 )
24
25 add_library(libprotobuf-lite ${libprotobuf_lite_files})
26 target_link_libraries(libprotobuf-lite ${CMAKE_THREAD_LIBS_INIT})
27 target_include_directories(libprotobuf-lite PUBLIC ${protobuf_source_dir}/src)
28 set_target_properties(libprotobuf-lite PROPERTIES
29 COMPILE_DEFINITIONS LIBPROTOBUF_EXPORTS
30 OUTPUT_NAME ${LIB_PREFIX}protobuf-lite)
OLDNEW
« no previous file with comments | « third_party/protobuf/cmake/libprotobuf.cmake ('k') | third_party/protobuf/cmake/libprotoc.cmake » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698