summaryrefslogtreecommitdiffstats
path: root/remoting/remoting_test.gypi
diff options
context:
space:
mode:
authorsergeyu <sergeyu@chromium.org>2015-01-22 16:44:38 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-23 00:45:50 +0000
commit19969e2f19fbc851514e8d76b761b1ce717d42b6 (patch)
tree48cc3e3c2c694203aa9047d1afd984860e967f47 /remoting/remoting_test.gypi
parent8e00ed97c496ae85c95200cd84c63f1696ea85ab (diff)
downloadchromium_src-19969e2f19fbc851514e8d76b761b1ce717d42b6.zip
chromium_src-19969e2f19fbc851514e8d76b761b1ce717d42b6.tar.gz
chromium_src-19969e2f19fbc851514e8d76b761b1ce717d42b6.tar.bz2
Implement DNS blackhole check for XMPP connection in the webapp.
With WCS it was possible to block CRD client by adding DNS blackhole for chromoting-client.talkgadget.google.com . This is a documented way to block CRD client. This CL duplicates this functionality for XMPP-based signaling. The new DnsBlackholeChecker ensures that the client connection doesn't start until it's verified that there is no DNS blackhole for chromoting-client.talkgadget.google.com. It's implemented as a SignalStrategy filter. BUG=443397 Review URL: https://codereview.chromium.org/860383004 Cr-Commit-Position: refs/heads/master@{#312716}
Diffstat (limited to 'remoting/remoting_test.gypi')
-rw-r--r--remoting/remoting_test.gypi6
1 files changed, 5 insertions, 1 deletions
diff --git a/remoting/remoting_test.gypi b/remoting/remoting_test.gypi
index cd11122..06c1e6c 100644
--- a/remoting/remoting_test.gypi
+++ b/remoting/remoting_test.gypi
@@ -298,6 +298,7 @@
{
'destination': '<(PRODUCT_DIR)/remoting/browser_test_resources',
'files': [
+ '<@(remoting_webapp_js_test_common_files)',
'<@(remoting_webapp_js_browser_test_files)',
],
},
@@ -341,8 +342,9 @@
'destination': '<(output_dir)',
'files': [
'<@(webapp_js_files)',
+ '<@(remoting_webapp_js_test_common_files)',
+ '<@(remoting_webapp_unittest_additional_files)',
'<@(remoting_webapp_unittest_js_files)',
- '<@(remoting_webapp_unittest_additional_files)'
],
},
],
@@ -353,6 +355,7 @@
'webapp/build-html.py',
'<(remoting_webapp_unittest_template_main)',
'<@(webapp_js_files)',
+ '<@(remoting_webapp_js_test_common_files)',
'<@(remoting_webapp_unittest_js_files)'
],
'outputs': [
@@ -368,6 +371,7 @@
# exclude list.
'--exclude-js', '<@(remoting_webapp_unittest_exclude_files)',
'--js', '<@(remoting_webapp_unittest_js_files)',
+ '<@(remoting_webapp_js_test_common_files)',
'--instrument-js', '<@(webapp_js_files)',
],
},