| OLD | NEW |
| 1 # Copyright 2011 Google Inc. All Rights Reserved. | 1 # Copyright 2011 Google Inc. All Rights Reserved. |
| 2 # Author: siggi@google.com (Sigurdur Asgeirsson) | 2 # Author: siggi@google.com (Sigurdur Asgeirsson) |
| 3 | 3 |
| 4 { | 4 { |
| 5 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../../build/common.gypi', | 9 '../../build/common.gypi', |
| 10 ], | 10 ], |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 'files/pcrecpp_internal.h', | 88 'files/pcrecpp_internal.h', |
| 89 'files/pcreposix.c', | 89 'files/pcreposix.c', |
| 90 'files/pcreposix.h', | 90 'files/pcreposix.h', |
| 91 'files/ucp.h', | 91 'files/ucp.h', |
| 92 '<(SHARED_INTERMEDIATE_DIR)/pcre_chartables.c', | 92 '<(SHARED_INTERMEDIATE_DIR)/pcre_chartables.c', |
| 93 # C plusplus sourcews | 93 # C plusplus sourcews |
| 94 'files/pcrecpp.cc', | 94 'files/pcrecpp.cc', |
| 95 'files/pcre_scanner.cc', | 95 'files/pcre_scanner.cc', |
| 96 'files/pcre_stringpiece.cc', | 96 'files/pcre_stringpiece.cc', |
| 97 ], | 97 ], |
| 98 'msvs_settings': { | 98 'msvs_disabled_warnings': [ |
| 99 'VCCLCompilerTool': { | 99 '4267', |
| 100 'AdditionalOptions': ['/wd4130', '/wd4018', '/wd4189', '/wd4996'], | 100 '4130', |
| 101 }, | 101 '4018', |
| 102 }, | 102 '4189', |
| 103 '4996', |
| 104 ], |
| 103 'all_dependent_settings': { | 105 'all_dependent_settings': { |
| 104 'defines': [ | 106 'defines': [ |
| 105 'LINK_SIZE=2', | 107 'LINK_SIZE=2', |
| 106 'PCRE_STATIC', | 108 'PCRE_STATIC', |
| 107 ], | 109 ], |
| 108 'include_dirs': [ | 110 'include_dirs': [ |
| 109 'files', | 111 'files', |
| 110 ], | 112 ], |
| 111 }, | 113 }, |
| 112 }, | 114 }, |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 'pcre_lib', | 182 'pcre_lib', |
| 181 ], | 183 ], |
| 182 'msvs_settings': { | 184 'msvs_settings': { |
| 183 'VCCLCompilerTool': { | 185 'VCCLCompilerTool': { |
| 184 'AdditionalOptions': ['/wd4018', '/wd4996'], | 186 'AdditionalOptions': ['/wd4018', '/wd4996'], |
| 185 }, | 187 }, |
| 186 }, | 188 }, |
| 187 }, | 189 }, |
| 188 ] | 190 ] |
| 189 } | 191 } |
| OLD | NEW |