| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1309 }, | 1309 }, |
| 1310 { | 1310 { |
| 1311 'target_name': 'http_server', | 1311 'target_name': 'http_server', |
| 1312 'type': 'static_library', | 1312 'type': 'static_library', |
| 1313 'dependencies': [ | 1313 'dependencies': [ |
| 1314 'net', | 1314 'net', |
| 1315 '../base/base.gyp:base', | 1315 '../base/base.gyp:base', |
| 1316 '../testing/gtest.gyp:gtest', | 1316 '../testing/gtest.gyp:gtest', |
| 1317 ], | 1317 ], |
| 1318 'sources': [ | 1318 'sources': [ |
| 1319 'server/http_connection.cc', |
| 1320 'server/http_connection.h', |
| 1319 'server/http_server.cc', | 1321 'server/http_server.cc', |
| 1320 'server/http_server.h', | 1322 'server/http_server.h', |
| 1321 'server/http_server_request_info.cc', | 1323 'server/http_server_request_info.cc', |
| 1322 'server/http_server_request_info.h', | 1324 'server/http_server_request_info.h', |
| 1325 'server/web_socket.cc', |
| 1326 'server/web_socket.h', |
| 1323 ], | 1327 ], |
| 1324 }, | 1328 }, |
| 1325 { | 1329 { |
| 1326 'target_name': 'dnssec_chain_verify', | 1330 'target_name': 'dnssec_chain_verify', |
| 1327 'type': 'executable', | 1331 'type': 'executable', |
| 1328 'dependencies': [ | 1332 'dependencies': [ |
| 1329 'net', | 1333 'net', |
| 1330 '../base/base.gyp:base', | 1334 '../base/base.gyp:base', |
| 1331 ], | 1335 ], |
| 1332 'sources': [ | 1336 'sources': [ |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1488 'tools/dump_cache/url_to_filename_encoder.cc', | 1492 'tools/dump_cache/url_to_filename_encoder.cc', |
| 1489 'tools/dump_cache/url_to_filename_encoder.h', | 1493 'tools/dump_cache/url_to_filename_encoder.h', |
| 1490 'tools/dump_cache/url_utilities.h', | 1494 'tools/dump_cache/url_utilities.h', |
| 1491 'tools/dump_cache/url_utilities.cc', | 1495 'tools/dump_cache/url_utilities.cc', |
| 1492 ], | 1496 ], |
| 1493 }, | 1497 }, |
| 1494 ], | 1498 ], |
| 1495 }], | 1499 }], |
| 1496 ], | 1500 ], |
| 1497 } | 1501 } |
| OLD | NEW |