| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 """Seeds a number of variables defined in chromium_config.py. | 5 """Seeds a number of variables defined in chromium_config.py. |
| 6 | 6 |
| 7 The recommended way is to fork this file and use a custom DEPS forked from | 7 The recommended way is to fork this file and use a custom DEPS forked from |
| 8 config/XXX/DEPS with the right configuration data.""" | 8 config/XXX/DEPS with the right configuration data.""" |
| 9 | 9 |
| 10 | 10 |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 | 471 |
| 472 class Libjingle(_Base): | 472 class Libjingle(_Base): |
| 473 project_name = 'Libjingle' | 473 project_name = 'Libjingle' |
| 474 master_port = 9097 | 474 master_port = 9097 |
| 475 slave_port = 9197 | 475 slave_port = 9197 |
| 476 master_port_alt = 9297 | 476 master_port_alt = 9297 |
| 477 server_url = 'http://libjingle.googlecode.com' | 477 server_url = 'http://libjingle.googlecode.com' |
| 478 project_url = 'http://libjingle.googlecode.com' | 478 project_url = 'http://libjingle.googlecode.com' |
| 479 from_address = 'libjingle-cb-watchlist@google.com' | 479 from_address = 'libjingle-cb-watchlist@google.com' |
| 480 | 480 |
| 481 class ChromiumWebRTCFYI(WebRTC): |
| 482 project_name = 'Chromium WebRTC FYI' |
| 483 master_port = 9098 |
| 484 slave_port = 9198 |
| 485 master_port_alt = 9298 |
| 481 | 486 |
| 482 class Archive(object): | 487 class Archive(object): |
| 483 archive_host = 'localhost' | 488 archive_host = 'localhost' |
| 484 # Skip any filenames (exes, symbols, etc.) starting with these strings | 489 # Skip any filenames (exes, symbols, etc.) starting with these strings |
| 485 # entirely, typically because they're not built for this distribution. | 490 # entirely, typically because they're not built for this distribution. |
| 486 exes_to_skip_entirely = [] | 491 exes_to_skip_entirely = [] |
| 487 # Web server base path. | 492 # Web server base path. |
| 488 www_dir_base = "\\\\" + archive_host + "\\www\\" | 493 www_dir_base = "\\\\" + archive_host + "\\www\\" |
| 489 | 494 |
| 490 @staticmethod | 495 @staticmethod |
| 491 def Internal(): | 496 def Internal(): |
| 492 pass | 497 pass |
| 493 | 498 |
| 494 | 499 |
| 495 class Distributed(object): | 500 class Distributed(object): |
| 496 """Not much to describe.""" | 501 """Not much to describe.""" |
| OLD | NEW |