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

Unified Diff: third_party/crashpad/crashpad/third_party/gtest/gmock.gyp

Issue 2710663006: Update Crashpad to 4a2043ea65e2641ef1a921801c0aaa15ada02fc7 (Closed)
Patch Set: Update Crashpad to 4a2043ea65e2 Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/crashpad/crashpad/third_party/gtest/gmock.gyp
diff --git a/third_party/crashpad/crashpad/third_party/gtest/gmock.gyp b/third_party/crashpad/crashpad/third_party/gtest/gmock.gyp
index 683b89e1470c47b359e60139ccfd4ff69d9a8d8f..466de6a9f751e46c42dba09c7650ce1c211af162 100644
--- a/third_party/crashpad/crashpad/third_party/gtest/gmock.gyp
+++ b/third_party/crashpad/crashpad/third_party/gtest/gmock.gyp
@@ -17,212 +17,190 @@
'../../build/crashpad_dependencies.gypi',
],
'conditions': [
- ['crashpad_dependencies!="chromium"', {
+ ['1==1', { # Defer processing until crashpad_dependencies is set
'variables': {
'conditions': [
['crashpad_dependencies=="standalone"', {
'gmock_dir': 'gtest/googlemock',
- }, {
+ }],
+ ['crashpad_dependencies=="external"', {
'gmock_dir': '../../../../gmock',
}],
],
},
- 'target_defaults': {
- # gmock relies heavily on objects with static storage duration.
- 'xcode_settings': {
- 'WARNING_CFLAGS!': [
- '-Wexit-time-destructors',
- ],
- },
- 'cflags!': [
- '-Wexit-time-destructors',
- ],
- },
+ }],
+ ],
+ 'target_defaults': {
+ # gmock relies heavily on objects with static storage duration.
+ 'xcode_settings': {
+ 'WARNING_CFLAGS!': [
+ '-Wexit-time-destructors',
+ ],
+ },
+ 'cflags!': [
+ '-Wexit-time-destructors',
+ ],
+ },
- 'targets': [
- {
- 'target_name': 'gmock',
- 'type': 'static_library',
- 'dependencies': [
- 'gtest.gyp:gtest',
- ],
- 'include_dirs': [
- '<(gmock_dir)',
- '<(gmock_dir)/include',
- ],
- 'sources': [
- '<(gmock_dir)/include/gmock/gmock-actions.h',
- '<(gmock_dir)/include/gmock/gmock-cardinalities.h',
- '<(gmock_dir)/include/gmock/gmock-generated-actions.h',
- '<(gmock_dir)/include/gmock/gmock-generated-function-mockers.h',
- '<(gmock_dir)/include/gmock/gmock-generated-matchers.h',
- '<(gmock_dir)/include/gmock/gmock-generated-nice-strict.h',
- '<(gmock_dir)/include/gmock/gmock-matchers.h',
- '<(gmock_dir)/include/gmock/gmock-more-actions.h',
- '<(gmock_dir)/include/gmock/gmock-more-matchers.h',
- '<(gmock_dir)/include/gmock/gmock-spec-builders.h',
- '<(gmock_dir)/include/gmock/gmock.h',
- '<(gmock_dir)/include/gmock/internal/custom/gmock-generated-actions.h',
- '<(gmock_dir)/include/gmock/internal/custom/gmock-matchers.h',
- '<(gmock_dir)/include/gmock/internal/custom/gmock-port.h',
- '<(gmock_dir)/include/gmock/internal/gmock-generated-internal-utils.h',
- '<(gmock_dir)/include/gmock/internal/gmock-internal-utils.h',
- '<(gmock_dir)/include/gmock/internal/gmock-port.h',
- '<(gmock_dir)/src/gmock-all.cc',
- '<(gmock_dir)/src/gmock-cardinalities.cc',
- '<(gmock_dir)/src/gmock-internal-utils.cc',
- '<(gmock_dir)/src/gmock-matchers.cc',
- '<(gmock_dir)/src/gmock-spec-builders.cc',
- '<(gmock_dir)/src/gmock.cc',
- ],
- 'sources!': [
- '<(gmock_dir)/src/gmock-all.cc',
- ],
+ 'targets': [
+ {
+ 'target_name': 'gmock',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'gtest.gyp:gtest',
+ ],
+ 'include_dirs': [
+ '<(gmock_dir)',
+ '<(gmock_dir)/include',
+ ],
+ 'sources': [
+ '<(gmock_dir)/include/gmock/gmock-actions.h',
+ '<(gmock_dir)/include/gmock/gmock-cardinalities.h',
+ '<(gmock_dir)/include/gmock/gmock-generated-actions.h',
+ '<(gmock_dir)/include/gmock/gmock-generated-function-mockers.h',
+ '<(gmock_dir)/include/gmock/gmock-generated-matchers.h',
+ '<(gmock_dir)/include/gmock/gmock-generated-nice-strict.h',
+ '<(gmock_dir)/include/gmock/gmock-matchers.h',
+ '<(gmock_dir)/include/gmock/gmock-more-actions.h',
+ '<(gmock_dir)/include/gmock/gmock-more-matchers.h',
+ '<(gmock_dir)/include/gmock/gmock-spec-builders.h',
+ '<(gmock_dir)/include/gmock/gmock.h',
+ '<(gmock_dir)/include/gmock/internal/custom/gmock-generated-actions.h',
+ '<(gmock_dir)/include/gmock/internal/custom/gmock-matchers.h',
+ '<(gmock_dir)/include/gmock/internal/custom/gmock-port.h',
+ '<(gmock_dir)/include/gmock/internal/gmock-generated-internal-utils.h',
+ '<(gmock_dir)/include/gmock/internal/gmock-internal-utils.h',
+ '<(gmock_dir)/include/gmock/internal/gmock-port.h',
+ '<(gmock_dir)/src/gmock-all.cc',
+ '<(gmock_dir)/src/gmock-cardinalities.cc',
+ '<(gmock_dir)/src/gmock-internal-utils.cc',
+ '<(gmock_dir)/src/gmock-matchers.cc',
+ '<(gmock_dir)/src/gmock-spec-builders.cc',
+ '<(gmock_dir)/src/gmock.cc',
+ ],
+ 'sources!': [
+ '<(gmock_dir)/src/gmock-all.cc',
+ ],
- 'direct_dependent_settings': {
- 'include_dirs': [
- '<(gmock_dir)/include',
- ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(gmock_dir)/include',
+ ],
+ 'conditions': [
+ ['clang!=0', {
+ # The MOCK_METHODn() macros do not specify “override”, which
+ # triggers this warning in users: “error: 'Method' overrides a
+ # member function but is not marked 'override'
+ # [-Werror,-Winconsistent-missing-override]”. Suppress these
+ # warnings, and add -Wno-unknown-warning-option because only
+ # recent versions of clang (trunk r220703 and later, version
+ # 3.6 and later) recognize it.
'conditions': [
- ['clang!=0', {
- # The MOCK_METHODn() macros do not specify “override”, which
- # triggers this warning in users: “error: 'Method' overrides a
- # member function but is not marked 'override'
- # [-Werror,-Winconsistent-missing-override]”. Suppress these
- # warnings, and add -Wno-unknown-warning-option because only
- # recent versions of clang (trunk r220703 and later, version
- # 3.6 and later) recognize it.
- 'conditions': [
- ['OS=="mac"', {
- 'xcode_settings': {
- 'WARNING_CFLAGS': [
- '-Wno-inconsistent-missing-override',
- '-Wno-unknown-warning-option',
- ],
- },
- }],
- ['OS=="linux"', {
- 'cflags': [
- '-Wno-inconsistent-missing-override',
- '-Wno-unknown-warning-option',
- ],
- }],
+ ['OS=="mac"', {
+ 'xcode_settings': {
+ 'WARNING_CFLAGS': [
+ '-Wno-inconsistent-missing-override',
+ '-Wno-unknown-warning-option',
+ ],
+ },
+ }],
+ ['OS=="linux"', {
+ 'cflags': [
+ '-Wno-inconsistent-missing-override',
+ '-Wno-unknown-warning-option',
],
}],
],
- },
- 'export_dependent_settings': [
- 'gtest.gyp:gtest',
- ],
- },
- {
- 'target_name': 'gmock_main',
- 'type': 'static_library',
- 'dependencies': [
- 'gmock',
- 'gtest.gyp:gtest',
- ],
- 'sources': [
- '<(gmock_dir)/src/gmock_main.cc',
- ],
- },
- {
- 'target_name': 'gmock_test_executable',
- 'type': 'none',
- 'dependencies': [
- 'gmock',
- 'gtest.gyp:gtest',
- ],
- 'direct_dependent_settings': {
- 'type': 'executable',
- 'include_dirs': [
- '<(gmock_dir)',
- ],
- },
- 'export_dependent_settings': [
- 'gmock',
- 'gtest.gyp:gtest',
- ],
- },
- {
- 'target_name': 'gmock_all_test',
- 'dependencies': [
- 'gmock_test_executable',
- 'gmock_main',
- ],
- 'include_dirs': [
- 'gtest/googletest',
- ],
- 'sources': [
- '<(gmock_dir)/test/gmock-actions_test.cc',
- '<(gmock_dir)/test/gmock-cardinalities_test.cc',
- '<(gmock_dir)/test/gmock-generated-actions_test.cc',
- '<(gmock_dir)/test/gmock-generated-function-mockers_test.cc',
- '<(gmock_dir)/test/gmock-generated-internal-utils_test.cc',
- '<(gmock_dir)/test/gmock-generated-matchers_test.cc',
- '<(gmock_dir)/test/gmock-internal-utils_test.cc',
- '<(gmock_dir)/test/gmock-matchers_test.cc',
- '<(gmock_dir)/test/gmock-more-actions_test.cc',
- '<(gmock_dir)/test/gmock-nice-strict_test.cc',
- '<(gmock_dir)/test/gmock-port_test.cc',
- '<(gmock_dir)/test/gmock-spec-builders_test.cc',
- '<(gmock_dir)/test/gmock_test.cc',
- ],
- },
- {
- 'target_name': 'gmock_link_test',
- 'dependencies': [
- 'gmock_test_executable',
- 'gmock_main',
- ],
- 'sources': [
- '<(gmock_dir)/test/gmock_link_test.cc',
- '<(gmock_dir)/test/gmock_link_test.h',
- '<(gmock_dir)/test/gmock_link2_test.cc',
- ],
- },
- {
- 'target_name': 'gmock_stress_test',
- 'dependencies': [
- 'gmock_test_executable',
- ],
- 'sources': [
- '<(gmock_dir)/test/gmock_stress_test.cc',
- ],
- },
- {
- 'target_name': 'gmock_all_tests',
- 'type': 'none',
- 'dependencies': [
- 'gmock_all_test',
- 'gmock_link_test',
- 'gmock_stress_test',
- ],
- },
- ],
- }, { # else: crashpad_dependencies=="chromium"
- 'targets': [
- {
- 'target_name': 'gmock',
- 'type': 'none',
- 'dependencies': [
- '<(DEPTH)/testing/gmock.gyp:gmock',
- ],
- 'export_dependent_settings': [
- '<(DEPTH)/testing/gmock.gyp:gmock',
- ],
- },
- {
- 'target_name': 'gmock_main',
- 'type': 'none',
- 'dependencies': [
- '<(DEPTH)/testing/gmock.gyp:gmock_main',
- ],
- 'export_dependent_settings': [
- '<(DEPTH)/testing/gmock.gyp:gmock_main',
- ],
- },
+ }],
+ ],
+ },
+ 'export_dependent_settings': [
+ 'gtest.gyp:gtest',
],
- }],
+ },
+ {
+ 'target_name': 'gmock_main',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'gmock',
+ 'gtest.gyp:gtest',
+ ],
+ 'sources': [
+ '<(gmock_dir)/src/gmock_main.cc',
+ ],
+ },
+ {
+ 'target_name': 'gmock_test_executable',
+ 'type': 'none',
+ 'dependencies': [
+ 'gmock',
+ 'gtest.gyp:gtest',
+ ],
+ 'direct_dependent_settings': {
+ 'type': 'executable',
+ 'include_dirs': [
+ '<(gmock_dir)',
+ ],
+ },
+ 'export_dependent_settings': [
+ 'gmock',
+ 'gtest.gyp:gtest',
+ ],
+ },
+ {
+ 'target_name': 'gmock_all_test',
+ 'dependencies': [
+ 'gmock_test_executable',
+ 'gmock_main',
+ ],
+ 'include_dirs': [
+ 'gtest/googletest',
+ ],
+ 'sources': [
+ '<(gmock_dir)/test/gmock-actions_test.cc',
+ '<(gmock_dir)/test/gmock-cardinalities_test.cc',
+ '<(gmock_dir)/test/gmock-generated-actions_test.cc',
+ '<(gmock_dir)/test/gmock-generated-function-mockers_test.cc',
+ '<(gmock_dir)/test/gmock-generated-internal-utils_test.cc',
+ '<(gmock_dir)/test/gmock-generated-matchers_test.cc',
+ '<(gmock_dir)/test/gmock-internal-utils_test.cc',
+ '<(gmock_dir)/test/gmock-matchers_test.cc',
+ '<(gmock_dir)/test/gmock-more-actions_test.cc',
+ '<(gmock_dir)/test/gmock-nice-strict_test.cc',
+ '<(gmock_dir)/test/gmock-port_test.cc',
+ '<(gmock_dir)/test/gmock-spec-builders_test.cc',
+ '<(gmock_dir)/test/gmock_test.cc',
+ ],
+ },
+ {
+ 'target_name': 'gmock_link_test',
+ 'dependencies': [
+ 'gmock_test_executable',
+ 'gmock_main',
+ ],
+ 'sources': [
+ '<(gmock_dir)/test/gmock_link_test.cc',
+ '<(gmock_dir)/test/gmock_link_test.h',
+ '<(gmock_dir)/test/gmock_link2_test.cc',
+ ],
+ },
+ {
+ 'target_name': 'gmock_stress_test',
+ 'dependencies': [
+ 'gmock_test_executable',
+ ],
+ 'sources': [
+ '<(gmock_dir)/test/gmock_stress_test.cc',
+ ],
+ },
+ {
+ 'target_name': 'gmock_all_tests',
+ 'type': 'none',
+ 'dependencies': [
+ 'gmock_all_test',
+ 'gmock_link_test',
+ 'gmock_stress_test',
+ ],
+ },
],
}
« no previous file with comments | « third_party/crashpad/crashpad/test/test_test.gyp ('k') | third_party/crashpad/crashpad/third_party/gtest/gtest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698