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

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

Issue 1842653006: Update //third_party/protobuf to version 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 8 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/int128.cc
16 ${protobuf_source_dir}/src/google/protobuf/stubs/once.cc
17 ${protobuf_source_dir}/src/google/protobuf/stubs/status.cc
18 ${protobuf_source_dir}/src/google/protobuf/stubs/statusor.cc
19 ${protobuf_source_dir}/src/google/protobuf/stubs/stringpiece.cc
20 ${protobuf_source_dir}/src/google/protobuf/stubs/stringprintf.cc
21 ${protobuf_source_dir}/src/google/protobuf/stubs/structurally_valid.cc
22 ${protobuf_source_dir}/src/google/protobuf/stubs/strutil.cc
23 ${protobuf_source_dir}/src/google/protobuf/stubs/time.cc
24 ${protobuf_source_dir}/src/google/protobuf/wire_format_lite.cc
25 )
26
27 add_library(libprotobuf-lite ${protobuf_SHARED_OR_STATIC}
28 ${libprotobuf_lite_files})
29 target_link_libraries(libprotobuf-lite ${CMAKE_THREAD_LIBS_INIT})
30 target_include_directories(libprotobuf-lite PUBLIC ${protobuf_source_dir}/src)
31 if(MSVC AND protobuf_BUILD_SHARED_LIBS)
32 target_compile_definitions(libprotobuf-lite
33 PUBLIC PROTOBUF_USE_DLLS
34 PRIVATE LIBPROTOBUF_EXPORTS)
35 endif()
36 set_target_properties(libprotobuf-lite PROPERTIES
37 OUTPUT_NAME ${LIB_PREFIX}protobuf-lite
38 DEBUG_POSTFIX "${protobuf_DEBUG_POSTFIX}")
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