1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'isolate_dependency_tracked': [
'../net/tools/testserver/asn1.py',
'../net/tools/testserver/echo_message.py',
'../net/tools/testserver/minica.py',
'../net/tools/testserver/testserver.py',
'../testing/test_env.py',
'../third_party/pyftpdlib/src/pyftpdlib/__init__.py',
'../third_party/pyftpdlib/src/pyftpdlib/ftpserver.py',
'../third_party/tlslite/tlslite/BaseDB.py',
'../third_party/tlslite/tlslite/Checker.py',
'../third_party/tlslite/tlslite/FileObject.py',
'../third_party/tlslite/tlslite/HandshakeSettings.py',
'../third_party/tlslite/tlslite/Session.py',
'../third_party/tlslite/tlslite/SessionCache.py',
'../third_party/tlslite/tlslite/SharedKeyDB.py',
'../third_party/tlslite/tlslite/TLSConnection.py',
'../third_party/tlslite/tlslite/TLSRecordLayer.py',
'../third_party/tlslite/tlslite/VerifierDB.py',
'../third_party/tlslite/tlslite/X509.py',
'../third_party/tlslite/tlslite/X509CertChain.py',
'../third_party/tlslite/tlslite/__init__.py',
'../third_party/tlslite/tlslite/api.py',
'../third_party/tlslite/tlslite/constants.py',
'../third_party/tlslite/tlslite/errors.py',
'../third_party/tlslite/tlslite/integration/AsyncStateMachine.py',
'../third_party/tlslite/tlslite/integration/ClientHelper.py',
'../third_party/tlslite/tlslite/integration/HTTPTLSConnection.py',
'../third_party/tlslite/tlslite/integration/IMAP4_TLS.py',
'../third_party/tlslite/tlslite/integration/POP3_TLS.py',
'../third_party/tlslite/tlslite/integration/SMTP_TLS.py',
'../third_party/tlslite/tlslite/integration/TLSAsyncDispatcherMixIn.py',
'../third_party/tlslite/tlslite/integration/TLSSocketServerMixIn.py',
'../third_party/tlslite/tlslite/integration/XMLRPCTransport.py',
'../third_party/tlslite/tlslite/integration/__init__.py',
'../third_party/tlslite/tlslite/mathtls.py',
'../third_party/tlslite/tlslite/messages.py',
'../third_party/tlslite/tlslite/utils/AES.py',
'../third_party/tlslite/tlslite/utils/ASN1Parser.py',
'../third_party/tlslite/tlslite/utils/Python_AES.py',
'../third_party/tlslite/tlslite/utils/Python_RC4.py',
'../third_party/tlslite/tlslite/utils/Python_RSAKey.py',
'../third_party/tlslite/tlslite/utils/RC4.py',
'../third_party/tlslite/tlslite/utils/RSAKey.py',
'../third_party/tlslite/tlslite/utils/__init__.py',
'../third_party/tlslite/tlslite/utils/cipherfactory.py',
'../third_party/tlslite/tlslite/utils/codec.py',
'../third_party/tlslite/tlslite/utils/compat.py',
'../third_party/tlslite/tlslite/utils/cryptomath.py',
'../third_party/tlslite/tlslite/utils/hmac.py',
'../third_party/tlslite/tlslite/utils/keyfactory.py',
'../third_party/tlslite/tlslite/utils/rijndael.py',
'../third_party/tlslite/tlslite/utils/xmltools.py',
'<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
'<(PRODUCT_DIR)/resources.pak',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/async_gen.js',
'test/data/extensions/api_test/tabs/basics/manifest.json',
'test/data/extensions/api_test/tabs/capture_visible_tab/manifest.json',
'test/data/webui/test_api.js',
'third_party/mock4js/mock4js.js',
],
'isolate_dependency_untracked': [
'test/data/extensions/api_test/accessibility/',
],
},
'conditions': [
['OS=="linux"', {
'variables': {
'command': [
'../testing/xvfb.py',
'<(PRODUCT_DIR)',
'<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
],
'isolate_dependency_tracked': [
'../content/test/data/indexeddb/bug_106883.html',
'../content/test/data/indexeddb/bug_106883.js',
'../content/test/data/indexeddb/bug_109187.html',
'../content/test/data/indexeddb/bug_109187.js',
'../content/test/data/indexeddb/bug_84933.html',
'../content/test/data/indexeddb/bug_84933.js',
'../content/test/data/indexeddb/common.js',
'../content/test/data/indexeddb/cursor_prefetch.html',
'../content/test/data/indexeddb/cursor_prefetch.js',
'../content/test/data/indexeddb/cursor_test.html',
'../content/test/data/indexeddb/cursor_test.js',
'../content/test/data/indexeddb/database_callbacks_first.html',
'../content/test/data/indexeddb/database_callbacks_second.html',
'../content/test/data/indexeddb/database_test.html',
'../content/test/data/indexeddb/database_test.js',
'../content/test/data/indexeddb/index_test.html',
'../content/test/data/indexeddb/index_test.js',
'../content/test/data/indexeddb/key_path_test.html',
'../content/test/data/indexeddb/key_path_test.js',
'../content/test/data/indexeddb/key_types_test.html',
'../content/test/data/indexeddb/key_types_test.js',
'../content/test/data/indexeddb/object_store_test.html',
'../content/test/data/indexeddb/object_store_test.js',
'../content/test/data/indexeddb/quota_test.html',
'../content/test/data/indexeddb/quota_test.js',
'../content/test/data/indexeddb/transaction_get_test.html',
'../content/test/data/indexeddb/transaction_get_test.js',
'../content/test/data/indexeddb/transaction_run_forever.html',
'../content/test/data/indexeddb/transaction_run_forever.js',
'../content/test/data/indexeddb/transaction_test.html',
'../content/test/data/indexeddb/transaction_test.js',
'../net/data/ssl/certificates/expired_cert.pem',
'../net/data/ssl/certificates/ok_cert.pem',
'../net/data/ssl/certificates/root_ca_cert.crt',
'../net/tools/testserver/asn1der.py',
'../net/tools/testserver/device_management.py',
'../ppapi/tests/test_case.html',
'../ppapi/tests/test_page.css',
'../testing/xvfb.py',
'../third_party/WebKit/Tools/Scripts/VCSUtils.pm',
'../third_party/WebKit/Tools/Scripts/webkit-build-directory',
'../third_party/WebKit/Tools/Scripts/webkitdirs.pm',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/httpd2.pem',
'../third_party/simplejson/__init__.py',
'../third_party/simplejson/decoder.py',
'../third_party/simplejson/encoder.py',
'../third_party/simplejson/scanner.py',
'../third_party/tlslite/tlslite/utils/PyCrypto_AES.py',
'../third_party/tlslite/tlslite/utils/PyCrypto_RC4.py',
'../third_party/tlslite/tlslite/utils/PyCrypto_RSAKey.py',
'../third_party/tlslite/tlslite/utils/PyCrypto_TripleDES.py',
'../third_party/tlslite/tlslite/utils/TripleDES.py',
'<(PRODUCT_DIR)/DumpRenderTree<(EXECUTABLE_SUFFIX)',
'<(PRODUCT_DIR)/chrome.pak',
'<(PRODUCT_DIR)/chrome<(EXECUTABLE_SUFFIX)',
'<(PRODUCT_DIR)/libffmpegsumo.so',
'<(PRODUCT_DIR)/libosmesa.so',
'<(PRODUCT_DIR)/libppapi_tests.so',
'<(PRODUCT_DIR)/pyproto/chrome/browser/policy/proto/chrome_device_policy_pb2.py',
'<(PRODUCT_DIR)/pyproto/chrome/browser/policy/proto/cloud_policy_pb2.py',
'<(PRODUCT_DIR)/pyproto/chrome/browser/policy/proto/device_management_backend_pb2.py',
'<(PRODUCT_DIR)/pyproto/google/__init__.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/__init__.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/descriptor.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/descriptor_pb2.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/internal/__init__.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/internal/api_implementation.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/internal/containers.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/internal/decoder.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/internal/encoder.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/internal/message_listener.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/internal/python_message.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/internal/type_checkers.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/internal/wire_format.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/message.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/reflection.py',
'<(PRODUCT_DIR)/pyproto/google/protobuf/text_format.py',
'<(PRODUCT_DIR)/test_case.html',
'<(PRODUCT_DIR)/test_case.html.mock-http-headers',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/net_internals/timeline_view.js',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/ntp4.js',
'<(PRODUCT_DIR)/test_page.css',
'<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
'test/data/History/HistoryHelper.js',
'test/data/History/history_length_test_page_1.html',
'test/data/History/history_length_test_page_11.html',
'test/data/History/history_length_test_page_2.html',
'test/data/History/history_length_test_page_21.html',
'test/data/History/history_length_test_page_22.html',
'test/data/History/history_length_test_page_3.html',
'test/data/History/history_length_test_page_4.html',
'test/data/anchor_download_test.png',
'test/data/autofill/heuristics/input/00_i18n_de.html',
'test/data/autofill/heuristics/input/00_i18n_de2.html',
'test/data/autofill/heuristics/input/00_i18n_en.html',
'test/data/autofill/heuristics/input/00_i18n_es.html',
'test/data/autofill/heuristics/input/00_i18n_fr.html',
'test/data/autofill/heuristics/input/00_i18n_it.html',
'test/data/autofill/heuristics/input/00_i18n_ja.html',
'test/data/autofill/heuristics/input/00_i18n_ko.html',
'test/data/autofill/heuristics/input/00_i18n_pt.html',
'test/data/autofill/heuristics/input/00_i18n_ru.html',
'test/data/autofill/heuristics/input/00_i18n_zh_cn.html',
'test/data/autofill/heuristics/input/00_i18n_zh_tw.html',
'test/data/autofill/heuristics/input/01_autocompletetype_attribute.html',
'test/data/autofill/heuristics/input/01_misc_phones.html',
'test/data/autofill/heuristics/input/02_checkout_advanceautoparts.com.html',
'test/data/autofill/heuristics/input/02_checkout_ae.com.html',
'test/data/autofill/heuristics/input/02_checkout_bedbathandbeyond.com.html',
'test/data/autofill/heuristics/input/02_checkout_cafepress.com.html',
'test/data/autofill/heuristics/input/03_checkout_cduniverse.com.html',
'test/data/autofill/heuristics/input/03_checkout_crutchfield.com.html',
'test/data/autofill/heuristics/input/03_checkout_gamestop.com.html',
'test/data/autofill/heuristics/input/03_checkout_homedepot.com.html',
'test/data/autofill/heuristics/input/03_checkout_hsn.com.html',
'test/data/autofill/heuristics/input/04_checkout_ikea.com.html',
'test/data/autofill/heuristics/input/04_checkout_jcrew.com.html',
'test/data/autofill/heuristics/input/04_checkout_jr.com.html',
'test/data/autofill/heuristics/input/04_checkout_kohls.com.html',
'test/data/autofill/heuristics/input/04_checkout_lowes.com.html',
'test/data/autofill/heuristics/input/05_checkout_macys.com.html',
'test/data/autofill/heuristics/input/05_checkout_nordstrom.com.html',
'test/data/autofill/heuristics/input/05_checkout_officemax.com.html',
'test/data/autofill/heuristics/input/05_checkout_overstock.com.html',
'test/data/autofill/heuristics/input/05_checkout_petco.com.html',
'test/data/autofill/heuristics/input/06_checkout_petsmart.com.html',
'test/data/autofill/heuristics/input/06_checkout_qvc.com.html',
'test/data/autofill/heuristics/input/06_checkout_sears.com.html',
'test/data/autofill/heuristics/input/06_checkout_target.com.html',
'test/data/autofill/heuristics/input/06_checkout_urbanoutfitters.com.html',
'test/data/autofill/heuristics/input/08_register_adobe.com.html',
'test/data/autofill/heuristics/input/08_register_amazon.com.html',
'test/data/autofill/heuristics/input/08_register_aol.com.html',
'test/data/autofill/heuristics/input/08_register_bestbuy.com.html',
'test/data/autofill/heuristics/input/08_register_continental.com.html',
'test/data/autofill/heuristics/input/09_register_deviantart.com.html',
'test/data/autofill/heuristics/input/09_register_ebay.com.html',
'test/data/autofill/heuristics/input/09_register_ecomm.dell.com.html',
'test/data/autofill/heuristics/input/09_register_epson.com.html',
'test/data/autofill/heuristics/input/09_register_google.com.html',
'test/data/autofill/heuristics/input/10_register_gymboree.com.html',
'test/data/autofill/heuristics/input/10_register_hotels.com.html',
'test/data/autofill/heuristics/input/10_register_imdb.com.html',
'test/data/autofill/heuristics/input/10_register_jbox.com.html',
'test/data/autofill/heuristics/input/10_register_live.com.html',
'test/data/autofill/heuristics/input/11_register_livejournal.com.html',
'test/data/autofill/heuristics/input/11_register_macys.com.html',
'test/data/autofill/heuristics/input/11_register_mcphee.com.html',
'test/data/autofill/heuristics/input/11_register_myspace.com.html',
'test/data/autofill/heuristics/input/11_register_newegg.com.html',
'test/data/autofill/heuristics/input/12_register_officedepot.com.html',
'test/data/autofill/heuristics/input/12_register_officemax.com.html',
'test/data/autofill/heuristics/input/12_register_pyramidcollection.com.html',
'test/data/autofill/heuristics/input/12_register_rediff.com.html',
'test/data/autofill/heuristics/input/12_register_rei.com.html',
'test/data/autofill/heuristics/input/13_register_rocketlawyer.com.html',
'test/data/autofill/heuristics/input/13_register_signup.clicksor.com.html',
'test/data/autofill/heuristics/input/13_register_signup.live.com.html',
'test/data/autofill/heuristics/input/13_register_sourceforge.net.html',
'test/data/autofill/heuristics/input/13_register_supershuttle.com.html',
'test/data/autofill/heuristics/input/14_register_target.com.html',
'test/data/autofill/heuristics/input/14_register_threadless.com.html',
'test/data/autofill/heuristics/input/14_register_trueblue.jetblue.com.html',
'test/data/autofill/heuristics/input/14_register_uhaul.com.html',
'test/data/autofill/heuristics/input/14_register_yahoo.com.html',
'test/data/autofill/heuristics/input/15_crbug_40687.html',
'test/data/autofill/heuristics/input/15_crbug_52198.html',
'test/data/autofill/heuristics/input/15_crbug_53075.html',
'test/data/autofill/heuristics/input/15_crbug_64569.html',
'test/data/autofill/heuristics/input/15_crbug_74918.html',
'test/data/autofill/heuristics/input/16_crbug_87517.html',
'test/data/autofill/heuristics/input/16_crbug_93595.html',
'test/data/autofill/heuristics/input/16_crbug_98152.html',
'test/data/autofill/heuristics/input/16_crbug_98269.html',
'test/data/autofill/heuristics/input/16_crbug_98286.html',
'test/data/autofill/heuristics/input/17_crbug_98338.html',
'test/data/autofill/heuristics/input/20_register_alaskaair.com.html',
'test/data/autofill/heuristics/input/20_register_epson.com.mx.html',
'test/data/autofill/heuristics/output/00_i18n_de.out',
'test/data/autofill/heuristics/output/00_i18n_de2.out',
'test/data/autofill/heuristics/output/00_i18n_en.out',
'test/data/autofill/heuristics/output/00_i18n_es.out',
'test/data/autofill/heuristics/output/00_i18n_fr.out',
'test/data/autofill/heuristics/output/00_i18n_it.out',
'test/data/autofill/heuristics/output/00_i18n_ja.out',
'test/data/autofill/heuristics/output/00_i18n_ko.out',
'test/data/autofill/heuristics/output/00_i18n_pt.out',
'test/data/autofill/heuristics/output/00_i18n_ru.out',
'test/data/autofill/heuristics/output/00_i18n_zh_cn.out',
'test/data/autofill/heuristics/output/00_i18n_zh_tw.out',
'test/data/autofill/heuristics/output/01_autocompletetype_attribute.out',
'test/data/autofill/heuristics/output/01_misc_phones.out',
'test/data/autofill/heuristics/output/02_checkout_advanceautoparts.com.out',
'test/data/autofill/heuristics/output/02_checkout_ae.com.out',
'test/data/autofill/heuristics/output/02_checkout_bedbathandbeyond.com.out',
'test/data/autofill/heuristics/output/02_checkout_cafepress.com.out',
'test/data/autofill/heuristics/output/03_checkout_cduniverse.com.out',
'test/data/autofill/heuristics/output/03_checkout_crutchfield.com.out',
'test/data/autofill/heuristics/output/03_checkout_gamestop.com.out',
'test/data/autofill/heuristics/output/03_checkout_homedepot.com.out',
'test/data/autofill/heuristics/output/03_checkout_hsn.com.out',
'test/data/autofill/heuristics/output/04_checkout_ikea.com.out',
'test/data/autofill/heuristics/output/04_checkout_jcrew.com.out',
'test/data/autofill/heuristics/output/04_checkout_jr.com.out',
'test/data/autofill/heuristics/output/04_checkout_kohls.com.out',
'test/data/autofill/heuristics/output/04_checkout_lowes.com.out',
'test/data/autofill/heuristics/output/05_checkout_macys.com.out',
'test/data/autofill/heuristics/output/05_checkout_nordstrom.com.out',
'test/data/autofill/heuristics/output/05_checkout_officemax.com.out',
'test/data/autofill/heuristics/output/05_checkout_overstock.com.out',
'test/data/autofill/heuristics/output/05_checkout_petco.com.out',
'test/data/autofill/heuristics/output/06_checkout_petsmart.com.out',
'test/data/autofill/heuristics/output/06_checkout_qvc.com.out',
'test/data/autofill/heuristics/output/06_checkout_sears.com.out',
'test/data/autofill/heuristics/output/06_checkout_target.com.out',
'test/data/autofill/heuristics/output/06_checkout_urbanoutfitters.com.out',
'test/data/autofill/heuristics/output/08_register_adobe.com.out',
'test/data/autofill/heuristics/output/08_register_amazon.com.out',
'test/data/autofill/heuristics/output/08_register_aol.com.out',
'test/data/autofill/heuristics/output/08_register_bestbuy.com.out',
'test/data/autofill/heuristics/output/08_register_continental.com.out',
'test/data/autofill/heuristics/output/09_register_deviantart.com.out',
'test/data/autofill/heuristics/output/09_register_ebay.com.out',
'test/data/autofill/heuristics/output/09_register_ecomm.dell.com.out',
'test/data/autofill/heuristics/output/09_register_epson.com.out',
'test/data/autofill/heuristics/output/09_register_google.com.out',
'test/data/autofill/heuristics/output/10_register_gymboree.com.out',
'test/data/autofill/heuristics/output/10_register_hotels.com.out',
'test/data/autofill/heuristics/output/10_register_imdb.com.out',
'test/data/autofill/heuristics/output/10_register_jbox.com.out',
'test/data/autofill/heuristics/output/10_register_live.com.out',
'test/data/autofill/heuristics/output/11_register_livejournal.com.out',
'test/data/autofill/heuristics/output/11_register_macys.com.out',
'test/data/autofill/heuristics/output/11_register_mcphee.com.out',
'test/data/autofill/heuristics/output/11_register_myspace.com.out',
'test/data/autofill/heuristics/output/11_register_newegg.com.out',
'test/data/autofill/heuristics/output/12_register_officedepot.com.out',
'test/data/autofill/heuristics/output/12_register_officemax.com.out',
'test/data/autofill/heuristics/output/12_register_pyramidcollection.com.out',
'test/data/autofill/heuristics/output/12_register_rediff.com.out',
'test/data/autofill/heuristics/output/12_register_rei.com.out',
'test/data/autofill/heuristics/output/13_register_rocketlawyer.com.out',
'test/data/autofill/heuristics/output/13_register_signup.clicksor.com.out',
'test/data/autofill/heuristics/output/13_register_signup.live.com.out',
'test/data/autofill/heuristics/output/13_register_sourceforge.net.out',
'test/data/autofill/heuristics/output/13_register_supershuttle.com.out',
'test/data/autofill/heuristics/output/14_register_target.com.out',
'test/data/autofill/heuristics/output/14_register_threadless.com.out',
'test/data/autofill/heuristics/output/14_register_trueblue.jetblue.com.out',
'test/data/autofill/heuristics/output/14_register_uhaul.com.out',
'test/data/autofill/heuristics/output/14_register_yahoo.com.out',
'test/data/autofill/heuristics/output/15_crbug_40687.out',
'test/data/autofill/heuristics/output/15_crbug_52198.out',
'test/data/autofill/heuristics/output/15_crbug_53075.out',
'test/data/autofill/heuristics/output/15_crbug_64569.out',
'test/data/autofill/heuristics/output/15_crbug_74918.out',
'test/data/autofill/heuristics/output/16_crbug_87517.out',
'test/data/autofill/heuristics/output/16_crbug_93595.out',
'test/data/autofill/heuristics/output/16_crbug_98152.out',
'test/data/autofill/heuristics/output/16_crbug_98269.out',
'test/data/autofill/heuristics/output/16_crbug_98286.out',
'test/data/autofill/heuristics/output/17_crbug_98338.out',
'test/data/autofill/heuristics/output/20_register_alaskaair.com.out',
'test/data/autofill/heuristics/output/20_register_epson.com.mx.out',
'test/data/beforeunload.html',
'test/data/cancelled_redirect_test.html',
'test/data/click-noreferrer-links.html',
'test/data/cookie1.html',
'test/data/custom_handler_foo.html',
'test/data/download-anchor-attrib.html',
'test/data/download-test1.lib',
'test/data/download-test1.lib.mock-http-headers',
'test/data/download-test2.html',
'test/data/download-test2.html.mock-http-headers',
'test/data/download-test3.gif',
'test/data/download-test3.gif.mock-http-headers',
'test/data/download_page1.html',
'test/data/download_page2.html',
'test/data/download_page3.html',
'test/data/download_page4.html',
'test/data/download_script.html',
'test/data/downloads/06bESSE21Evolution.ppt',
'test/data/downloads/a_zip_file.zip',
'test/data/downloads/a_zip_file.zip.mock-http-headers',
'test/data/downloads/download-dangerous-blob.html',
'test/data/downloads/form_page_to_post.html',
'test/data/downloads/image.jpg',
'test/data/downloads/image.jpg.mock-http-headers',
'test/data/downloads/referrer_policy.html',
'test/data/downloads/zip_file_not_found.zip',
'test/data/downloads/zip_file_not_found.zip.mock-http-headers',
'test/data/empty.html',
'test/data/encoding_tests/alias_mapping/Big5.html',
'test/data/encoding_tests/alias_mapping/EUC-JP.html',
'test/data/encoding_tests/alias_mapping/ISO-8859-13.html',
'test/data/encoding_tests/alias_mapping/ISO-8859-15.html',
'test/data/encoding_tests/alias_mapping/ISO-8859-2.html',
'test/data/encoding_tests/alias_mapping/ISO-8859-4.html',
'test/data/encoding_tests/alias_mapping/ISO-8859-5.html',
'test/data/encoding_tests/alias_mapping/ISO-8859-6.html',
'test/data/encoding_tests/alias_mapping/ISO-8859-7.html',
'test/data/encoding_tests/alias_mapping/ISO-8859-8.html',
'test/data/encoding_tests/alias_mapping/KOI8-R.html',
'test/data/encoding_tests/alias_mapping/KOI8-U.html',
'test/data/encoding_tests/alias_mapping/Shift-JIS.html',
'test/data/encoding_tests/alias_mapping/US-ASCII.html',
'test/data/encoding_tests/alias_mapping/UTF-16LE.html',
'test/data/encoding_tests/alias_mapping/UTF-8.html',
'test/data/encoding_tests/alias_mapping/gb18030.html',
'test/data/encoding_tests/alias_mapping/iso-8859-1.html',
'test/data/encoding_tests/alias_mapping/macintosh.html',
'test/data/encoding_tests/alias_mapping/windows-1250.html',
'test/data/encoding_tests/alias_mapping/windows-1251.html',
'test/data/encoding_tests/alias_mapping/windows-1252.html',
'test/data/encoding_tests/alias_mapping/windows-1253.html',
'test/data/encoding_tests/alias_mapping/windows-1254.html',
'test/data/encoding_tests/alias_mapping/windows-1255.html',
'test/data/encoding_tests/alias_mapping/windows-1256.html',
'test/data/encoding_tests/alias_mapping/windows-1257.html',
'test/data/encoding_tests/alias_mapping/windows-1258.html',
'test/data/encoding_tests/alias_mapping/windows-874.html',
'test/data/english_page.html',
'test/data/extensions/api_test/app_notifications/manifest.json',
'test/data/extensions/api_test/app_notifications/test.html',
'test/data/extensions/api_test/app_notifications/test.js',
'test/data/extensions/api_test/app_process/manifest.json',
'test/data/extensions/api_test/app_process/path1/empty.html',
'test/data/extensions/api_test/browser_action/add_popup/background.js',
'test/data/extensions/api_test/browser_action/add_popup/change_popup.html',
'test/data/extensions/api_test/browser_action/add_popup/change_popup.js',
'test/data/extensions/api_test/browser_action/add_popup/icon.png',
'test/data/extensions/api_test/browser_action/add_popup/manifest.json',
'test/data/extensions/api_test/browser_action/basics/background.js',
'test/data/extensions/api_test/browser_action/basics/icon.png',
'test/data/extensions/api_test/browser_action/basics/manifest.json',
'test/data/extensions/api_test/browser_action/no_icon/background.js',
'test/data/extensions/api_test/browser_action/no_icon/manifest.json',
'test/data/extensions/api_test/browser_action/none/background.html',
'test/data/extensions/api_test/browser_action/none/manifest.json',
'test/data/extensions/api_test/browser_action/popup/chromium.png',
'test/data/extensions/api_test/browser_action/popup/manifest.json',
'test/data/extensions/api_test/browser_action/remove_popup/background.js',
'test/data/extensions/api_test/browser_action/remove_popup/icon.png',
'test/data/extensions/api_test/browser_action/remove_popup/manifest.json',
'test/data/extensions/api_test/browser_action/remove_popup/remove_popup.html',
'test/data/extensions/api_test/browser_action/remove_popup/remove_popup.js',
'test/data/extensions/api_test/content_scripts/isolated_world1/background.js',
'test/data/extensions/api_test/extension_resource_request_policy/extension2/audio.html',
'test/data/extensions/api_test/extension_resource_request_policy/extension2/bear.wav',
'test/data/extensions/api_test/extension_resource_request_policy/extension2/bear.webm',
'test/data/extensions/api_test/extension_resource_request_policy/extension2/can_load_icons_from_hosted_apps.html',
'test/data/extensions/api_test/extension_resource_request_policy/extension2/index.html',
'test/data/extensions/api_test/extension_resource_request_policy/extension2/manifest.json',
'test/data/extensions/api_test/extension_resource_request_policy/extension2/video.html',
'test/data/extensions/api_test/extension_resource_request_policy/inaccessible/manifest.json',
'test/data/extensions/api_test/extension_resource_request_policy/index.html',
'test/data/extensions/api_test/extension_resource_request_policy/non_existent_extension.html',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/accessible_resource.html',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/iframe-contents.html',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/iframe-contents.js',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/iframe.html',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/iframe.js',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/manifest.json',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/nonaccessible_chrome_resource_scheme.html',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/nonaccessible_resource.html',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/nonexistent_resource.html',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/test.png',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/xhr_accessible_resource.html',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/xhr_inaccessible_resource.html',
'test/data/extensions/api_test/history/common.js',
'test/data/extensions/api_test/history/delete.html',
'test/data/extensions/api_test/history/delete.js',
'test/data/extensions/api_test/history/manifest.json',
'test/data/extensions/api_test/history/search_after_add.html',
'test/data/extensions/api_test/history/search_after_add.js',
'test/data/extensions/api_test/icons/extension_no_permission/index.html',
'test/data/extensions/api_test/icons/extension_no_permission/manifest.json',
'test/data/extensions/api_test/lazy_background_page/broadcast_event/background.js',
'test/data/extensions/api_test/lazy_background_page/broadcast_event/icon19.png',
'test/data/extensions/api_test/lazy_background_page/broadcast_event/manifest.json',
'test/data/extensions/api_test/management/disabled_extension/manifest.json',
'test/data/extensions/api_test/management/test/basics.html',
'test/data/extensions/api_test/management/test/basics.js',
'test/data/extensions/api_test/management/test/common.js',
'test/data/extensions/api_test/management/test/manifest.json',
'test/data/extensions/api_test/offscreen_tabs/a.html',
'test/data/extensions/api_test/offscreen_tabs/b.html',
'test/data/extensions/api_test/offscreen_tabs/c.html',
'test/data/extensions/api_test/offscreen_tabs/display.html',
'test/data/extensions/api_test/offscreen_tabs/display.js',
'test/data/extensions/api_test/offscreen_tabs/keyboard_events.html',
'test/data/extensions/api_test/offscreen_tabs/keyboard_events.js',
'test/data/extensions/api_test/offscreen_tabs/manifest.json',
'test/data/extensions/api_test/offscreen_tabs/mouse_events.html',
'test/data/extensions/api_test/offscreen_tabs/mouse_events.js',
'test/data/extensions/api_test/offscreen_tabs/tab_util.js',
'test/data/extensions/api_test/proxy/events/invalid_proxy.html',
'test/data/extensions/api_test/proxy/events/invalid_proxy.js',
'test/data/extensions/api_test/proxy/events/manifest.json',
'test/data/extensions/api_test/proxy/events/parse_error.html',
'test/data/extensions/api_test/proxy/events/parse_error.js',
'test/data/extensions/api_test/tabs/basics/b.html',
'test/data/extensions/api_test/tabs/basics/c.html',
'test/data/extensions/api_test/tabs/basics/crash.html',
'test/data/extensions/api_test/tabs/basics/crash.js',
'test/data/extensions/api_test/tabs/basics/crud.html',
'test/data/extensions/api_test/tabs/basics/crud.js',
'test/data/extensions/api_test/tabs/basics/crud2.html',
'test/data/extensions/api_test/tabs/basics/crud2.js',
'test/data/extensions/api_test/tabs/basics/d.html',
'test/data/extensions/api_test/tabs/basics/e.html',
'test/data/extensions/api_test/tabs/basics/highlight.html',
'test/data/extensions/api_test/tabs/basics/highlight.js',
'test/data/extensions/api_test/tabs/basics/move.html',
'test/data/extensions/api_test/tabs/basics/move.js',
'test/data/extensions/api_test/tabs/basics/opener.html',
'test/data/extensions/api_test/tabs/basics/opener.js',
'test/data/extensions/api_test/tabs/basics/pinned.html',
'test/data/extensions/api_test/tabs/basics/pinned.js',
'test/data/extensions/api_test/tabs/basics/query.html',
'test/data/extensions/api_test/tabs/basics/query.js',
'test/data/extensions/api_test/tabs/basics/update.html',
'test/data/extensions/api_test/tabs/basics/update.js',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_file.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_file.js',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_nofile.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_nofile.js',
'test/data/extensions/api_test/webstore_inline_install/argument_validation.html',
'test/data/extensions/api_test/webstore_inline_install/extension.crx',
'test/data/extensions/api_test/webstore_inline_install/extension/icon.png',
'test/data/extensions/api_test/webstore_inline_install/find_link.html',
'test/data/extensions/api_test/webstore_inline_install/install.html',
'test/data/extensions/api_test/webstore_inline_install/install_non_verified_domain.html',
'test/data/extensions/api_test/webstore_inline_install/install_not_supported.html',
'test/data/extensions/api_test/webstore_inline_install/install_unpack_failure.html',
'test/data/extensions/api_test/webstore_inline_install/malformed_extension.crx',
'test/data/extensions/app_with_panel_container/manifest.json',
'test/data/extensions/autoupdate/manifest_v2.xml',
'test/data/extensions/autoupdate/manifest_v3.xml',
'test/data/extensions/autoupdate/v1.crx',
'test/data/extensions/autoupdate/v2.crx',
'test/data/extensions/autoupdate/v3.crx',
'test/data/extensions/bad_signature.crx',
'test/data/extensions/browsertest/crash_25562/background.js',
'test/data/extensions/browsertest/crash_25562/manifest.json',
'test/data/extensions/browsertest/crash_25562/script.js',
'test/data/extensions/browsertest/crash_44415/ExtA/background.js',
'test/data/extensions/browsertest/crash_44415/ExtA/icon.png',
'test/data/extensions/browsertest/crash_44415/ExtA/manifest.json',
'test/data/extensions/browsertest/crash_44415/ExtB/background.js',
'test/data/extensions/browsertest/crash_44415/ExtB/icon.png',
'test/data/extensions/browsertest/crash_44415/ExtB/manifest.json',
'test/data/extensions/context_menus/patterns/background.html',
'test/data/extensions/context_menus/patterns/manifest.json',
'test/data/extensions/context_menus/patterns/test.js',
'test/data/extensions/get_app_details_for_frame.html',
'test/data/extensions/get_app_details_for_frame_reversed.html',
'test/data/extensions/good.crx',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/backgroundpage.html',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/backgroundpage.js',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/manifest.json',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/script1.js',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/script2.js',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/style1.css',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/style2.css',
'test/data/extensions/good/Extensions/bjafgdebaacbbbecmhlhpofkepfkgcpa/1.0/background.html',
'test/data/extensions/good/Extensions/bjafgdebaacbbbecmhlhpofkepfkgcpa/1.0/background.js',
'test/data/extensions/good/Preferences',
'test/data/extensions/install/install.crx',
'test/data/extensions/install/install_older_version.crx',
'test/data/extensions/install/install_v2.crx',
'test/data/extensions/intents/ooodacpbmglpoagccnepcbfhfhpdgddn.crx',
'test/data/extensions/minimal_platform_app.crx',
'test/data/extensions/packaged_app/manifest.json',
'test/data/extensions/platform_apps/iframes/local-iframe.html',
'test/data/extensions/platform_apps/iframes/main.html',
'test/data/extensions/platform_apps/iframes/main.js',
'test/data/extensions/platform_apps/iframes/manifest.json',
'test/data/extensions/platform_apps/iframes/test.js',
'test/data/extensions/platform_apps/launch_files/test.txt',
'test/data/extensions/platform_apps/navigation/main.html',
'test/data/extensions/platform_apps/navigation/main.js',
'test/data/extensions/platform_apps/navigation/manifest.json',
'test/data/extensions/platform_apps/navigation/test.js',
'test/data/extensions/platform_apps/open_link/main.html',
'test/data/extensions/platform_apps/open_link/main.js',
'test/data/extensions/platform_apps/open_link/manifest.json',
'test/data/extensions/platform_apps/open_link/test.js',
'test/data/extensions/subscribe_page_action/background.js',
'test/data/extensions/subscribe_page_action/common.js',
'test/data/extensions/subscribe_page_action/doc_start.js',
'test/data/extensions/subscribe_page_action/feed-icon-16x16.png',
'test/data/extensions/subscribe_page_action/feed-icon-64x64.png',
'test/data/extensions/subscribe_page_action/feed_finder.js',
'test/data/extensions/subscribe_page_action/iframe.js',
'test/data/extensions/subscribe_page_action/manifest.json',
'test/data/extensions/subscribe_page_action/sniff_common.js',
'test/data/extensions/subscribe_page_action/style.css',
'test/data/extensions/subscribe_page_action/subscribe.css',
'test/data/extensions/subscribe_page_action/subscribe.html',
'test/data/extensions/subscribe_page_action/subscribe.js',
'test/data/extensions/test_file.html',
'test/data/extensions/test_file_with_about_blank_iframe.html',
'test/data/extensions/test_file_with_body.html',
'test/data/extensions/test_file_with_iframe.html',
'test/data/extensions/theme.crx',
'test/data/extensions/theme2.crx',
'test/data/extensions/uitest/plugins.pem',
'test/data/extensions/uitest/plugins_private/manifest.json',
'test/data/extensions/uitest/plugins_private/plugin.dll',
'test/data/extensions/uitest/plugins_private/plugin32.so',
'test/data/extensions/uitest/plugins_private/plugin64.so',
'test/data/extensions/uitest/plugins_private/test.html',
'test/data/extensions/uitest/plugins_private/test.js',
'test/data/feeds/feed.html',
'test/data/feeds/feed1.xml',
'test/data/feeds/feed2.xml',
'test/data/feeds/feed3.xml',
'test/data/feeds/feed4.xml',
'test/data/feeds/feed5.xml',
'test/data/feeds/feed6.xml',
'test/data/feeds/feed_invalid1.xml',
'test/data/feeds/feed_invalid2.xml',
'test/data/feeds/feed_multi_rel.html',
'test/data/feeds/feed_nolinks.xml',
'test/data/feeds/feed_script.xml',
'test/data/feeds/no_feed.html',
'test/data/fileurl_universalaccess.html',
'test/data/find_in_page/anchor.html',
'test/data/find_in_page/bug_1155639.html',
'test/data/find_in_page/crash_1341577.html',
'test/data/find_in_page/crash_14491.html',
'test/data/find_in_page/end_state.html',
'test/data/find_in_page/framedata_general.html',
'test/data/find_in_page/framedata_left.html',
'test/data/find_in_page/frames.html',
'test/data/find_in_page/large_textarea.html',
'test/data/find_in_page/link.html',
'test/data/find_in_page/move_if_obscuring.html',
'test/data/find_in_page/select_changes_ordinal.html',
'test/data/find_in_page/simple.html',
'test/data/find_in_page/user-select.html',
'test/data/form.html',
'test/data/french_page.html',
'test/data/geolocation/simple.html',
'test/data/geolocation/tab_destroyed.html',
'test/data/geolocation/tab_destroyed_frame.html',
'test/data/google.mht',
'test/data/google/logo.gif',
'test/data/gpu/canvas_popup.html',
'test/data/gpu/feature_canvas2d.html',
'test/data/gpu/feature_compositing.html',
'test/data/gpu/feature_multisampling.html',
'test/data/gpu/feature_raf_no_damage.html',
'test/data/gpu/feature_webgl.html',
'test/data/gpu/webgl_popup.html',
'test/data/iframe.html',
'test/data/iframe_dns_error.html',
'test/data/iframe_in_empty_frame.html',
'test/data/iframe_in_empty_frame.js',
'test/data/is_search_provider_installed.html',
'test/data/is_search_provider_installed_with_exception.html',
'test/data/media/bear.ogv',
'test/data/media/bear.webm',
'test/data/media/bear_pcm.wav',
'test/data/media/bear_silent.ogv',
'test/data/media/bear_silent.webm',
'test/data/media/player.html',
'test/data/mock-link-doctor.html',
'test/data/mock-link-doctor.html.mock-http-headers',
'test/data/navigate_opener.html',
'test/data/notifications/notifications_request_function.html',
'test/data/notifications/notifications_request_inline.html',
'test/data/npapi/arguments.html',
'test/data/npapi/clicktoplay.html',
'test/data/npapi/get_javascript_open_popup_with_plugin.html',
'test/data/npapi/get_javascript_url.html',
'test/data/npapi/get_javascript_url2.html',
'test/data/npapi/get_javascript_url2_frame.html',
'test/data/npapi/geturl.html',
'test/data/npapi/geturl_redirect_notify.html',
'test/data/npapi/layout_test_plugin.html',
'test/data/npapi/load_all_blocked_plugins.html',
'test/data/npapi/many_plugins.html',
'test/data/npapi/npapi.js',
'test/data/npapi/npobject_identity.html',
'test/data/npapi/npobject_proxy.html',
'test/data/npapi/npobject_released_on_destruction.html',
'test/data/npapi/npobject_set_exception.html',
'test/data/npapi/plugin_delete_in_deallocate.html',
'test/data/npapi/plugin_read_page.html',
'test/data/npapi/plugin_read_page.html.mock-http-headers',
'test/data/npapi/plugin_read_page_redirect_src.html',
'test/data/npapi/plugin_read_page_redirect_src.html.mock-http-headers',
'test/data/npapi/plugin_ref_target_page.html',
'test/data/npapi/plugin_ref_target_page.html.mock-http-headers',
'test/data/npapi/plugin_thread_async_call.html',
'test/data/npapi/plugin_url_request_404.html',
'test/data/npapi/plugin_url_request_fail_write.html',
'test/data/npapi/plugin_url_request_referrer_test.html',
'test/data/npapi/popup_window_with_target_plugin.html',
'test/data/npapi/private.html',
'test/data/npapi/schedule_timer.html',
'test/data/npapi/self_delete_plugin_geturl.html',
'test/data/npapi/self_delete_plugin_invoke.html',
'test/data/npapi/self_delete_plugin_invoke_alert.html',
'test/data/npapi/self_delete_plugin_stream.html',
'test/data/page404.html',
'test/data/page404.html.mock-http-headers',
'test/data/page_cycler/animate2.gif',
'test/data/page_cycler/basic_css.html',
'test/data/page_cycler/basic_html.html',
'test/data/page_cycler/basic_js.html',
'test/data/popup_blocker/popup-blocked-to-post-blank.html',
'test/data/post_message.html',
'test/data/prerender/bear.ogv',
'test/data/prerender/bear.wav',
'test/data/prerender/extension.crx',
'test/data/prerender/favicon.ico',
'test/data/prerender/image.jpeg',
'test/data/prerender/image.png',
'test/data/prerender/plugin_delay_load.html',
'test/data/prerender/prefetch_target.lnk',
'test/data/prerender/prerender_alert_after_onload.html',
'test/data/prerender/prerender_alert_before_onload.html',
'test/data/prerender/prerender_download_iframe.html',
'test/data/prerender/prerender_download_refresh.html',
'test/data/prerender/prerender_embedded_content.html',
'test/data/prerender/prerender_excessive_memory.html',
'test/data/prerender/prerender_favicon.html',
'test/data/prerender/prerender_fragment_location_hash.html',
'test/data/prerender/prerender_html5_audio.html',
'test/data/prerender/prerender_html5_audio_autoplay.html',
'test/data/prerender/prerender_html5_audio_jsplay.html',
'test/data/prerender/prerender_html5_common.js',
'test/data/prerender/prerender_html5_video.html',
'test/data/prerender/prerender_html5_video_network.html',
'test/data/prerender/prerender_html5_video_script.html',
'test/data/prerender/prerender_http_auth_container.html',
'test/data/prerender/prerender_iframe_plugin_delay_load.html',
'test/data/prerender/prerender_infinite_a.html',
'test/data/prerender/prerender_infinite_a_multiple.html',
'test/data/prerender/prerender_infinite_b.html',
'test/data/prerender/prerender_infinite_b_multiple.html',
'test/data/prerender/prerender_infinite_c_multiple.html',
'test/data/prerender/prerender_loader.html',
'test/data/prerender/prerender_loader_removing_links.html',
'test/data/prerender/prerender_loader_with_referrer_policy.html',
'test/data/prerender/prerender_loader_with_session_storage.html',
'test/data/prerender/prerender_loader_with_unload.html',
'test/data/prerender/prerender_localstorage_read.html',
'test/data/prerender/prerender_localstorage_write.html',
'test/data/prerender/prerender_no_referrer.html',
'test/data/prerender/prerender_page.html',
'test/data/prerender/prerender_page_with_link.html',
'test/data/prerender/prerender_plugin_click_to_play.html',
'test/data/prerender/prerender_plugin_nacl_disabled.html',
'test/data/prerender/prerender_plugin_nacl_enabled.html',
'test/data/prerender/prerender_popup.html',
'test/data/prerender/prerender_print.html',
'test/data/prerender/prerender_referrer.html',
'test/data/prerender/prerender_referrer_policy.html',
'test/data/prerender/prerender_size.html',
'test/data/prerender/prerender_visibility.html',
'test/data/prerender/prerender_visibility_quick.html',
'test/data/prerender/prerender_visibility_shared.js',
'test/data/prerender/prerender_with_iframe.html',
'test/data/prerender/prerender_with_image.html',
'test/data/prerender/prerender_xhr_delete.html',
'test/data/prerender/prerender_xhr_get.html',
'test/data/prerender/prerender_xhr_head.html',
'test/data/prerender/prerender_xhr_options.html',
'test/data/prerender/prerender_xhr_post.html',
'test/data/prerender/prerender_xhr_put.html',
'test/data/prerender/prerender_xhr_trace.html',
'test/data/prerender/simple_prefetch.html',
'test/data/redirect-cross-origin.html',
'test/data/redirect-cross-origin.html.mock-http-headers',
'test/data/redirect-loop.html',
'test/data/redirect-loop.html.mock-http-headers',
'test/data/ref_redirect.html',
'test/data/safe_browsing/iframe_redirect_malware.html',
'test/data/safe_browsing/interstitial_cancel.html',
'test/data/safe_browsing/malware.html',
'test/data/safe_browsing/malware_iframe.html',
'test/data/safe_browsing/prefetch_malware.html',
'test/data/save_page/1.css',
'test/data/save_page/1.png',
'test/data/save_page/a.htm',
'test/data/save_page/b.htm',
'test/data/save_page/b.saved1.htm',
'test/data/save_page/b.saved2.htm',
'test/data/session_history/bot1.html',
'test/data/session_history/bot2.html',
'test/data/session_history/bot3.html',
'test/data/showmodaldialog.html',
'test/data/showmodaldialog_dialog.html',
'test/data/simple.html',
'test/data/ssl/blank_page.html',
'test/data/ssl/frame_left.html',
'test/data/ssl/frame_right.html',
'test/data/ssl/google.html',
'test/data/ssl/imported.js',
'test/data/ssl/page_displays_insecure_content.html',
'test/data/ssl/page_displays_insecure_iframe.html',
'test/data/ssl/page_runs_insecure_content.html',
'test/data/ssl/page_with_dynamic_insecure_content.html',
'test/data/ssl/page_with_refs.html',
'test/data/ssl/page_with_unsafe_contents.html',
'test/data/ssl/page_with_unsafe_worker.html',
'test/data/ssl/randomize_hash.js',
'test/data/ssl/top_frame.html',
'test/data/ssl/unsafe_worker.js',
'test/data/ssl/wss_close.html',
'test/data/ssl/wss_close_slave.html',
'test/data/title1.html',
'test/data/title2.html',
'test/data/title3.html',
'test/data/webui/async.js',
'test/data/webui/bidichecker_tests.js',
'test/data/webui/most_visited_page_test.js',
'test/data/webui/runtime_error.js',
'test/data/webui/sample_downloads.js',
'test/data/window.close.html',
'test/data/workers/debug_shared_worker_initialization.html',
'test/data/workers/debug_shared_worker_initialization.js',
'test/data/workers/multi_worker.html',
'test/data/workers/worker_common.js',
'test/data/workers/worker_utils.js',
'test/data/workers/workers_ui_shared_worker.html',
'test/data/workers/workers_ui_shared_worker.js',
],
'isolate_dependency_untracked': [
'../content/test/data/dom_storage/',
'../third_party/WebKit/LayoutTests/fast/events/message-channel-gc-2-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-channel-gc-2.html',
'../third_party/WebKit/LayoutTests/fast/events/message-channel-gc-3-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-channel-gc-3.html',
'../third_party/WebKit/LayoutTests/fast/events/message-channel-gc-4-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-channel-gc-4.html',
'../third_party/WebKit/LayoutTests/fast/events/message-channel-gc-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-port-clone-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-port-clone.html',
'../third_party/WebKit/LayoutTests/fast/events/message-port-constructor-for-deleted-document-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-port-constructor-for-deleted-document.html',
'../third_party/WebKit/LayoutTests/fast/events/message-port-deleted-document-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-port-deleted-document.html',
'../third_party/WebKit/LayoutTests/fast/events/message-port-deleted-frame-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-port-deleted-frame.html',
'../third_party/WebKit/LayoutTests/fast/events/message-port-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-port-inactive-document-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-port-inactive-document.html',
'../third_party/WebKit/LayoutTests/fast/events/message-port-multi.html',
'../third_party/WebKit/LayoutTests/fast/events/message-port-no-wrapper-expected.txt',
'../third_party/WebKit/LayoutTests/fast/events/message-port-no-wrapper.html',
'../third_party/WebKit/LayoutTests/fast/events/message-port.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-context-gc-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-event-listener-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-gc-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-in-iframe-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-load-error-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-name-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-navigator-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-replace-global-constructor-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-replace-self-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-shared-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/worker-messageport-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/worker-messageport-gc-expected.txt',
'../third_party/WebKit/LayoutTests/fast/workers/worker-messageport.html',
'../third_party/WebKit/LayoutTests/media/audio-constructor-expected.txt',
'../third_party/WebKit/LayoutTests/media/audio-constructor-preload-expected.txt',
'../third_party/WebKit/LayoutTests/media/audio-constructor-preload.html',
'../third_party/WebKit/LayoutTests/media/audio-constructor-src-expected.txt',
'../third_party/WebKit/LayoutTests/media/audio-constructor-src.html',
'../third_party/WebKit/LayoutTests/media/audio-constructor.html',
'../third_party/WebKit/LayoutTests/media/audio-data-url-expected.txt',
'../third_party/WebKit/LayoutTests/media/audio-data-url.html',
'../third_party/WebKit/LayoutTests/media/audio-no-installed-engines-expected.txt',
'../third_party/WebKit/LayoutTests/media/audio-no-installed-engines.html',
'../third_party/WebKit/LayoutTests/media/audio-only-video-intrinsic-size-expected.txt',
'../third_party/WebKit/LayoutTests/media/audio-only-video-intrinsic-size.html',
'../third_party/WebKit/LayoutTests/media/audio-play-event-expected.txt',
'../third_party/WebKit/LayoutTests/media/audio-play-event.html',
'../third_party/WebKit/LayoutTests/media/content/',
'../third_party/WebKit/LayoutTests/media/media-can-play-wav-audio.html',
'../third_party/WebKit/LayoutTests/media/media-document-audio-size-expected.txt',
'../third_party/WebKit/LayoutTests/media/media-document-audio-size.html',
'../third_party/WebKit/LayoutTests/media/media-file.js',
'../third_party/WebKit/LayoutTests/media/media-fullscreen.js',
'../third_party/WebKit/LayoutTests/media/resources/',
'../third_party/WebKit/LayoutTests/media/video-autoplay-expected.txt',
'../third_party/WebKit/LayoutTests/media/video-autoplay.html',
'../third_party/WebKit/LayoutTests/media/video-no-autoplay-expected.txt',
'../third_party/WebKit/LayoutTests/media/video-no-autoplay.html',
'../third_party/WebKit/LayoutTests/media/video-paint-test.js',
'../third_party/WebKit/LayoutTests/media/video-played.js',
'../third_party/WebKit/LayoutTests/media/video-test.js',
'../third_party/WebKit/LayoutTests/platform/chromium-win/fast/workers/shared-worker-constructor-expected.txt',
'../third_party/WebKit/LayoutTests/platform/chromium-win/fast/workers/shared-worker-exception-expected.txt',
'../third_party/WebKit/LayoutTests/platform/chromium-win/fast/workers/shared-worker-location-expected.txt',
'../third_party/WebKit/LayoutTests/platform/chromium-win/fast/workers/shared-worker-script-error-expected.txt',
'../third_party/WebKit/LayoutTests/platform/chromium-win/fast/workers/worker-context-multi-port-expected.txt',
'../third_party/WebKit/LayoutTests/platform/chromium-win/fast/workers/worker-multi-port-expected.txt',
'../third_party/WebKit/LayoutTests/platform/chromium/fast/events/message-port-multi-expected.txt',
'../third_party/WebKit/LayoutTests/platform/chromium/media/media-can-play-wav-audio-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/basics-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/basics-shared-workers-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/basics-shared-workers.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/basics-workers-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/basics-workers.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/basics.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/database-basics-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/database-basics.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/deleteIndex-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/deleteIndex.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/dont-commit-on-blocked-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/dont-commit-on-blocked.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/factory-basics-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/factory-basics.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-basics-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-basics.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-count-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-count.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-cursor-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-cursor.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-get-key-argument-required-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-get-key-argument-required.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-multientry-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-multientry.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-population-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-population.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-unique-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/index-unique.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/invalid-keys-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/invalid-keys.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-generator-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-generator.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-sort-order-across-types-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-sort-order-across-types.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-sort-order-date-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-sort-order-date.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-type-array-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-type-array.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-type-infinity-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/key-type-infinity.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keypath-basics-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keypath-basics.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keypath-edges-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keypath-edges.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keypath-fetch-key-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keypath-fetch-key.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keyrange-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keyrange-required-arguments-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keyrange-required-arguments.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/keyrange.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/objectstore-basics-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/objectstore-basics.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/prefetch-bugfix-108071-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/prefetch-bugfix-108071.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/resources/',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-after-close-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-after-close.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-and-objectstore-calls-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-and-objectstore-calls.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-basics-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-basics.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-crash-on-abort-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-crash-on-abort.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-event-propagation-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-event-propagation.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-read-only-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-read-only.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-rollback-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-rollback.html',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-storeNames-required-expected.txt',
'../third_party/WebKit/LayoutTests/storage/indexeddb/transaction-storeNames-required.html',
'../third_party/bidichecker/',
'<(PRODUCT_DIR)/plugins/',
'<(PRODUCT_DIR)/pseudo_locales/',
'<(PRODUCT_DIR)/resources/extension/',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/net_internals/',
'<(PRODUCT_DIR)/test_url_loader_data/',
'test/data/automation/',
'test/data/captive_portal/',
'test/data/device_orientation/',
'test/data/devtools/',
'test/data/dom_automation/',
'test/data/encoding_tests/auto_detect/',
'test/data/encoding_tests/user_override/',
'test/data/extensions/api_test/accessible_cer/',
'test/data/extensions/api_test/all_urls/',
'test/data/extensions/api_test/apitest/',
'test/data/extensions/api_test/app_background_page/basic/',
'test/data/extensions/api_test/app_background_page/basic_close/',
'test/data/extensions/api_test/app_background_page/basic_open/',
'test/data/extensions/api_test/app_background_page/common/',
'test/data/extensions/api_test/app_background_page/no_js/',
'test/data/extensions/api_test/app_background_page/no_js_manifest/',
'test/data/extensions/api_test/app_background_page/two_pages/',
'test/data/extensions/api_test/app_background_page/two_with_manifest/',
'test/data/extensions/api_test/app_launcher/',
'test/data/extensions/api_test/app_process/path1/',
'test/data/extensions/api_test/app_process/path2/',
'test/data/extensions/api_test/app_process/path3/',
'test/data/extensions/api_test/app_process_background_instances/',
'test/data/extensions/api_test/app_process_instances/',
'test/data/extensions/api_test/background_scripts/',
'test/data/extensions/api_test/bindings/',
'test/data/extensions/api_test/browser_action/basics/',
'test/data/extensions/api_test/browser_action/close_background/',
'test/data/extensions/api_test/browser_action/color/',
'test/data/extensions/api_test/browser_action/getters/',
'test/data/extensions/api_test/browser_action/no_icon/',
'test/data/extensions/api_test/canvas_2d/',
'test/data/extensions/api_test/chrome_auth_private/',
'test/data/extensions/api_test/clipboard/',
'test/data/extensions/api_test/content_scripts/',
'test/data/extensions/api_test/content_scripts/all_frames/',
'test/data/extensions/api_test/content_security_policy/',
'test/data/extensions/api_test/cross_origin_xhr/',
'test/data/extensions/api_test/debugger/',
'test/data/extensions/api_test/declarative/',
'test/data/extensions/api_test/default_content_security_policy/',
'test/data/extensions/api_test/dns/',
'test/data/extensions/api_test/events/',
'test/data/extensions/api_test/executescript/',
'test/data/extensions/api_test/extension_module/',
'test/data/extensions/api_test/extension_resource_request_policy/extension/',
'test/data/extensions/api_test/font_settings/',
'test/data/extensions/api_test/i18n/',
'test/data/extensions/api_test/icons/extension_with_permission/',
'test/data/extensions/api_test/identity/',
'test/data/extensions/api_test/idltest/',
'test/data/extensions/api_test/incognito/apis/',
'test/data/extensions/api_test/incognito/apis_disabled/',
'test/data/extensions/api_test/incognito/popup/',
'test/data/extensions/api_test/incognito/split/',
'test/data/extensions/api_test/keybinding/',
'test/data/extensions/api_test/lazy_background_page/browser_action_create_tab/',
'test/data/extensions/api_test/lazy_background_page/browser_action_with_callback/',
'test/data/extensions/api_test/lazy_background_page/incognito_split/',
'test/data/extensions/api_test/lazy_background_page/messaging/',
'test/data/extensions/api_test/lazy_background_page/on_installed/',
'test/data/extensions/api_test/lazy_background_page/on_unload/',
'test/data/extensions/api_test/lazy_background_page/wait_for_request/',
'test/data/extensions/api_test/lazy_background_page/wait_for_view/',
'test/data/extensions/api_test/managed_mode/',
'test/data/extensions/api_test/management/description/',
'test/data/extensions/api_test/management/disabled_app/',
'test/data/extensions/api_test/management/enabled_app/',
'test/data/extensions/api_test/management/enabled_extension/',
'test/data/extensions/api_test/management/launch_app_panel/',
'test/data/extensions/api_test/management/launch_app_tab/',
'test/data/extensions/api_test/management/launch_on_install/',
'test/data/extensions/api_test/management/management_policy/',
'test/data/extensions/api_test/management/permissions/',
'test/data/extensions/api_test/management/test/',
'test/data/extensions/api_test/media_gallery/',
'test/data/extensions/api_test/messaging/connect_external/',
'test/data/extensions/api_test/messaging/event_url/',
'test/data/extensions/api_test/metrics/',
'test/data/extensions/api_test/mutation_observers/',
'test/data/extensions/api_test/override/history/',
'test/data/extensions/api_test/override/newtab/',
'test/data/extensions/api_test/page_action/hash_change/',
'test/data/extensions/api_test/permissions/enabled/',
'test/data/extensions/api_test/preference/',
'test/data/extensions/api_test/processes/onupdated/',
'test/data/extensions/api_test/proxy/auto/',
'test/data/extensions/api_test/proxy/bypass/',
'test/data/extensions/api_test/proxy/individual/',
'test/data/extensions/api_test/proxy/individual_incognito_only/',
'test/data/extensions/api_test/proxy/individual_remove/',
'test/data/extensions/api_test/proxy/pac/',
'test/data/extensions/api_test/proxy/pacdata/',
'test/data/extensions/api_test/proxy/single/',
'test/data/extensions/api_test/proxy/system/',
'test/data/extensions/api_test/sandboxed_pages/',
'test/data/extensions/api_test/serial/',
'test/data/extensions/api_test/settings/',
'test/data/extensions/api_test/socket/',
'test/data/extensions/api_test/speech_input/',
'test/data/extensions/api_test/storage/',
'test/data/extensions/api_test/stubs/',
'test/data/extensions/api_test/system/get_incognito_mode_availability/',
'test/data/extensions/api_test/tabs/current_window/',
'test/data/extensions/api_test/tabs/incognito_disabled/',
'test/data/extensions/api_test/tabs/javascript_url_permissions/',
'test/data/extensions/api_test/tabs/on_updated/',
'test/data/extensions/api_test/tts/',
'test/data/extensions/api_test/tts_engine/',
'test/data/extensions/api_test/webnavigation/',
'test/data/extensions/api_test/webrequest/',
'test/data/extensions/api_test/websocket/',
'test/data/extensions/api_test/webstore_inline_install/inlineinstall/',
'test/data/extensions/api_test/webstore_private/',
'test/data/extensions/api_test/window_open/argument_overflow/',
'test/data/extensions/api_test/window_open/browser_is_app/',
'test/data/extensions/api_test/window_open/close_panels_on_uninstall/',
'test/data/extensions/api_test/window_open/panel/',
'test/data/extensions/api_test/window_open/popup/',
'test/data/extensions/api_test/window_open/popup_blocking/',
'test/data/extensions/api_test/window_open/popup_large/',
'test/data/extensions/api_test/window_open/popup_small/',
'test/data/extensions/app/',
'test/data/extensions/app1/',
'test/data/extensions/app2/',
'test/data/extensions/app_dot_com_app/',
'test/data/extensions/app_notifications/',
'test/data/extensions/app_with_tab_container/',
'test/data/extensions/browsertest/last_error/',
'test/data/extensions/browsertest/title_localized_pa/',
'test/data/extensions/browsertest/url_rewrite/bookmarks/',
'test/data/extensions/browsertest/url_rewrite/newtab/',
'test/data/extensions/common/',
'test/data/extensions/context_menus/enabled/',
'test/data/extensions/context_menus/event_page/',
'test/data/extensions/context_menus/frames/',
'test/data/extensions/context_menus/long_title/',
'test/data/extensions/context_menus/separators/',
'test/data/extensions/context_menus/simple/',
'test/data/extensions/context_menus/target_urls/',
'test/data/extensions/convert_web_app/',
'test/data/extensions/devtools/',
'test/data/extensions/experimental/',
'test/data/extensions/good/Extensions/',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/_locales/en_US/',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/js_files/',
'test/data/extensions/hosted_app/',
'test/data/extensions/install/install/',
'test/data/extensions/isolated_apps/',
'test/data/extensions/management/',
'test/data/extensions/packaged_app/',
'test/data/extensions/permissions_increase/',
'test/data/extensions/platform_apps/context_menu/',
'test/data/extensions/platform_apps/get_display_path/',
'test/data/extensions/platform_apps/isolation/',
'test/data/extensions/platform_apps/launch/',
'test/data/extensions/platform_apps/launch_file/',
'test/data/extensions/platform_apps/launch_invalid/',
'test/data/extensions/platform_apps/launch_no_intent/',
'test/data/extensions/platform_apps/launch_nothing/',
'test/data/extensions/platform_apps/launch_wrong_intent/',
'test/data/extensions/platform_apps/launch_wrong_type/',
'test/data/extensions/platform_apps/minimal/',
'test/data/extensions/platform_apps/restrictions/',
'test/data/extensions/platform_apps/storage/',
'test/data/extensions/platform_apps/windows_api/',
'test/data/extensions/subscribe_page_action/_locales/en/',
'test/data/extensions/theme/',
'test/data/extensions/theme2/',
'test/data/extensions/uitest/plugins/',
'test/data/extensions/uitest/window_open/',
'test/data/fast_shutdown/',
'test/data/fileapi/',
'test/data/google/',
'test/data/http/',
'test/data/login/',
'test/data/page_cycler/cached_data_dir/',
'test/data/plugin/flash.html',
'test/data/plugin/flash.swf',
'test/data/plugin/plugin_common.js',
'test/data/policy/',
'test/data/profiles/webkit_global_migration/',
'test/data/profiles/webkit_global_reverse_migration/',
'test/data/referrer_policy/',
'test/data/ssl/google_files/',
'test/data/viewsource/',
],
},
}, {
'variables': {
'command': [
'../testing/test_env.py',
'<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
],
},
}],
['OS=="mac"', {
'variables': {
'isolate_dependency_tracked': [
'<(PRODUCT_DIR)/ffmpegsumo.so',
],
'isolate_dependency_untracked': [
'<(PRODUCT_DIR)/Chromium Framework.framework/',
'<(PRODUCT_DIR)/Chromium.app/',
'test/data/extensions/api_test/bookmark_manager/standard/',
],
},
}, {
'variables': {
'isolate_dependency_tracked': [
'../third_party/WebKit/Tools/Scripts/new-run-webkit-websocketserver',
'../third_party/WebKit/Tools/Scripts/webkitpy/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/changelog.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/checkout.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/commitinfo.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/deps.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/diff_parser.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/commitmessage.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/detection.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/svn.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/config/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/config/committers.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/config/urls.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/editdistance.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/find_files.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/host.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/memoized.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/bugzilla/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/bugzilla/attachment.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/bugzilla/bug.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/bugzilla/bugzilla.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/buildbot.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/chromiumbuildbot.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/credentials.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/failuremap.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/file_uploader.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/networktransaction.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/regressionwindow.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/resultsjsonparser.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/net/web.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/read_checksum_from_png.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/autoinstall.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/deprecated_logging.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/environment.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/file_lock.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/logutils.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/path.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/watchlist/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/watchlist/amountchangedpattern.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/watchlist/changedlinepattern.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/watchlist/filenamepattern.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/watchlist/watchlist.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/watchlist/watchlistloader.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/watchlist/watchlistparser.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/common/watchlist/watchlistrule.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/test_result_writer.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/worker.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/result_summary.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_failures.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_input.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_results.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/builders.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/chromium.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/chromium_linux.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/config.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/driver.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/factory.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/http_lock.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/server_process.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/webkit.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/apache_http_server.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/http_server.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/http_server_base.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/websocket_server.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/metered_stream.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/printing.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/BeautifulSoup.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_base.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hixie75.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hybi.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/common.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/dispatch.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/extensions.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/http_header_util.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/memorizingfile.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/msgutil.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/standalone.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/stream.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/util.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/tool/__init__.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/tool/grammar.py',
'<(PRODUCT_DIR)/locales/en-US.pak',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/assertions.js',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/chrome_send_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/mock4js_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/net_internals/net_internals_test.js',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/print_preview.js',
'<(PRODUCT_DIR)/theme_resources_standard.pak',
'<(PRODUCT_DIR)/ui_resources_standard.pak',
'test/data/extensions/api_test/content_scripts/isolated_world1/a.js',
'test/data/extensions/api_test/content_scripts/isolated_world1/b.js',
'test/data/extensions/api_test/content_scripts/isolated_world1/manifest.json',
'test/data/extensions/api_test/context_menus/add_from_multiple_contexts/background.js',
'test/data/extensions/api_test/context_menus/add_from_multiple_contexts/manifest.json',
'test/data/extensions/api_test/context_menus/add_from_multiple_contexts/popup.html',
'test/data/extensions/api_test/context_menus/add_from_multiple_contexts/popup.js',
'test/data/extensions/api_test/context_menus/add_from_multiple_contexts/popup2.html',
'test/data/extensions/api_test/context_menus/add_from_multiple_contexts/popup2.js',
'test/data/extensions/api_test/page_action/add_popup/background.js',
'test/data/extensions/api_test/page_action/add_popup/change_popup.html',
'test/data/extensions/api_test/page_action/add_popup/change_popup.js',
'test/data/extensions/api_test/page_action/add_popup/icon.png',
'test/data/extensions/api_test/page_action/add_popup/manifest.json',
'test/data/extensions/api_test/page_action/remove_popup/background.js',
'test/data/extensions/api_test/page_action/remove_popup/icon.png',
'test/data/extensions/api_test/page_action/remove_popup/manifest.json',
'test/data/extensions/api_test/page_action/remove_popup/remove_popup.html',
'test/data/extensions/api_test/page_action/remove_popup/remove_popup.js',
'test/data/extensions/good/Extensions/bjafgdebaacbbbecmhlhpofkepfkgcpa/1.0/manifest.json',
'test/data/extensions/test_file.txt',
'test/data/webui/print_preview_hello_world_test.html',
],
'isolate_dependency_untracked': [
'../third_party/WebKit/LayoutTests/fast/events/message-channel-gc.html',
'../third_party/WebKit/LayoutTests/fast/events/resources/',
'../third_party/WebKit/LayoutTests/fast/js/resources/',
'../third_party/WebKit/LayoutTests/fast/workers/resources/',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-constructor.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-context-gc.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-event-listener.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-exception.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-gc.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-in-iframe.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-load-error.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-location.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-name.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-navigator.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-replace-global-constructor.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-replace-self.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-script-error.html',
'../third_party/WebKit/LayoutTests/fast/workers/shared-worker-shared.html',
'../third_party/WebKit/LayoutTests/fast/workers/worker-context-multi-port.html',
'../third_party/WebKit/LayoutTests/fast/workers/worker-messageport-gc.html',
'../third_party/WebKit/LayoutTests/fast/workers/worker-multi-port.html',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/handler_map.txt',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/bad-handshake-crash_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/client-close_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/close-on-unload_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/echo-challenge_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/echo-cookie_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/echo-location_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/echo_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/fixed-origin_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/frame-length-longer-than-buffer_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/frame-length-overflow_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/frame-length-skip_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/handshake-error_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/handshake-fail-by-maxlength_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/handshake-fail-by-no-connection-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/handshake-fail-by-no-cr_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/handshake-fail-by-no-upgrade-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/handshake-fail-by-prepended-null_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/long-invalid-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/no-query_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/origin-test_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/protocol-test_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/send2_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/send_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/server-close_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/simple_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/split-binary-frame-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/unicode_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/unknown-frame-type_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/workers/resources/echo-challenge_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/workers/resources/echo_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hixie76/workers/resources/simple_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/accept-first-subprotocol_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/bad-handshake-crash_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/binary-frames_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/broken-utf8_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/check-binary-messages_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/client-close_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/close-code-and-reason_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/close-on-unload_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/close_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/compressed-control-frame_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/deflate-frame_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/echo-challenge_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/echo-cookie_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/echo-location_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/echo-with-no-extension_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/echo_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/fragmented-binary-frames_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/fragmented-control-frame_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/fragmented-frames_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-error_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-maxlength_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-mismatch-protocol-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-more-accept-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-more-protocol-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-connection-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-cr_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-upgrade-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-prepended-null_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-wrong-accept-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/interleaved-fragments_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/invalid-continuation_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/invalid-encode-length_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/invalid-masked-frames-from-server_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/long-control-frame_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/long-invalid-header_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/no-query_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/origin-test_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/pong_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/protocol-test_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/reserved-bits_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/reserved-opcodes_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/send-file-blob_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/send2_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/send_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/server-close_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/simple_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/too-long-payload_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/unicode_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/unmasked-frames_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/binary-frames_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/check-binary-messages_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/echo-challenge_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/echo_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/protocol-test_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/simple_wsh.py',
'../third_party/WebKit/LayoutTests/http/tests/websocket/tests/hybi/zero-length-text_wsh.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/extensions/',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/help/',
'test/data/extensions/api_test/alert/',
'test/data/extensions/api_test/bookmark_manager/',
'test/data/extensions/api_test/content_settings/standard/',
'test/data/extensions/api_test/context_menus/basics/',
'test/data/extensions/api_test/context_menus/event_page/',
'test/data/extensions/api_test/context_menus/item_ids/',
'test/data/extensions/api_test/context_menus/no_perms/',
'test/data/extensions/api_test/cookies/',
'test/data/extensions/api_test/incognito/content_scripts/',
'test/data/extensions/api_test/page_action/basics/',
'test/data/extensions/api_test/page_action/crash_57333/',
'test/data/extensions/api_test/page_action/getters/',
'test/data/extensions/api_test/page_action/old_api/',
'test/data/extensions/api_test/permissions/disabled/',
'test/data/extensions/api_test/permissions/experimental_disabled/',
'test/data/extensions/api_test/permissions/favicon/',
'test/data/extensions/api_test/permissions/optional/',
'test/data/extensions/api_test/permissions/optional_deny/',
'test/data/extensions/api_test/permissions/optional_gesture/',
],
},
}],
['OS=="win"', {
'variables': {
'isolate_dependency_tracked': [
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/chromium_mac.py',
'../third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py',
'../third_party/cygwin/bin/bash.exe',
'../third_party/cygwin/setup_env.bat',
'../third_party/cygwin/setup_mount.bat',
'../third_party/mesa/MesaLib/src/glsl/ir_reader.cpp',
'../third_party/mesa/MesaLib/src/mesa/main/mtypes.h',
'../third_party/python_26/DLLs/_ctypes.pyd',
'../third_party/python_26/DLLs/_hashlib.pyd',
'../third_party/python_26/DLLs/_multiprocessing.pyd',
'../third_party/python_26/DLLs/_socket.pyd',
'../third_party/python_26/DLLs/_ssl.pyd',
'../third_party/python_26/DLLs/pyexpat.pyd',
'../third_party/python_26/DLLs/select.pyd',
'../third_party/python_26/Lib/BaseHTTPServer.py',
'../third_party/python_26/Lib/CGIHTTPServer.py',
'../third_party/python_26/Lib/ConfigParser.py',
'../third_party/python_26/Lib/Queue.py',
'../third_party/python_26/Lib/SimpleHTTPServer.py',
'../third_party/python_26/Lib/SocketServer.py',
'../third_party/python_26/Lib/StringIO.py',
'../third_party/python_26/Lib/UserDict.py',
'../third_party/python_26/Lib/__future__.py',
'../third_party/python_26/Lib/_abcoll.py',
'../third_party/python_26/Lib/abc.py',
'../third_party/python_26/Lib/anydbm.py',
'../third_party/python_26/Lib/asynchat.py',
'../third_party/python_26/Lib/asyncore.py',
'../third_party/python_26/Lib/atexit.py',
'../third_party/python_26/Lib/base64.py',
'../third_party/python_26/Lib/bisect.py',
'../third_party/python_26/Lib/cgi.py',
'../third_party/python_26/Lib/codecs.py',
'../third_party/python_26/Lib/collections.py',
'../third_party/python_26/Lib/copy.py',
'../third_party/python_26/Lib/copy_reg.py',
'../third_party/python_26/Lib/ctypes/__init__.py',
'../third_party/python_26/Lib/ctypes/_endian.py',
'../third_party/python_26/Lib/dbhash.py',
'../third_party/python_26/Lib/difflib.py',
'../third_party/python_26/Lib/dumbdbm.py',
'../third_party/python_26/Lib/email/__init__.py',
'../third_party/python_26/Lib/email/_parseaddr.py',
'../third_party/python_26/Lib/email/base64mime.py',
'../third_party/python_26/Lib/email/encoders.py',
'../third_party/python_26/Lib/email/mime/__init__.py',
'../third_party/python_26/Lib/email/utils.py',
'../third_party/python_26/Lib/encodings/__init__.py',
'../third_party/python_26/Lib/encodings/aliases.py',
'../third_party/python_26/Lib/encodings/cp1252.py',
'../third_party/python_26/Lib/encodings/hex_codec.py',
'../third_party/python_26/Lib/encodings/mbcs.py',
'../third_party/python_26/Lib/encodings/utf_8.py',
'../third_party/python_26/Lib/fileinput.py',
'../third_party/python_26/Lib/fnmatch.py',
'../third_party/python_26/Lib/functools.py',
'../third_party/python_26/Lib/genericpath.py',
'../third_party/python_26/Lib/getpass.py',
'../third_party/python_26/Lib/gettext.py',
'../third_party/python_26/Lib/glob.py',
'../third_party/python_26/Lib/hashlib.py',
'../third_party/python_26/Lib/heapq.py',
'../third_party/python_26/Lib/hmac.py',
'../third_party/python_26/Lib/htmlentitydefs.py',
'../third_party/python_26/Lib/httplib.py',
'../third_party/python_26/Lib/imaplib.py',
'../third_party/python_26/Lib/json/__init__.py',
'../third_party/python_26/Lib/json/decoder.py',
'../third_party/python_26/Lib/json/encoder.py',
'../third_party/python_26/Lib/json/scanner.py',
'../third_party/python_26/Lib/keyword.py',
'../third_party/python_26/Lib/linecache.py',
'../third_party/python_26/Lib/locale.py',
'../third_party/python_26/Lib/logging/__init__.py',
'../third_party/python_26/Lib/logging/handlers.py',
'../third_party/python_26/Lib/markupbase.py',
'../third_party/python_26/Lib/md5.py',
'../third_party/python_26/Lib/mimetools.py',
'../third_party/python_26/Lib/mimetypes.py',
'../third_party/python_26/Lib/multiprocessing/__init__.py',
'../third_party/python_26/Lib/multiprocessing/process.py',
'../third_party/python_26/Lib/multiprocessing/util.py',
'../third_party/python_26/Lib/new.py',
'../third_party/python_26/Lib/ntpath.py',
'../third_party/python_26/Lib/nturl2path.py',
'../third_party/python_26/Lib/optparse.py',
'../third_party/python_26/Lib/os.py',
'../third_party/python_26/Lib/platform.py',
'../third_party/python_26/Lib/poplib.py',
'../third_party/python_26/Lib/posixpath.py',
'../third_party/python_26/Lib/quopri.py',
'../third_party/python_26/Lib/random.py',
'../third_party/python_26/Lib/re.py',
'../third_party/python_26/Lib/rfc822.py',
'../third_party/python_26/Lib/sgmllib.py',
'../third_party/python_26/Lib/sha.py',
'../third_party/python_26/Lib/shlex.py',
'../third_party/python_26/Lib/shutil.py',
'../third_party/python_26/Lib/site-packages/google.pth',
'../third_party/python_26/Lib/site-packages/pywin32.pth',
'../third_party/python_26/Lib/site-packages/win32/pywintypes26.dll',
'../third_party/python_26/Lib/site-packages/win32/win32file.pyd',
'../third_party/python_26/Lib/site-packages/win32/win32pipe.pyd',
'../third_party/python_26/Lib/site.py',
'../third_party/python_26/Lib/smtplib.py',
'../third_party/python_26/Lib/socket.py',
'../third_party/python_26/Lib/sre_compile.py',
'../third_party/python_26/Lib/sre_constants.py',
'../third_party/python_26/Lib/sre_parse.py',
'../third_party/python_26/Lib/ssl.py',
'../third_party/python_26/Lib/stat.py',
'../third_party/python_26/Lib/string.py',
'../third_party/python_26/Lib/struct.py',
'../third_party/python_26/Lib/subprocess.py',
'../third_party/python_26/Lib/tarfile.py',
'../third_party/python_26/Lib/tempfile.py',
'../third_party/python_26/Lib/textwrap.py',
'../third_party/python_26/Lib/threading.py',
'../third_party/python_26/Lib/traceback.py',
'../third_party/python_26/Lib/types.py',
'../third_party/python_26/Lib/urllib.py',
'../third_party/python_26/Lib/urllib2.py',
'../third_party/python_26/Lib/urlparse.py',
'../third_party/python_26/Lib/warnings.py',
'../third_party/python_26/Lib/weakref.py',
'../third_party/python_26/Lib/webbrowser.py',
'../third_party/python_26/Lib/xml/__init__.py',
'../third_party/python_26/Lib/xml/dom/NodeFilter.py',
'../third_party/python_26/Lib/xml/dom/__init__.py',
'../third_party/python_26/Lib/xml/dom/domreg.py',
'../third_party/python_26/Lib/xml/dom/minicompat.py',
'../third_party/python_26/Lib/xml/dom/minidom.py',
'../third_party/python_26/Lib/xml/dom/xmlbuilder.py',
'../third_party/python_26/Lib/xml/sax/__init__.py',
'../third_party/python_26/Lib/xml/sax/_exceptions.py',
'../third_party/python_26/Lib/xml/sax/handler.py',
'../third_party/python_26/Lib/xml/sax/saxutils.py',
'../third_party/python_26/Lib/xml/sax/xmlreader.py',
'../third_party/python_26/Lib/xmlrpclib.py',
'../third_party/python_26/Lib/zipfile.py',
'../third_party/python_26/python.exe',
'../third_party/python_26/python26.dll',
'<(PRODUCT_DIR)/avcodec-54.dll',
'<(PRODUCT_DIR)/avformat-54.dll',
'<(PRODUCT_DIR)/avutil-51.dll',
'<(PRODUCT_DIR)/icudt.dll',
'<(PRODUCT_DIR)/plugins/npTestNetscapePlugIn.dll',
'<(PRODUCT_DIR)/plugins/npapi_test_plugin.dll',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/autofill_options2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/browser_options2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/content_options2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/content_settings_exception_area2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/cookies_view2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/font_settings2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/language_options2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/options2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/password_manager2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/browser/ui/webui/options2/search_engine_manager2_browsertest.js',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/net_internals/hsts_view.js',
'test/data/extensions/api_test/accessibility/get_alerts_for_tab/background.js',
'test/data/extensions/api_test/accessibility/get_alerts_for_tab/manifest.json',
'test/data/extensions/api_test/alert/manifest.json',
'test/data/extensions/api_test/apitest/manifest.json',
'test/data/extensions/api_test/background_scripts/manifest.json',
'test/data/extensions/api_test/bindings/exception_in_handler_should_not_crash/manifest.json',
'test/data/extensions/api_test/bookmark_manager/edit_disabled/manifest.json',
'test/data/extensions/api_test/bookmark_manager/standard/manifest.json',
'test/data/extensions/api_test/canvas_2d/manifest.json',
'test/data/extensions/api_test/content_scripts/about_blank_iframes/content_script.js',
'test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json',
'test/data/extensions/api_test/content_scripts/all_frames/all_frames.js',
'test/data/extensions/api_test/content_scripts/all_frames/manifest.json',
'test/data/extensions/api_test/content_scripts/all_frames/top_frame_only.js',
'test/data/extensions/api_test/content_scripts/css_l10n/manifest.json',
'test/data/extensions/api_test/content_scripts/css_l10n/style.css',
'test/data/extensions/api_test/content_scripts/dont_match_host_permissions/manifest.json',
'test/data/extensions/api_test/content_scripts/dont_match_host_permissions/modify.js',
'test/data/extensions/api_test/content_scripts/dont_match_host_permissions/test.js',
'test/data/extensions/api_test/content_scripts/extension_api/events.js',
'test/data/extensions/api_test/content_scripts/extension_api/functions.js',
'test/data/extensions/api_test/content_scripts/extension_api/manifest.json',
'test/data/extensions/api_test/content_scripts/extension_iframe/manifest.json',
'test/data/extensions/api_test/content_scripts/extension_iframe/script.js',
'test/data/extensions/api_test/content_scripts/extension_process/injectionator.js',
'test/data/extensions/api_test/content_scripts/extension_process/manifest.json',
'test/data/extensions/api_test/content_scripts/fragment/content_script.js',
'test/data/extensions/api_test/content_scripts/fragment/manifest.json',
'test/data/extensions/api_test/content_scripts/permissions/manifest.json',
'test/data/extensions/api_test/content_scripts/view_source/manifest.json',
'test/data/extensions/api_test/content_scripts/view_source/request.js',
'test/data/extensions/api_test/content_security_policy/manifest.json',
'test/data/extensions/api_test/content_settings/standard/manifest.json',
'test/data/extensions/api_test/context_menus/basics/manifest.json',
'test/data/extensions/api_test/cookies/api/manifest.json',
'test/data/extensions/api_test/cookies/events/manifest.json',
'test/data/extensions/api_test/cookies/no_permission/manifest.json',
'test/data/extensions/api_test/cross_origin_xhr/all_urls/content_script.js',
'test/data/extensions/api_test/cross_origin_xhr/all_urls/manifest.json',
'test/data/extensions/api_test/cross_origin_xhr/background_page/manifest.json',
'test/data/extensions/api_test/cross_origin_xhr/content_script/content_script.js',
'test/data/extensions/api_test/cross_origin_xhr/content_script/manifest.json',
'test/data/extensions/api_test/cross_origin_xhr/file_access/manifest.json',
'test/data/extensions/api_test/cross_origin_xhr/no_file_access/manifest.json',
'test/data/extensions/api_test/debugger/manifest.json',
'test/data/extensions/api_test/default_content_security_policy/manifest.json',
'test/data/extensions/api_test/events/manifest.json',
'test/data/extensions/api_test/font_settings/incognito/manifest.json',
'test/data/extensions/api_test/font_settings/standard/manifest.json',
'test/data/extensions/api_test/i18n/a.js',
'test/data/extensions/api_test/i18n/manifest.json',
'test/data/extensions/api_test/idle/manifest.json',
'test/data/extensions/api_test/input/manifest.json',
'test/data/extensions/api_test/managed_mode/get_enter/manifest.json',
'test/data/extensions/api_test/managed_mode/get_enter/test.js',
'test/data/extensions/api_test/managed_mode/on_change/manifest.json',
'test/data/extensions/api_test/managed_mode/on_change/test.html',
'test/data/extensions/api_test/managed_mode/on_change/test.js',
'test/data/extensions/api_test/messaging/event_url/manifest.json',
'test/data/extensions/api_test/metrics/manifest.json',
'test/data/extensions/api_test/mutation_observers/manifest.json',
'test/data/extensions/api_test/page_action/basics/icon.png',
'test/data/extensions/api_test/page_action/basics/manifest.json',
'test/data/extensions/api_test/page_action/crash_57333/Extension1/16.png',
'test/data/extensions/api_test/page_action/crash_57333/Extension1/manifest.json',
'test/data/extensions/api_test/page_action/getters/manifest.json',
'test/data/extensions/api_test/page_action/old_api/icon.png',
'test/data/extensions/api_test/page_action/old_api/manifest.json',
'test/data/extensions/api_test/permissions/disabled/manifest.json',
'test/data/extensions/api_test/permissions/experimental_disabled/manifest.json',
'test/data/extensions/api_test/permissions/favicon/manifest.json',
'test/data/extensions/api_test/permissions/optional/manifest.json',
'test/data/extensions/api_test/permissions/optional_deny/manifest.json',
'test/data/extensions/api_test/permissions/optional_gesture/manifest.json',
'test/data/extensions/api_test/preference/clear/manifest.json',
'test/data/extensions/api_test/preference/onchange/manifest.json',
'test/data/extensions/api_test/preference/persistent_incognito/manifest.json',
'test/data/extensions/api_test/preference/session_only_incognito/manifest.json',
'test/data/extensions/api_test/preference/standard/manifest.json',
'test/data/extensions/api_test/processes/onupdated/manifest.json',
'test/data/extensions/api_test/rlz/manifest.json',
'test/data/extensions/api_test/stubs/content_script.js',
'test/data/extensions/api_test/stubs/manifest.json',
'test/data/extensions/api_test/system/get_incognito_mode_availability/manifest.json',
'test/data/extensions/api_test/tabs/current_window/manifest.json',
'test/data/extensions/api_test/tabs/incognito_disabled/manifest.json',
'test/data/extensions/api_test/tabs/javascript_url_permissions/manifest.json',
'test/data/extensions/api_test/tabs/on_removed/manifest.json',
'test/data/extensions/api_test/tabs/on_updated/manifest.json',
'test/data/extensions/api_test/webnavigation/framework.js',
'test/data/extensions/api_test/webnavigation/manifest.json',
'test/data/extensions/api_test/webnavigation/test_api.html',
'test/data/extensions/api_test/webnavigation/test_requestOpenTab.html',
'test/data/extensions/api_test/webnavigation/test_requestOpenTab.js',
'test/data/extensions/api_test/webnavigation/test_serverRedirect.html',
'test/data/extensions/api_test/webnavigation/test_serverRedirect.js',
'test/data/extensions/api_test/webnavigation/test_targetBlank.html',
'test/data/extensions/api_test/webnavigation/test_targetBlank.js',
'test/data/extensions/api_test/webnavigation/test_userAction.html',
'test/data/extensions/api_test/webnavigation/test_userAction.js',
'test/data/extensions/api_test/websocket/manifest.json',
'test/data/extensions/api_test/window_open/argument_overflow/manifest.json',
'test/data/extensions/api_test/window_open/browser_is_app/manifest.json',
'test/data/extensions/api_test/window_open/popup/manifest.json',
'test/data/extensions/api_test/window_open/popup_blocking/extension/content_script.js',
'test/data/extensions/api_test/window_open/popup_blocking/extension/manifest.json',
'test/data/extensions/api_test/window_open/popup_blocking/extension/pop.js',
'test/data/extensions/api_test/window_open/popup_blocking/hosted_app/manifest.json',
'test/data/extensions/api_test/window_open/popup_large/manifest.json',
'test/data/extensions/api_test/window_open/popup_small/manifest.json',
'test/data/extensions/api_test/window_update/focus/manifest.json',
'test/data/extensions/api_test/window_update/resize/manifest.json',
'test/data/extensions/api_test/window_update/show_state/manifest.json',
'test/data/extensions/api_test/window_update/sizing/manifest.json',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/',
'test/data/extensions/good/Extensions/hpiknbiabeeppbpihjehijgoemciehgk/',
],
'isolate_dependency_untracked': [
'../third_party/python_26/Lib/xml/parsers/',
'test/data/extensions/api_test/content_scripts/css_l10n/_locales/',
'test/data/extensions/api_test/content_scripts/existing_renderers/',
'test/data/extensions/api_test/i18n/_locales/',
'test/data/extensions/api_test/runtime/',
'test/data/extensions/api_test/script_badge/',
'test/data/extensions/api_test/webnavigation/requestOpenTab/',
'test/data/extensions/api_test/webnavigation/serverRedirect/',
'test/data/extensions/api_test/webnavigation/targetBlank/',
'test/data/extensions/api_test/webnavigation/userAction/',
],
},
}, {
'variables': {
'isolate_dependency_tracked': [
'../third_party/tlslite/tlslite/integration/TLSTwistedProtocolWrapper.py',
'test/data/extensions/api_test/tabs/basics/a.html',
'test/data/extensions/api_test/tabs/basics/events.html',
'test/data/extensions/api_test/tabs/basics/events.js',
'test/data/extensions/api_test/tabs/basics/f.html',
'test/data/extensions/api_test/tabs/basics/tabs_util.js',
'test/data/extensions/api_test/tabs/capture_visible_tab/common/black.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/common/tabs_util.js',
'test/data/extensions/api_test/tabs/capture_visible_tab/common/white.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_jpeg.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_jpeg.js',
],
},
}],
],
}
|