| OLD | NEW |
| 1 # Copyright 2014 The Crashpad Authors. All rights reserved. | 1 # Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 # | 2 # |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
| 5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
| 6 # | 6 # |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 # | 8 # |
| 9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'misc/uuid.h', | 90 'misc/uuid.h', |
| 91 'net/http_body.cc', | 91 'net/http_body.cc', |
| 92 'net/http_body.h', | 92 'net/http_body.h', |
| 93 'net/http_headers.cc', | 93 'net/http_headers.cc', |
| 94 'net/http_headers.h', | 94 'net/http_headers.h', |
| 95 'net/http_multipart_builder.cc', | 95 'net/http_multipart_builder.cc', |
| 96 'net/http_multipart_builder.h', | 96 'net/http_multipart_builder.h', |
| 97 'net/http_transport.cc', | 97 'net/http_transport.cc', |
| 98 'net/http_transport.h', | 98 'net/http_transport.h', |
| 99 'net/http_transport_mac.mm', | 99 'net/http_transport_mac.mm', |
| 100 'net/http_transport_win.cc', |
| 100 'numeric/checked_range.h', | 101 'numeric/checked_range.h', |
| 101 'numeric/in_range_cast.h', | 102 'numeric/in_range_cast.h', |
| 102 'numeric/int128.h', | 103 'numeric/int128.h', |
| 103 'numeric/safe_assignment.h', | 104 'numeric/safe_assignment.h', |
| 104 'posix/close_multiple.cc', | 105 'posix/close_multiple.cc', |
| 105 'posix/close_multiple.h', | 106 'posix/close_multiple.h', |
| 106 'posix/close_stdio.cc', | 107 'posix/close_stdio.cc', |
| 107 'posix/close_stdio.h', | 108 'posix/close_stdio.h', |
| 108 'posix/drop_privileges.cc', | 109 'posix/drop_privileges.cc', |
| 109 'posix/drop_privileges.h', | 110 'posix/drop_privileges.h', |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 'test/scoped_temp_dir_test.cc', | 295 'test/scoped_temp_dir_test.cc', |
| 295 ], | 296 ], |
| 296 'conditions': [ | 297 'conditions': [ |
| 297 ['OS=="mac"', { | 298 ['OS=="mac"', { |
| 298 'link_settings': { | 299 'link_settings': { |
| 299 'libraries': [ | 300 'libraries': [ |
| 300 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 301 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 301 ], | 302 ], |
| 302 }, | 303 }, |
| 303 }], | 304 }], |
| 304 ['OS=="win"', { | |
| 305 'sources!': [ | |
| 306 # TODO(scottmg): Temporarily excluded during Windows bring up. | |
| 307 'net/http_transport_test.cc', | |
| 308 ], | |
| 309 }], | |
| 310 ], | 305 ], |
| 311 }, | 306 }, |
| 312 { | 307 { |
| 313 'target_name': 'util_test_multiprocess_exec_test_child', | 308 'target_name': 'util_test_multiprocess_exec_test_child', |
| 314 'type': 'executable', | 309 'type': 'executable', |
| 315 'sources': [ | 310 'sources': [ |
| 316 'test/multiprocess_exec_test_child.cc', | 311 'test/multiprocess_exec_test_child.cc', |
| 317 ], | 312 ], |
| 318 }, | 313 }, |
| 319 ], | 314 ], |
| 320 } | 315 } |
| OLD | NEW |