Adam Cozzette
30f446820d
Add endian.h to includes list ( #10057 )
...
Client code is breaking due to missing include. (endian.h was added in 9e09343
but didn't make it into this list, so it wasn't getting installed)
Co-authored-by: boscosiu <boscosiu@users.noreply.github.com>
3 years ago
boscosiu
f91b078abf
Add endian.h to includes list
...
Client code is breaking due to missing include. (endian.h was added in 9e09343
but didn't make it into this list, so it wasn't getting installed)
3 years ago
David L. Jones
7d48c4accd
Add forwarding lang_generator.h headers for cpp, java, and python. ( #9883 )
...
These filenames stutter, but are still being used by some users. So, these forward to the correct header. They should eventually be deprecated and removed.
3 years ago
Adam Cozzette
860f8ad171
Remove the JavaScript implementation ( #9874 )
...
This implementation is about to be split out into a separate Git repo.
3 years ago
David L. Jones
b012ef28b9
Regenerate cmake file lists.
3 years ago
Adam Cozzette
b20209f321
Sync from Piper @acozzette/proto_github_202203101748
...
PROTOBUF_SYNC_PIPER
3 years ago
Arfrever Frehtes Taifersar Arahesis
14cab5b909
Rename main cmake/CMakeLists.txt to CMakeLists.txt
...
Fixes : #9596
3 years ago
David L. Jones
3ab97ce830
Sync from Piper @429642851
...
PROTOBUF_SYNC_PIPER
3 years ago
Adam Cozzette
7f79a416ff
Update the file lists with ./update_file_lists.sh
3 years ago
Adam Cozzette
9488e2f8eb
Update cmake file lists ( #9038 )
...
I ran ./update_file_lists.sh to update these files.
3 years ago
David L. Jones
96d983a02e
Tweak update_file_lists.sh to handle changes to Makefile.am. ( #8965 )
3 years ago
Bo Yang
b9d6693545
Update BUILD and cmake files
3 years ago
Adam Cozzette
562fc946c7
Sync from Piper @388508285
...
PROTOBUF_SYNC_PIPER
3 years ago
Deanna Garcia
713f2d0008
Removing files that were added during rebasing
4 years ago
Deanna Garcia
6319a23bff
Run update_file_lists.sh
4 years ago
Joshua Haberman
45bb1d2feb
Added new file to build files.
4 years ago
Deanna Garcia
1b827fa114
Run update_file_lists.sh
4 years ago
Deanna Garcia
438d777e05
Adding file names to cmake files
4 years ago
Joshua Haberman
a633ad452d
Ran update_file_lists.sh to pick up arenastring.cc.
4 years ago
listonjesse
2ae7cf0e03
Auxillary -> Auxiliary
5 years ago
Yannic Bonenberger
27e85ab55d
Address review comments
5 years ago
Yannic Bonenberger
4979489451
Add test to verify BUILD- and cmake-files are in sync with src/Makefile.am
5 years ago
Adam Cozzette
582640ef31
Updated cmake path to io_win32.h ( #6397 )
...
Fixes #6382 .
5 years ago
Phillipp Schoppmann
8e5b2f1b82
Update file list for protobuf_lite
6 years ago
Adam Cozzette
e6779e9b2a
Added io_win32.h to header list in CMake config
...
This should fix #5717 and ensure that this header gets installed
properly on Windows.
6 years ago
Hao Nguyen
2f864fdfdf
Down integrate to Github
6 years ago
Adam Cozzette
81f6aa404c
Ran ./update_file_lists.sh to update CMake configuration
6 years ago
Abdel Younes
35aa9fdcbd
fix: cmake install
6 years ago
Markus Heß
6688b60c36
Windows: install missing headers
6 years ago
Feng Xiao
bde4eaf137
Update build files.
...
* Fixes https://github.com/google/protobuf/issues/5031
* Fixes https://github.com/google/protobuf/issues/5037
6 years ago
Corentin Le Molgat
2bd7f516e5
fix duplicate mkdir in update_file_lists.sh
...
- merge loop for .h and .proto includes
- fix shellcheck errors
7 years ago
Mizux
3ad8efc75b
Add .proto files to extract_includes.bat
...
For google/or-tools, on windows, we need to use `import "google/protobuf/wrappers.proto";` since we want "optional" int64 and in version3 POD get default value...
-> so we use "google.protobuf.Int64Value" since 0 is a valid value and different from "not set" for our use case.
7 years ago
Feng Xiao
d5a0024171
Remove javanano.
7 years ago
Adam Cozzette
0c5fcdee44
Removed some unused C++ source files
7 years ago
Adam Cozzette
0400cca323
Integrated internal changes from Google
7 years ago
Adam Cozzette
609d752650
Ran update_file_lists.sh to update Bazel and CMake file lists
...
This should fix Bazel builds, since those were missing a new file
(implicit_weak_message.cc).
7 years ago
Jisi Liu
181e284b55
Fix Atomic32/AtomicWord on some platforms.
...
- Removed the redefination in the atomicword_compat.h. Now Atomic32 will
alwyas be intptr_t in 32bit platforms, the bridge is no longer needed.
- Change NaCl 64bit to use intptr_t instead of int32 for Atomic32,
otherwise AtmoicWord APIs will miss the definations.
After this change, the AtmoicWord will always be either Atomic32 or
Atmoic64 depending on the platforms.
7 years ago
Jisi Liu
e177739fa2
Fix build files
7 years ago
Jisi Liu
759245a49a
Merge from master
7 years ago
Jisi Liu
1876a27e66
Update filelist again
7 years ago
Jisi Liu
11b6661e66
update build file list
7 years ago
Jisi Liu
09354db143
Merge from Google internal for 3.4 release
7 years ago
Laszlo Csomor
e05e777d46
Windows: support long paths
...
Add implementations of open(2), mkdir(2), stat(2),
etc. that support long paths under Windows (paths
longer than MAX_PATH in <windows.h>, which is 260
characters).
The implementations are in a separate namespace
(google::protobuf::internal::win32), so they won't
collide with the standard implementations in
<io.h>, but after importing them with `using` they
can be drop-in replacements.
Fixes https://github.com/bazelbuild/bazel/issues/2634
Fixes https://github.com/google/protobuf/issues/2891
8 years ago
yjjnls
8f367c0b2d
replenish missed header files in install step
...
install 'generated_message_table_driven.h' and 'metadata_lite.h', they are included when compiling the files generated using protoc.exe 3.3.0
8 years ago
Feng Xiao
8859c07a35
Add missing files to build files.
8 years ago
Feng Xiao
32d7830e4b
Fix C++ build for down-integration.
8 years ago
Feng Xiao
c94555f955
Double-quote file paths in extract_includes.bat.in
...
This allows the file path to contain spaces which is very common on
windows.
8 years ago
Jonathan Hseu
ef927cc428
Switch to gcc atomic intrinsics for macOS and delete the file that uses ( #2699 )
...
the deprecated atomics.
8 years ago
Jisi Liu
f92b455aa6
Add missing files.
8 years ago
Sergio Campama
e75cf40e8f
Fixing references to the removed atomicops_internals_pnacl.h file.
8 years ago