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
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
|
# 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',
'../tools/swarm_client/run_test_cases.py',
'<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
'<(PRODUCT_DIR)/resources.pak',
'common/extensions/docs/examples/apps/calculator/app/model.js',
'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/manifest.json',
'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/manifest.json',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_jpeg.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_jpeg.js',
'test/data/webui/test_api.js',
'third_party/mock4js/mock4js.js',
],
'isolate_dependency_untracked': [
'<(PRODUCT_DIR)/test_data/chrome/',
'common/extensions/docs/examples/apps/calculator/tests/',
'test/data/extensions/api_test/accessibility/',
],
},
'conditions': [
['OS=="linux"', {
'variables': {
'command': [
'../testing/xvfb.py',
'<(PRODUCT_DIR)',
'../tools/swarm_client/run_test_cases.py',
'<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
'-v',
'-v',
'-v',
],
'isolate_dependency_tracked': [
'../content/test/data/simple_database.html',
'../net/data/ssl/certificates/websocket_cacert.pem',
'../net/data/ssl/certificates/websocket_client_cert.p12',
'../testing/xvfb.py',
'../third_party/WebKit/Tools/Scripts/VCSUtils.pm',
'../third_party/WebKit/Tools/Scripts/new-run-webkit-httpd',
'../third_party/WebKit/Tools/Scripts/webkit-build-directory',
'../third_party/WebKit/Tools/Scripts/webkitdirs.pm',
'../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)/libppGoogleNaClPluginChrome.so',
'<(PRODUCT_DIR)/libppapi_tests.so',
'<(PRODUCT_DIR)/nacl_helper<(EXECUTABLE_SUFFIX)',
'<(PRODUCT_DIR)/nacl_helper_bootstrap<(EXECUTABLE_SUFFIX)',
'<(PRODUCT_DIR)/nacl_test_data/glibc/pm_exit_status_test_glibc_x86_64.nexe',
'<(PRODUCT_DIR)/nacl_test_data/glibc/ppapi_ppb_core.html',
'<(PRODUCT_DIR)/nacl_test_data/glibc/ppapi_ppb_core.nmf',
'<(PRODUCT_DIR)/nacl_test_data/glibc/ppapi_ppb_core_glibc_x86_64.nexe',
'<(PRODUCT_DIR)/nacl_test_data/glibc/ppapi_progress_events.html',
'<(PRODUCT_DIR)/nacl_test_data/glibc/ppapi_progress_events.nmf',
'<(PRODUCT_DIR)/nacl_test_data/glibc/ppapi_progress_events_glibc_x86_64.nexe',
'<(PRODUCT_DIR)/nacl_test_data/glibc/progress_event_listener.js',
'<(PRODUCT_DIR)/nacl_test_data/glibc/simple_glibc_x86_64.nexe',
'<(PRODUCT_DIR)/nacl_test_data/newlib/ppapi_ppb_core.html',
'<(PRODUCT_DIR)/nacl_test_data/newlib/ppapi_ppb_core.nmf',
'<(PRODUCT_DIR)/nacl_test_data/newlib/ppapi_ppb_core_newlib_x86_64.nexe',
'<(PRODUCT_DIR)/ppapi_nacl_tests_glibc_x64.nexe',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/net_internals/dns_view.js',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/net_internals/prerender_view.js',
'<(PRODUCT_DIR)/test_data/chrome/test/data/webui/net_internals/test_view.js',
'<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
'test/data/History/form.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_4.html',
'test/data/History/target.html',
'test/data/autofill/autofill_middleinit_form.html',
'test/data/autofill/dataset_2.txt',
'test/data/autofill/dataset_no_address.txt',
'test/data/autofill/form_phones.html',
'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_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_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/autofill/read_only_field_test.html',
'test/data/beforeunload.html',
'test/data/custom_handler_foo.html',
'test/data/download-test2.html',
'test/data/download-test2.html.mock-http-headers',
'test/data/download-test3.gif',
'test/data/downloads/dangerous/dangerous.exe',
'test/data/empty.html',
'test/data/extensions/api_test/active_tab/background.js',
'test/data/extensions/api_test/active_tab/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/extension_resource_request_policy/web_accessible/accessible_history_navigation.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/newtab_override.html',
'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/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/delete.html',
'test/data/extensions/api_test/history/delete.js',
'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/index.js',
'test/data/extensions/api_test/icons/extension_no_permission/manifest.json',
'test/data/extensions/api_test/lazy_background_page/broadcast_event/icon19.png',
'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/management/test/uninstall.html',
'test/data/extensions/api_test/management/test/uninstall.js',
'test/data/extensions/api_test/offscreen_tabs/c.html',
'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/mouse_events.html',
'test/data/extensions/api_test/offscreen_tabs/mouse_events.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/tabs/capture_visible_tab/test_disabled.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_disabled.js',
'test/data/extensions/api_test/webstore_inline_install/install.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_v3.xml',
'test/data/extensions/autoupdate/v1.crx',
'test/data/extensions/autoupdate/v3.crx',
'test/data/extensions/browsertest/crash_44415/ExtA/icon.png',
'test/data/extensions/browsertest/crash_44415/ExtB/icon.png',
'test/data/extensions/get_app_details_for_frame_reversed.html',
'test/data/extensions/install/install_v2.crx',
'test/data/extensions/platform_apps/launch_files/test.txt',
'test/data/extensions/subscribe_page_action/feed-icon-16x16.png',
'test/data/extensions/theme.crx',
'test/data/extensions/theme2.crx',
'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_invalid1.xml',
'test/data/feeds/feed_invalid2.xml',
'test/data/feeds/feed_multi_rel.html',
'test/data/feeds/no_feed.html',
'test/data/find_in_page/BigText.html',
'test/data/find_in_page/anchor.html',
'test/data/find_in_page/crash_14491.html',
'test/data/find_in_page/large_textarea.html',
'test/data/find_in_page/link.html',
'test/data/find_in_page/populatedform.html',
'test/data/find_in_page/smalltextarea.html',
'test/data/find_in_page/start_after_selection.html',
'test/data/find_in_page/textintextarea.html',
'test/data/gpu/canvas_popup.html',
'test/data/notifications/notifications_request_inline.html',
'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/prerender/bear.ogv',
'test/data/prerender/favicon.ico',
'test/data/prerender/image.jpeg',
'test/data/prerender/image.png',
'test/data/prerender/prerender_alert_after_onload.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_video.html',
'test/data/prerender/prerender_html5_video_network.html',
'test/data/prerender/prerender_html5_video_script.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_with_session_storage.html',
'test/data/prerender/prerender_loader_with_unload.html',
'test/data/prerender/prerender_localstorage_write.html',
'test/data/prerender/prerender_no_referrer.html',
'test/data/prerender/prerender_print.html',
'test/data/prerender/prerender_referrer.html',
'test/data/prerender/prerender_size.html',
'test/data/prerender/prerender_visibility_quick.html',
'test/data/prerender/prerender_xhr_options.html',
'test/data/prerender/prerender_xhr_put.html',
'test/data/prerender/prerender_xhr_trace.html',
'test/data/safe_browsing/iframe_redirect_malware.html',
'test/data/safe_browsing/malware_iframe.html',
'test/data/safe_browsing/prefetch_malware.html',
'test/data/session_history/bot1.html',
'test/data/session_history/bot2.html',
'test/data/session_history/bot3.html',
'test/data/ssl/page_displays_insecure_iframe.html',
'test/data/ssl/page_with_refs.html',
'test/data/webui/runtime_error.js',
],
'isolate_dependency_untracked': [
'../content/test/data/dom_storage/',
'../content/test/data/plugin/flash.html',
'../content/test/data/plugin/flash.swf',
'../content/test/data/plugin/plugin_common.js',
'<(PRODUCT_DIR)/lib64/',
'<(PRODUCT_DIR)/nacl_test_data/glibc/pm_exit_status_test_libs/lib64/',
'<(PRODUCT_DIR)/nacl_test_data/glibc/ppapi_ppb_core_libs/lib64/',
'<(PRODUCT_DIR)/nacl_test_data/glibc/ppapi_progress_events_libs/lib64/',
'<(PRODUCT_DIR)/nacl_test_data/glibc/simple_libs/lib64/',
'<(PRODUCT_DIR)/resources/extension/',
'test/data/automation/',
'test/data/captive_portal/',
'test/data/devtools/',
'test/data/dom_automation/',
'test/data/encoding_tests/auto_detect/',
'test/data/extensions/api_test/accessible_cer/',
'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/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_instances/',
'test/data/extensions/api_test/bluetooth/discovery_in_progress/',
'test/data/extensions/api_test/bluetooth/events/',
'test/data/extensions/api_test/bluetooth/get_devices_error/',
'test/data/extensions/api_test/bookmark_manager/edit_disabled/',
'test/data/extensions/api_test/bookmarks/',
'test/data/extensions/api_test/browser_action/close_background/',
'test/data/extensions/api_test/clipboard/',
'test/data/extensions/api_test/content_scripts/',
'test/data/extensions/api_test/executescript/',
'test/data/extensions/api_test/extension_module/',
'test/data/extensions/api_test/file_system/get_writable_file_entry/',
'test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/',
'test/data/extensions/api_test/file_system/save_cancel/',
'test/data/extensions/api_test/icons/extension_with_permission/',
'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/event_dispatch_to_tab/',
'test/data/extensions/api_test/lazy_background_page/on_unload/',
'test/data/extensions/api_test/lazy_background_page/wait_for_view/',
'test/data/extensions/api_test/management/admin_extension/',
'test/data/extensions/api_test/management/enabled_extension/',
'test/data/extensions/api_test/management/external_extension/',
'test/data/extensions/api_test/management/internal_extension/',
'test/data/extensions/api_test/management/management_policy/',
'test/data/extensions/api_test/management/test/',
'test/data/extensions/api_test/media_galleries/',
'test/data/extensions/api_test/native_messaging/',
'test/data/extensions/api_test/notifications/',
'test/data/extensions/api_test/override/history/',
'test/data/extensions/api_test/page_action/hash_change/',
'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/pacdataurl/',
'test/data/extensions/api_test/request_quota_background/',
'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/systeminfo/',
'test/data/extensions/api_test/tab_capture/permissions/',
'test/data/extensions/api_test/tts/',
'test/data/extensions/api_test/tts_engine/',
'test/data/extensions/api_test/usb/',
'test/data/extensions/api_test/webnavigation/',
'test/data/extensions/api_test/webrequest/',
'test/data/extensions/api_test/webrequest_permissions/',
'test/data/extensions/api_test/webstore_inline_install/inlineinstall/',
'test/data/extensions/api_test/webstore_private/',
'test/data/extensions/api_test/xhr_persistent_fs/',
'test/data/extensions/app1/',
'test/data/extensions/app2/',
'test/data/extensions/browsertest/title_localized_pa/',
'test/data/extensions/browsertest/url_rewrite/bookmarks/',
'test/data/extensions/context_menus/separators/',
'test/data/extensions/context_menus/target_urls/',
'test/data/extensions/devtools/',
'test/data/extensions/good/Extensions/',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/_locales/en_US/',
'test/data/extensions/hosted_app/',
'test/data/extensions/isolated_apps/',
'test/data/extensions/management/',
'test/data/extensions/packaged_app/',
'test/data/extensions/platform_apps/apps_only/',
'test/data/extensions/platform_apps/geometry/',
'test/data/extensions/platform_apps/launch_file/',
'test/data/extensions/platform_apps/launch_reply/',
'test/data/extensions/platform_apps/launch_wrong_intent/',
'test/data/extensions/platform_apps/launch_wrong_type/',
'test/data/extensions/platform_apps/restrictions/',
'test/data/extensions/platform_apps/storage/',
'test/data/extensions/uitest/window_open/',
'test/data/fast_shutdown/',
'test/data/google/',
'test/data/login/',
'test/data/native_messaging/Native Hosts/echo.py',
'test/data/page_cycler/cached_data_dir/',
'test/data/panels/context_menu/',
'test/data/panels/context_menu2/',
'test/data/policy/',
'test/data/requirements_checker/',
'test/data/viewsource/',
'test/data/workers/',
],
'isolate_dependency_touched': [
'../net/data/websocket/OWNERS',
'../net/data/websocket/websocket_shared_worker.html',
'../net/data/websocket/websocket_worker_simple.js',
'<(PRODUCT_DIR)/plugins/libTestNetscapePlugIn.so',
'<(PRODUCT_DIR)/plugins/libnpapi_test_plugin.so',
'test/data/autofill/heuristics/input/01_autocomplete_attribute_advanced.html',
'test/data/autofill/heuristics/input/01_autocomplete_attribute_basic.html',
'test/data/autofill/heuristics/input/01_autocomplete_attribute_invalid.html',
'test/data/autofill/heuristics/input/01_autocomplete_attribute_malicious.html',
'test/data/autofill/heuristics/input/07_checkout_vitacost.com.html',
'test/data/autofill/heuristics/input/07_checkout_williams-sonoma.com.html',
'test/data/devtools/extensions/devtools_experimental/devtools.html',
'test/data/devtools/extensions/devtools_experimental/devtools.js',
'test/data/extensions/api_test/active_tab/final_page.html',
'test/data/extensions/api_test/active_tab/page.html',
'test/data/extensions/api_test/bluetooth/discovery_callback/runtest.js',
'test/data/extensions/api_test/bluetooth/discovery_in_progress/runtest.js',
'test/data/extensions/api_test/bluetooth/events/runtest.js',
'test/data/extensions/api_test/bluetooth/get_devices/runtest.js',
'test/data/extensions/api_test/bluetooth/get_devices_concurrently/runtest.js',
'test/data/extensions/api_test/bluetooth/get_devices_error/runtest.js',
'test/data/extensions/api_test/bookmark_manager/edit_disabled/test.html',
'test/data/extensions/api_test/bookmark_manager/edit_disabled/test.js',
'test/data/extensions/api_test/bookmark_manager/standard/test.html',
'test/data/extensions/api_test/bookmark_manager/standard/test.js',
'test/data/extensions/api_test/content_scripts/isolated_world2/background.js',
'test/data/extensions/api_test/downloads_split/empty.html',
'test/data/extensions/api_test/extension_resource_request_policy/extension2/test.png',
'test/data/extensions/api_test/extension_resource_request_policy/web_accessible/test2.png',
'test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/background.js',
'test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.html',
'test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js',
'test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test_util.js',
'test/data/extensions/api_test/file_system/open_writable_existing_with_write/background.js',
'test/data/extensions/api_test/file_system/open_writable_existing_with_write/test.html',
'test/data/extensions/api_test/file_system/open_writable_existing_with_write/test.js',
'test/data/extensions/api_test/file_system/open_writable_existing_with_write/test_util.js',
'test/data/extensions/api_test/file_system/save_background/background.js',
'test/data/extensions/api_test/file_system/save_existing/background.js',
'test/data/extensions/api_test/file_system/save_existing/test.html',
'test/data/extensions/api_test/file_system/save_existing/test.js',
'test/data/extensions/api_test/file_system/save_new/background.js',
'test/data/extensions/api_test/file_system/save_new/test.html',
'test/data/extensions/api_test/file_system/save_new/test.js',
'test/data/extensions/api_test/history/a.html',
'test/data/extensions/api_test/history/b.html',
'test/data/extensions/api_test/history/get_visits.html',
'test/data/extensions/api_test/history/get_visits.js',
'test/data/extensions/api_test/history/misc_search.html',
'test/data/extensions/api_test/history/misc_search.js',
'test/data/extensions/api_test/history/timed_search.html',
'test/data/extensions/api_test/history/timed_search.js',
'test/data/extensions/api_test/icons/extension_no_permission/24.png',
'test/data/extensions/api_test/lazy_background_page/broadcast_event/icon48.png',
'test/data/extensions/api_test/lazy_background_page/event_dispatch_to_tab/background.js',
'test/data/extensions/api_test/lazy_background_page/event_dispatch_to_tab/page.html',
'test/data/extensions/api_test/lazy_background_page/event_dispatch_to_tab/runtest.js',
'test/data/extensions/api_test/lazy_background_page/filters/background.js',
'test/data/extensions/api_test/management/disabled_extension/pages/options.html',
'test/data/extensions/api_test/management/enabled_extension/icon_128.png',
'test/data/extensions/api_test/management/enabled_extension/icon_16.png',
'test/data/extensions/api_test/management/enabled_extension/icon_48.png',
'test/data/extensions/api_test/media_galleries/no_galleries/test.js',
'test/data/extensions/api_test/media_galleries_private/attachdetach/test.js',
'test/data/extensions/api_test/messaging/connect_panel/panel.html',
'test/data/extensions/api_test/messaging/connect_panel/panel.js',
'test/data/extensions/api_test/messaging/connect_panel/test.html',
'test/data/extensions/api_test/messaging/connect_panel/test.js',
'test/data/extensions/api_test/native_messaging/test.js',
'test/data/extensions/api_test/notifications/has_not_permission/background.js',
'test/data/extensions/api_test/proxy/direct/test.js',
'test/data/extensions/api_test/proxy/individual_incognito_only/test.js',
'test/data/extensions/api_test/proxy/pacdataurl/test.js',
'test/data/extensions/api_test/request_quota_background/background.js',
'test/data/extensions/api_test/script_badge/basics/background.js',
'test/data/extensions/api_test/script_badge/basics/update.html',
'test/data/extensions/api_test/script_badge/basics/update.js',
'test/data/extensions/api_test/shadow_dom/background.js',
'test/data/extensions/api_test/shadow_dom/empty.html',
'test/data/extensions/api_test/sync_file_system/get_usage_and_quota/test.js',
'test/data/extensions/api_test/sync_file_system/request_file_system/test.js',
'test/data/extensions/api_test/tab_capture/experimental/test.js',
'test/data/extensions/api_test/tab_capture/permissions/test.js',
'test/data/extensions/api_test/tabs/basics/duplicate.html',
'test/data/extensions/api_test/tabs/basics/duplicate.js',
'test/data/extensions/api_test/tabs/basics/get_views_common.js',
'test/data/extensions/api_test/tabs/basics/get_views_popup.html',
'test/data/extensions/api_test/tabs/basics/get_views_popup.js',
'test/data/extensions/api_test/tabs/basics/get_views_window.html',
'test/data/extensions/api_test/tabs/basics/get_views_window.js',
'test/data/extensions/api_test/tabs/basics/relative.html',
'test/data/extensions/api_test/tabs/basics/relative.js',
'test/data/extensions/api_test/tabs/basics/relative_urls.html',
'test/data/extensions/api_test/tabs/basics/relative_urls.js',
'test/data/extensions/api_test/tabs/capture_visible_tab/common/text.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_png.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_png.js',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_race.html',
'test/data/extensions/api_test/tabs/capture_visible_tab/test_race.js',
'test/data/extensions/api_test/tabs/incognito_disabled/background.js',
'test/data/extensions/api_test/webrequest_permissions/split/background.js',
'test/data/extensions/api_test/websocket/test.js',
'test/data/extensions/api_test/window_open/panel_detached/test.html',
'test/data/extensions/api_test/window_open/panel_detached/test.js',
'test/data/extensions/api_test/xhr_persistent_fs/bg.js',
'test/data/extensions/api_test/xhr_persistent_fs/main.html',
'test/data/extensions/api_test/xhr_persistent_fs/main.js',
'test/data/extensions/context_menus/incognito/background.html',
'test/data/extensions/context_menus/incognito/test.js',
'test/data/extensions/native_client/test.html',
'test/data/extensions/native_client/test.js',
'test/data/extensions/native_client/test2.js',
'test/data/extensions/platform_apps/launch_wrong_type/test.js',
'test/data/extensions/platform_apps/minimal_id/main.html',
'test/data/extensions/platform_apps/minimal_id/main.js',
'test/data/extensions/platform_apps/minimal_id/test.js',
'test/data/extensions/platform_apps/oauth2/test.js',
'test/data/extensions/platform_apps/open_link/link.html',
'test/data/extensions/platform_apps/restart_test/test.js',
'test/data/extensions/platform_apps/web_view_src_attribute/main.html',
'test/data/extensions/platform_apps/web_view_src_attribute/main.js',
'test/data/extensions/platform_apps/web_view_src_attribute/test.js',
'test/data/extensions/subscribe_page_action/_locales/ar/messages.json',
'test/data/extensions/subscribe_page_action/_locales/bg/messages.json',
'test/data/extensions/subscribe_page_action/_locales/ca/messages.json',
'test/data/extensions/subscribe_page_action/_locales/cs/messages.json',
'test/data/extensions/subscribe_page_action/_locales/da/messages.json',
'test/data/extensions/subscribe_page_action/_locales/de/messages.json',
'test/data/extensions/subscribe_page_action/_locales/el/messages.json',
'test/data/extensions/subscribe_page_action/_locales/en_GB/messages.json',
'test/data/extensions/subscribe_page_action/_locales/es/messages.json',
'test/data/extensions/subscribe_page_action/_locales/es_419/messages.json',
'test/data/extensions/subscribe_page_action/_locales/et/messages.json',
'test/data/extensions/subscribe_page_action/_locales/fi/messages.json',
'test/data/extensions/subscribe_page_action/_locales/fr/messages.json',
'test/data/extensions/subscribe_page_action/_locales/he/messages.json',
'test/data/extensions/subscribe_page_action/_locales/hi/messages.json',
'test/data/extensions/subscribe_page_action/_locales/hr/messages.json',
'test/data/extensions/subscribe_page_action/_locales/hu/messages.json',
'test/data/extensions/subscribe_page_action/_locales/id/messages.json',
'test/data/extensions/subscribe_page_action/_locales/it/messages.json',
'test/data/extensions/subscribe_page_action/_locales/ja/messages.json',
'test/data/extensions/subscribe_page_action/_locales/ko/messages.json',
'test/data/extensions/subscribe_page_action/_locales/lt/messages.json',
'test/data/extensions/subscribe_page_action/_locales/lv/messages.json',
'test/data/extensions/subscribe_page_action/_locales/nb/messages.json',
'test/data/extensions/subscribe_page_action/_locales/nl/messages.json',
'test/data/extensions/subscribe_page_action/_locales/pl/messages.json',
'test/data/extensions/subscribe_page_action/_locales/pt_BR/messages.json',
'test/data/extensions/subscribe_page_action/_locales/pt_PT/messages.json',
'test/data/extensions/subscribe_page_action/_locales/ro/messages.json',
'test/data/extensions/subscribe_page_action/_locales/ru/messages.json',
'test/data/extensions/subscribe_page_action/_locales/sk/messages.json',
'test/data/extensions/subscribe_page_action/_locales/sl/messages.json',
'test/data/extensions/subscribe_page_action/_locales/sr/messages.json',
'test/data/extensions/subscribe_page_action/_locales/sv/messages.json',
'test/data/extensions/subscribe_page_action/_locales/th/messages.json',
'test/data/extensions/subscribe_page_action/_locales/tr/messages.json',
'test/data/extensions/subscribe_page_action/_locales/uk/messages.json',
'test/data/extensions/subscribe_page_action/_locales/vi/messages.json',
'test/data/extensions/subscribe_page_action/_locales/zh_CN/messages.json',
'test/data/extensions/subscribe_page_action/_locales/zh_TW/messages.json',
'test/data/extensions/subscribe_page_action/feed-icon-128x128.png',
'test/data/extensions/subscribe_page_action/feed-icon-16x16-subscribed.png',
'test/data/extensions/subscribe_page_action/options.html',
'test/data/extensions/subscribe_page_action/options.js',
'test/data/extensions/subscribe_page_action/popup.html',
'test/data/extensions/subscribe_page_action/popup.js',
'test/data/extensions/uitest/plugins_private/README',
'test/data/extensions/uitest/plugins_private/plugin.plugin/Contents/Info.plist',
'test/data/extensions/uitest/plugins_private/plugin.plugin/Contents/MacOS/TestNetscapePlugIn',
'test/data/panels/basic/panel.html',
'test/data/panels/basic/panel.js',
'test/data/panels/basic/test.js',
'test/data/panels/context_menu/panel.html',
'test/data/panels/context_menu/panel.js',
'test/data/panels/context_menu/test.js',
'test/data/panels/context_menu2/test.js',
'test/data/panels/test_extension/128.png',
'test/data/panels/test_extension/24.png',
'test/data/panels/test_extension/hello.html',
'test/data/web_intents/test.png',
],
},
}, {
'variables': {
'command': [
'../testing/test_env.py',
'../tools/swarm_client/run_test_cases.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/',
],
'isolate_dependency_touched': [
'test/data/title2.html',
],
},
}, {
'variables': {
'isolate_dependency_tracked': [
'../net/data/ssl/certificates/expired_cert.pem',
'../net/data/ssl/certificates/ok_cert.pem',
'../net/data/ssl/certificates/root_ca_cert.crt',
'../net/data/websocket/close-code-and-reason_wsh.py',
'../net/data/websocket/close_wsh.py',
'../net/data/websocket/connect_check.html',
'../net/data/websocket/echo-with-no-extension_wsh.py',
'../net/data/websocket/echo_wsh.py',
'../net/data/websocket/protocol-test_wsh.py',
'../net/tools/testserver/asn1der.py',
'../net/tools/testserver/device_management.py',
'../ppapi/tests/test_case.html',
'../ppapi/tests/test_page.css',
'../third_party/WebKit/Tools/Scripts/new-run-webkit-websocketserver',
'../third_party/pywebsocket/src/mod_pywebsocket/__init__.py',
'../third_party/pywebsocket/src/mod_pywebsocket/_stream_base.py',
'../third_party/pywebsocket/src/mod_pywebsocket/_stream_hixie75.py',
'../third_party/pywebsocket/src/mod_pywebsocket/_stream_hybi.py',
'../third_party/pywebsocket/src/mod_pywebsocket/common.py',
'../third_party/pywebsocket/src/mod_pywebsocket/dispatch.py',
'../third_party/pywebsocket/src/mod_pywebsocket/extensions.py',
'../third_party/pywebsocket/src/mod_pywebsocket/http_header_util.py',
'../third_party/pywebsocket/src/mod_pywebsocket/memorizingfile.py',
'../third_party/pywebsocket/src/mod_pywebsocket/msgutil.py',
'../third_party/pywebsocket/src/mod_pywebsocket/mux.py',
'../third_party/pywebsocket/src/mod_pywebsocket/standalone.py',
'../third_party/pywebsocket/src/mod_pywebsocket/stream.py',
'../third_party/pywebsocket/src/mod_pywebsocket/util.py',
'../third_party/simplejson/__init__.py',
'../third_party/simplejson/decoder.py',
'../third_party/simplejson/encoder.py',
'../third_party/simplejson/scanner.py',
'<(PRODUCT_DIR)/chrome_100_percent.pak',
'<(PRODUCT_DIR)/locales/en-US.pak',
'<(PRODUCT_DIR)/mock_nacl_gdb<(EXECUTABLE_SUFFIX)',
'<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
'<(PRODUCT_DIR)/nacl_test_data/glibc/nacl_load_test.html',
'<(PRODUCT_DIR)/nacl_test_data/glibc/nacltest.js',
'<(PRODUCT_DIR)/nacl_test_data/glibc/pm_exit_status_test.html',
'<(PRODUCT_DIR)/nacl_test_data/glibc/pm_exit_status_test.nmf',
'<(PRODUCT_DIR)/nacl_test_data/glibc/simple.nmf',
'<(PRODUCT_DIR)/nacl_test_data/newlib/nacl_load_test.html',
'<(PRODUCT_DIR)/nacl_test_data/newlib/nacltest.js',
'<(PRODUCT_DIR)/nacl_test_data/newlib/pm_exit_status_test.html',
'<(PRODUCT_DIR)/nacl_test_data/newlib/pm_exit_status_test.nmf',
'<(PRODUCT_DIR)/nacl_test_data/newlib/pm_exit_status_test_newlib_x86_64.nexe',
'<(PRODUCT_DIR)/nacl_test_data/newlib/ppapi_progress_events.html',
'<(PRODUCT_DIR)/nacl_test_data/newlib/ppapi_progress_events.nmf',
'<(PRODUCT_DIR)/nacl_test_data/newlib/ppapi_progress_events_newlib_x86_64.nexe',
'<(PRODUCT_DIR)/nacl_test_data/newlib/progress_event_listener.js',
'<(PRODUCT_DIR)/nacl_test_data/newlib/simple.nmf',
'<(PRODUCT_DIR)/nacl_test_data/newlib/simple_newlib_x86_64.nexe',
'<(PRODUCT_DIR)/ppapi_nacl_tests_glibc.nmf',
'<(PRODUCT_DIR)/ppapi_nacl_tests_newlib.nmf',
'<(PRODUCT_DIR)/ppapi_nacl_tests_newlib_x64.nexe',
'<(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/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)/test_page.css',
'common/extensions/docs/examples/apps/calculator/app/controller.js',
'common/extensions/docs/examples/apps/calculator/app/view.js',
'common/extensions/docs/examples/apps/calculator/tests/automatic.html',
'common/extensions/docs/examples/apps/calculator/tests/tests.js',
'common/extensions/docs/examples/apps/calculator/tests/utilities.js',
'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_3.html',
'test/data/History/landing.html',
'test/data/History/redirector.html',
'test/data/anchor_download_test.png',
'test/data/autofill/autofill_creditcard_form.html',
'test/data/autofill/autofill_test_form.html',
'test/data/autofill/cc_autocomplete_off_test.html',
'test/data/autofill/duplicate_profiles_test.html',
'test/data/cancelled_redirect_test.html',
'test/data/chromeos/gdata/root_feed.json',
'test/data/chromeos/gdata/testfile.txt',
'test/data/click_modifier/href.html',
'test/data/click_modifier/window_open.html',
'test/data/clicktoplay.html',
'test/data/cookie1.html',
'test/data/download-anchor-attrib.html',
'test/data/download-autoopen.txt',
'test/data/download-autoopen.txt.mock-http-headers',
'test/data/download-test1.lib',
'test/data/download-test1.lib.mock-http-headers',
'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/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/adblock.crx',
'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/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/a.js',
'test/data/extensions/api_test/content_scripts/isolated_world1/b.js',
'test/data/extensions/api_test/content_scripts/isolated_world1/background.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/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_with_csp.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/test.png',
'test/data/extensions/api_test/file_system/gold.txt',
'test/data/extensions/api_test/history/common.js',
'test/data/extensions/api_test/history/manifest.json',
'test/data/extensions/api_test/history/most_visited.html',
'test/data/extensions/api_test/history/most_visited.js',
'test/data/extensions/api_test/lazy_background_page/broadcast_event/background.js',
'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/enabled_extension/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/display.html',
'test/data/extensions/api_test/offscreen_tabs/display.js',
'test/data/extensions/api_test/offscreen_tabs/manifest.json',
'test/data/extensions/api_test/offscreen_tabs/tab_util.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/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_non_verified_domain.html',
'test/data/extensions/api_test/webstore_inline_install/install_not_supported.html',
'test/data/extensions/api_test/webstore_private/accepted.html',
'test/data/extensions/api_test/webstore_private/accepted.js',
'test/data/extensions/api_test/webstore_private/app.crx',
'test/data/extensions/api_test/webstore_private/app.pem',
'test/data/extensions/api_test/webstore_private/app_install_bubble.html',
'test/data/extensions/api_test/webstore_private/app_install_bubble.js',
'test/data/extensions/api_test/webstore_private/begin_install.html',
'test/data/extensions/api_test/webstore_private/cancelled.html',
'test/data/extensions/api_test/webstore_private/common.js',
'test/data/extensions/api_test/webstore_private/empty.html',
'test/data/extensions/api_test/webstore_private/empty.js',
'test/data/extensions/api_test/webstore_private/extension.crx',
'test/data/extensions/api_test/webstore_private/extension.pem',
'test/data/extensions/api_test/webstore_private/icon_url.html',
'test/data/extensions/api_test/webstore_private/icon_url.js',
'test/data/extensions/api_test/webstore_private/incorrect_manifest.js',
'test/data/extensions/api_test/webstore_private/incorrect_manifest1.html',
'test/data/extensions/api_test/webstore_private/incorrect_manifest2.html',
'test/data/extensions/api_test/webstore_private/install_bundle.html',
'test/data/extensions/api_test/webstore_private/install_bundle_cancel.html',
'test/data/extensions/api_test/webstore_private/install_bundle_invalid.html',
'test/data/extensions/api_test/webstore_private/localized.html',
'test/data/extensions/api_test/webstore_private/localized.js',
'test/data/extensions/api_test/webstore_private/localized_extension.crx',
'test/data/extensions/api_test/webstore_private/localized_extension.pem',
'test/data/extensions/api_test/webstore_private/noframe.html',
'test/data/extensions/api_test/webstore_private/noframe.html.mock-http-headers',
'test/data/extensions/api_test/webstore_private/noframe2.html',
'test/data/extensions/api_test/webstore_private/theme.html',
'test/data/extensions/autoupdate/manifest_v2.xml',
'test/data/extensions/autoupdate/v2.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/manifest.json',
'test/data/extensions/browsertest/crash_44415/ExtB/background.js',
'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/good.crx',
'test/data/extensions/good.crx.mock-http-headers',
'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/Extensions/bjafgdebaacbbbecmhlhpofkepfkgcpa/1.0/manifest.json',
'test/data/extensions/good/Preferences',
'test/data/extensions/good_update_manifest.xml',
'test/data/extensions/good_update_manifest.xml.mock-http-headers',
'test/data/extensions/install/install.crx',
'test/data/extensions/install/install_older_version.crx',
'test/data/extensions/intents/nnhendkbgefomfgdlnmfhhmihihlljpi.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/isolation/set_cookie.html',
'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-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.txt',
'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/uitest/plugins.pem',
'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_nolinks.xml',
'test/data/feeds/feed_script.xml',
'test/data/fileurl_universalaccess.html',
'test/data/find_in_page/FindRandomTests.html',
'test/data/find_in_page/LongFind.txt',
'test/data/find_in_page/bug_1155639.html',
'test/data/find_in_page/crash_1341577.html',
'test/data/find_in_page/end_state.html',
'test/data/find_in_page/find_test.txt',
'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/largepage.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/specialchar.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/geolocation/two_watches.html',
'test/data/google/logo.gif',
'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/load_all_blocked_plugins.html',
'test/data/login/single_realm.html',
'test/data/mock-link-doctor.html',
'test/data/mock-link-doctor.html.mock-http-headers',
'test/data/notifications/notifications_request_function.html',
'test/data/page404.html',
'test/data/page404.html.mock-http-headers',
'test/data/page_cycler/cached_data_dir/Default/Bookmarks',
'test/data/page_cycler/cached_data_dir/Default/Bookmarks.bak',
'test/data/page_cycler/cached_data_dir/Default/Favicons',
'test/data/page_cycler/cached_data_dir/Default/Favicons-journal',
'test/data/page_cycler/cached_data_dir/Default/History',
'test/data/page_cycler/cached_data_dir/Default/History-journal',
'test/data/page_cycler/cached_data_dir/Default/Preferences',
'test/data/page_cycler/cached_data_dir/Default/Shortcuts',
'test/data/page_cycler/cached_data_dir/Default/Shortcuts-journal',
'test/data/page_cycler/cached_data_dir/chrome_shutdown_ms.txt',
'test/data/page_cycler/cached_data_dir/urls',
'test/data/panels/test_extension/32.png',
'test/data/panels/test_extension/manifest.json',
'test/data/panels/test_extension/test.html',
'test/data/performance_monitor/unclean_exit_prefs',
'test/data/policy/policy_test_cases.json',
'test/data/popup_blocker/popup-blocked-to-post-blank.html',
'test/data/popup_blocker/popup-many.html',
'test/data/popup_blocker/popup-on-unload.html',
'test/data/prerender/bear.wav',
'test/data/prerender/extension.crx',
'test/data/prerender/plugin_delay_load.html',
'test/data/prerender/prefetch_target.lnk',
'test/data/prerender/prerender_alert_before_onload.html',
'test/data/prerender/prerender_download_iframe.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_http_auth_container.html',
'test/data/prerender/prerender_iframe_plugin_delay_load.html',
'test/data/prerender/prerender_infinite_a.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_localstorage_read.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_referrer_policy.html',
'test/data/prerender/prerender_register_protocol_handler.html',
'test/data/prerender/prerender_visibility.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_post.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/interstitial_cancel.html',
'test/data/safe_browsing/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/setcookie.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_runs_insecure_content.html',
'test/data/ssl/page_with_dynamic_insecure_content.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/print_preview_hello_world_test.html',
'test/data/webui/sample_downloads.js',
'test/data/window.close.html',
],
'isolate_dependency_untracked': [
'../third_party/WebKit/Tools/Scripts/webkitpy/',
'../third_party/bidichecker/',
'../third_party/pywebsocket/src/mod_pywebsocket/handshake/',
'<(PRODUCT_DIR)/plugins/',
'<(PRODUCT_DIR)/pseudo_locales/',
'<(PRODUCT_DIR)/test_url_loader_data/',
'test/data/devtools/extensions/devtools_experimental/',
'test/data/encoding_tests/user_override/',
'test/data/extensions/api_test/alert/',
'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/no_js_manifest/',
'test/data/extensions/api_test/app_background_page/two_pages/',
'test/data/extensions/api_test/app_process_background_instances/',
'test/data/extensions/api_test/background_scripts/',
'test/data/extensions/api_test/bindings/',
'test/data/extensions/api_test/bluetooth/discovery_callback/',
'test/data/extensions/api_test/bluetooth/get_devices/',
'test/data/extensions/api_test/bluetooth/get_devices_concurrently/',
'test/data/extensions/api_test/bookmark_manager/',
'test/data/extensions/api_test/browser_action/basics/',
'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/cloud_print_private/',
'test/data/extensions/api_test/content_scripts/all_frames/',
'test/data/extensions/api_test/content_scripts/isolated_world1/',
'test/data/extensions/api_test/content_scripts/isolated_world2/',
'test/data/extensions/api_test/content_security_policy/',
'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/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/downloads_split/',
'test/data/extensions/api_test/events/',
'test/data/extensions/api_test/extension_resource_request_policy/extension/',
'test/data/extensions/api_test/file_system/get_display_path/',
'test/data/extensions/api_test/file_system/get_display_path_prettify/',
'test/data/extensions/api_test/file_system/invalid_choose_file_type/',
'test/data/extensions/api_test/file_system/is_writable_file_entry/',
'test/data/extensions/api_test/file_system/open_background/',
'test/data/extensions/api_test/file_system/open_cancel/',
'test/data/extensions/api_test/file_system/open_existing/',
'test/data/extensions/api_test/file_system/open_existing_with_write/',
'test/data/extensions/api_test/file_system/open_writable_existing/',
'test/data/extensions/api_test/file_system/open_writable_existing_with_write/',
'test/data/extensions/api_test/file_system/save_background/',
'test/data/extensions/api_test/file_system/save_existing/',
'test/data/extensions/api_test/file_system/save_existing_with_write/',
'test/data/extensions/api_test/file_system/save_new/',
'test/data/extensions/api_test/file_system/save_new_with_write/',
'test/data/extensions/api_test/font_settings/',
'test/data/extensions/api_test/i18n/',
'test/data/extensions/api_test/idltest/',
'test/data/extensions/api_test/incognito/content_scripts/',
'test/data/extensions/api_test/lazy_background_page/filters/',
'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/wait_for_request/',
'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/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/permissions/',
'test/data/extensions/api_test/media_galleries/no_galleries/',
'test/data/extensions/api_test/media_galleries_private/',
'test/data/extensions/api_test/messaging/connect_external/',
'test/data/extensions/api_test/messaging/connect_panel/',
'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/notifications/has_not_permission/',
'test/data/extensions/api_test/override/newtab/',
'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/enabled/',
'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/',
'test/data/extensions/api_test/preference/',
'test/data/extensions/api_test/processes/onupdated/',
'test/data/extensions/api_test/proxy/direct/',
'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/push_messaging/',
'test/data/extensions/api_test/runtime/',
'test/data/extensions/api_test/sandboxed_pages/',
'test/data/extensions/api_test/script_badge/',
'test/data/extensions/api_test/shadow_dom/',
'test/data/extensions/api_test/stubs/',
'test/data/extensions/api_test/sync_file_system/get_usage_and_quota/',
'test/data/extensions/api_test/sync_file_system/request_file_system/',
'test/data/extensions/api_test/system/get_incognito_mode_availability/',
'test/data/extensions/api_test/tab_capture/experimental/',
'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/webrequest_permissions/split/',
'test/data/extensions/api_test/websocket/',
'test/data/extensions/api_test/webstore_private/app/',
'test/data/extensions/api_test/webstore_private/bundle/',
'test/data/extensions/api_test/webstore_private/extension/',
'test/data/extensions/api_test/webstore_private/localized_extension/',
'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/panel_detached/',
'test/data/extensions/api_test/window_open/panel_window_open/',
'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/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/scopes/',
'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/incognito/',
'test/data/extensions/context_menus/long_title/',
'test/data/extensions/context_menus/simple/',
'test/data/extensions/convert_web_app/',
'test/data/extensions/experimental/',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/js_files/',
'test/data/extensions/install/install/',
'test/data/extensions/native_client/',
'test/data/extensions/permissions_increase/',
'test/data/extensions/platform_apps/context_menu/',
'test/data/extensions/platform_apps/context_menu_click/',
'test/data/extensions/platform_apps/disabled_window_properties/',
'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_invalid/',
'test/data/extensions/platform_apps/launch_no_intent/',
'test/data/extensions/platform_apps/launch_nothing/',
'test/data/extensions/platform_apps/minimal/',
'test/data/extensions/platform_apps/minimal_id/',
'test/data/extensions/platform_apps/mutation_events/',
'test/data/extensions/platform_apps/oauth2/',
'test/data/extensions/platform_apps/restart_test/',
'test/data/extensions/platform_apps/web_view/',
'test/data/extensions/platform_apps/web_view_isolation/',
'test/data/extensions/platform_apps/web_view_src_attribute/',
'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/page_cycler/cached_data_dir/Default/Archived History',
'test/data/page_cycler/cached_data_dir/Default/Archived History-journal',
'test/data/page_cycler/cached_data_dir/Default/Cache/',
'test/data/page_cycler/cached_data_dir/Default/Current Session',
'test/data/page_cycler/cached_data_dir/Default/Current Tabs',
'test/data/page_cycler/cached_data_dir/Default/History Index 2011-12',
'test/data/page_cycler/cached_data_dir/Default/History Index 2011-12-journal',
'test/data/page_cycler/cached_data_dir/Default/History Index 2012-02',
'test/data/page_cycler/cached_data_dir/Default/History Index 2012-02-journal',
'test/data/page_cycler/cached_data_dir/Default/History Index 2012-03',
'test/data/page_cycler/cached_data_dir/Default/History Index 2012-03-journal',
'test/data/page_cycler/cached_data_dir/Default/History Index 2012-04',
'test/data/page_cycler/cached_data_dir/Default/History Index 2012-04-journal',
'test/data/page_cycler/cached_data_dir/Default/History Provider Cache',
'test/data/page_cycler/cached_data_dir/Default/Last Session',
'test/data/page_cycler/cached_data_dir/Default/Last Tabs',
'test/data/page_cycler/cached_data_dir/Default/Network Action Predictor',
'test/data/page_cycler/cached_data_dir/Default/Network Action Predictor-journal',
'test/data/page_cycler/cached_data_dir/Default/Top Sites',
'test/data/page_cycler/cached_data_dir/Default/Top Sites-journal',
'test/data/page_cycler/cached_data_dir/Default/Visited Links',
'test/data/page_cycler/cached_data_dir/Default/Web Data',
'test/data/page_cycler/cached_data_dir/Default/Web Data-journal',
'test/data/page_cycler/cached_data_dir/Local State',
'test/data/page_cycler/cached_data_dir/Safe Browsing Cookies',
'test/data/page_cycler/cached_data_dir/Safe Browsing Cookies-journal',
'test/data/panels/basic/',
'test/data/performance_monitor/extensions/',
'test/data/plugin_delete_self_at_load.html',
'test/data/profiles/webkit_global_migration/',
'test/data/profiles/webkit_global_reverse_migration/',
'test/data/referrer_policy/',
'test/data/requirements_checker/require_3d/',
'test/data/safe_browsing/Safe Browsing Cookies',
'test/data/session_restore/',
'test/data/ssl/google_files/',
],
'isolate_dependency_touched': [
'test/data/extensions/api_test/webstore_private/empty.crx',
'test/data/page_cycler/cached_data_dir/Default/User StyleSheets/Custom.css',
'test/data/page_cycler/cached_data_dir/First Run',
],
},
}],
['OS=="win"', {
'variables': {
'isolate_dependency_tracked': [
'../third_party/cygwin/bin/bash.exe',
'../third_party/cygwin/setup_mount.bat',
'../third_party/psyco_win32/psyco/__init__.py',
'../third_party/psyco_win32/psyco/_psyco.pyd',
'../third_party/psyco_win32/psyco/core.py',
'../third_party/psyco_win32/psyco/kdictproxy.py',
'../third_party/psyco_win32/psyco/profiler.py',
'../third_party/psyco_win32/psyco/support.py',
'../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/charset.py',
'../third_party/python_26/Lib/email/encoders.py',
'../third_party/python_26/Lib/email/errors.py',
'../third_party/python_26/Lib/email/feedparser.py',
'../third_party/python_26/Lib/email/iterators.py',
'../third_party/python_26/Lib/email/message.py',
'../third_party/python_26/Lib/email/mime/__init__.py',
'../third_party/python_26/Lib/email/parser.py',
'../third_party/python_26/Lib/email/quoprimime.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/filecmp.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/getopt.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/uu.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/parsers/__init__.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)/D3DCompiler_43.dll',
'<(PRODUCT_DIR)/d3dx9_43.dll',
'<(PRODUCT_DIR)/environment.x86',
'<(PRODUCT_DIR)/ffmpegsumo.dll',
'<(PRODUCT_DIR)/gyp-win-tool',
'<(PRODUCT_DIR)/icudt.dll',
'<(PRODUCT_DIR)/lib64/runnable-ld.so',
'<(PRODUCT_DIR)/libEGL.dll',
'<(PRODUCT_DIR)/libGLESv2.dll',
'<(PRODUCT_DIR)/nacl_test_data/glibc/pm_exit_status_test_libs/lib64/runnable-ld.so',
'<(PRODUCT_DIR)/nacl_test_data/glibc/simple_libs/lib64/runnable-ld.so',
'<(PRODUCT_DIR)/osmesa.dll',
'<(PRODUCT_DIR)/plugins/npTestNetscapePlugIn.dll',
'<(PRODUCT_DIR)/plugins/npapi_test_plugin.dll',
'<(PRODUCT_DIR)/ppGoogleNaClPluginChrome.dll',
'<(PRODUCT_DIR)/ppapi_tests.dll',
'test/data/automation/client_redirects.html',
'test/data/automation/meta_redirect.html',
'test/data/automation/sends_message_on_load.html',
'test/data/captive_portal/iframe_timeout.html',
'test/data/captive_portal/login.html',
'test/data/captive_portal/login.html.mock-http-headers',
'test/data/captive_portal/page204.html',
'test/data/captive_portal/page204.html.mock-http-headers',
'test/data/captive_portal/page511.html',
'test/data/captive_portal/page511.html.mock-http-headers',
'test/data/devtools/debugger_test_page.html',
'test/data/devtools/navigate_back.html',
'test/data/devtools/page_with_content_script.html',
'test/data/devtools/pause_when_script_is_running.html',
'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/app_background_page/common/a.html',
'test/data/extensions/api_test/app_background_page/common/bg.html',
'test/data/extensions/api_test/app_background_page/common/c.html',
'test/data/extensions/api_test/app_background_page/common/close.html',
'test/data/extensions/api_test/app_background_page/common/common.js',
'test/data/extensions/api_test/app_process/path1/iframe.html',
'test/data/extensions/api_test/app_process/path1/redirect.html',
'test/data/extensions/api_test/app_process/path3/container.html',
'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/bindings/exception_in_handler_should_not_crash/page.html',
'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/about_blank_iframes/test.html',
'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/background.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/css_l10n/test_extension_id.js',
'test/data/extensions/api_test/content_scripts/dont_match_host_permissions/background.js',
'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/existing_renderers/content_styles.css',
'test/data/extensions/api_test/content_scripts/extension_api/events.js',
'test/data/extensions/api_test/content_scripts/extension_api/fire_event.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/background.html',
'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/background.js',
'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/background.js',
'test/data/extensions/api_test/content_scripts/permissions/manifest.json',
'test/data/extensions/api_test/content_scripts/view_source/background.js',
'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_security_policy/test.js',
'test/data/extensions/api_test/content_settings/standard/manifest.json',
'test/data/extensions/api_test/content_settings/standard/test.js',
'test/data/extensions/api_test/context_menus/basics/manifest.json',
'test/data/extensions/api_test/context_menus/event_page/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/events/test.js',
'test/data/extensions/api_test/cookies/no_permission/background.js',
'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/all_urls/test.html',
'test/data/extensions/api_test/cross_origin_xhr/all_urls/test.js',
'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/file_access/test.js',
'test/data/extensions/api_test/cross_origin_xhr/no_file_access/manifest.json',
'test/data/extensions/api_test/debugger/inspected.html',
'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/executescript/navigation_race/javascript_url.html',
'test/data/extensions/api_test/executescript/navigation_race/javascript_url.js',
'test/data/extensions/api_test/executescript/navigation_race/manifest.json',
'test/data/extensions/api_test/executescript/navigation_race/test.js',
'test/data/extensions/api_test/file_system/get_writable_file_entry/background.js',
'test/data/extensions/api_test/file_system/get_writable_file_entry/manifest.json',
'test/data/extensions/api_test/file_system/save_cancel/background.js',
'test/data/extensions/api_test/file_system/save_cancel/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/i18n/test.js',
'test/data/extensions/api_test/idle/manifest.json',
'test/data/extensions/api_test/input/manifest.json',
'test/data/extensions/api_test/lazy_background_page/browser_action_create_tab/background.js',
'test/data/extensions/api_test/lazy_background_page/browser_action_create_tab/manifest.json',
'test/data/extensions/api_test/lazy_background_page/browser_action_with_callback/background.js',
'test/data/extensions/api_test/lazy_background_page/browser_action_with_callback/manifest.json',
'test/data/extensions/api_test/lazy_background_page/event_dispatch_to_tab/background.js',
'test/data/extensions/api_test/lazy_background_page/event_dispatch_to_tab/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/management/management_policy/allowed.html',
'test/data/extensions/api_test/management/management_policy/allowed.js',
'test/data/extensions/api_test/management/management_policy/manifest.json',
'test/data/extensions/api_test/management/management_policy/prohibited.html',
'test/data/extensions/api_test/management/management_policy/prohibited.js',
'test/data/extensions/api_test/messaging/connect_external/test.html',
'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/offscreen_tabs/a.js',
'test/data/extensions/api_test/override/history/background.js',
'test/data/extensions/api_test/override/history/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/basics/update2.js',
'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/hash_change/background.js',
'test/data/extensions/api_test/page_action/hash_change/manifest.json',
'test/data/extensions/api_test/page_action/hash_change/script.js',
'test/data/extensions/api_test/page_action/hash_change/test_page_A.html',
'test/data/extensions/api_test/page_action/hash_change/test_page_B.html',
'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/background.js',
'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/persistent_incognito/test.js',
'test/data/extensions/api_test/preference/session_only_incognito/manifest.json',
'test/data/extensions/api_test/preference/session_only_incognito/test.js',
'test/data/extensions/api_test/preference/standard/manifest.json',
'test/data/extensions/api_test/preference/standard/test.html',
'test/data/extensions/api_test/preference/standard/test.js',
'test/data/extensions/api_test/processes/onupdated/manifest.json',
'test/data/extensions/api_test/rlz/manifest.json',
'test/data/extensions/api_test/sandboxed_pages/main.html',
'test/data/extensions/api_test/script_badge/basics/background.js',
'test/data/extensions/api_test/script_badge/basics/manifest.json',
'test/data/extensions/api_test/script_badge/basics/update.js',
'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/background.js',
'test/data/extensions/api_test/tabs/current_window/manifest.json',
'test/data/extensions/api_test/tabs/incognito_disabled/background.js',
'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/javascript_url_permissions/test.js',
'test/data/extensions/api_test/tabs/on_removed/c.html',
'test/data/extensions/api_test/tabs/on_removed/manifest.json',
'test/data/extensions/api_test/tabs/on_removed/tabs_util.js',
'test/data/extensions/api_test/tabs/on_removed/test.js',
'test/data/extensions/api_test/tabs/on_updated/browserThenRendererInitiated/b.html',
'test/data/extensions/api_test/tabs/on_updated/iframeNavigated/frame1.js',
'test/data/extensions/api_test/tabs/on_updated/iframeNavigated/iframe2.html',
'test/data/extensions/api_test/tabs/on_updated/iframeNavigated/iframe3.html',
'test/data/extensions/api_test/tabs/on_updated/manifest.json',
'test/data/extensions/api_test/webnavigation/crossProcess/e.html',
'test/data/extensions/api_test/webnavigation/crossProcess/e.js',
'test/data/extensions/api_test/webnavigation/crossProcess/f.html',
'test/data/extensions/api_test/webnavigation/crossProcess/f.js',
'test/data/extensions/api_test/webnavigation/crossProcess/g.html',
'test/data/extensions/api_test/webnavigation/crossProcess/g.js',
'test/data/extensions/api_test/webnavigation/crossProcess/h.html',
'test/data/extensions/api_test/webnavigation/crossProcess/h.js',
'test/data/extensions/api_test/webnavigation/crossProcess/i.html',
'test/data/extensions/api_test/webnavigation/crossProcess/i.js',
'test/data/extensions/api_test/webnavigation/framework.js',
'test/data/extensions/api_test/webnavigation/manifest.json',
'test/data/extensions/api_test/webnavigation/targetBlank/b.html',
'test/data/extensions/api_test/webnavigation/test_api.html',
'test/data/extensions/api_test/webnavigation/test_api.js',
'test/data/extensions/api_test/webnavigation/test_clientRedirect.html',
'test/data/extensions/api_test/webnavigation/test_clientRedirect.js',
'test/data/extensions/api_test/webnavigation/test_crossProcessFragment.html',
'test/data/extensions/api_test/webnavigation/test_crossProcessFragment.js',
'test/data/extensions/api_test/webnavigation/test_crossProcessHistory.html',
'test/data/extensions/api_test/webnavigation/test_crossProcessHistory.js',
'test/data/extensions/api_test/webnavigation/test_filtered.html',
'test/data/extensions/api_test/webnavigation/test_filtered.js',
'test/data/extensions/api_test/webnavigation/test_getFrame.html',
'test/data/extensions/api_test/webnavigation/test_getFrame.js',
'test/data/extensions/api_test/webnavigation/test_history.html',
'test/data/extensions/api_test/webnavigation/test_history.js',
'test/data/extensions/api_test/webnavigation/test_iframe.html',
'test/data/extensions/api_test/webnavigation/test_iframe.js',
'test/data/extensions/api_test/webnavigation/test_openTab.html',
'test/data/extensions/api_test/webnavigation/test_openTab.js',
'test/data/extensions/api_test/webnavigation/test_prerender.html',
'test/data/extensions/api_test/webnavigation/test_prerender.js',
'test/data/extensions/api_test/webnavigation/test_referenceFragment.html',
'test/data/extensions/api_test/webnavigation/test_referenceFragment.js',
'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_simpleLoad.html',
'test/data/extensions/api_test/webnavigation/test_simpleLoad.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/webnavigation/userAction/b.html',
'test/data/extensions/api_test/webrequest/framework.js',
'test/data/extensions/api_test/webrequest/manifest.json',
'test/data/extensions/api_test/webrequest/simpleLoad/a.html',
'test/data/extensions/api_test/webrequest/test_api.html',
'test/data/extensions/api_test/webrequest/test_api.js',
'test/data/extensions/api_test/webrequest/test_complex.html',
'test/data/extensions/api_test/webrequest/test_complex.js',
'test/data/extensions/api_test/webrequest/test_newTab.html',
'test/data/extensions/api_test/webrequest/test_newTab.js',
'test/data/extensions/api_test/webrequest/test_simple.html',
'test/data/extensions/api_test/webrequest/test_simple.js',
'test/data/extensions/api_test/websocket/manifest.json',
'test/data/extensions/api_test/webstore_inline_install/inlineinstall/detail/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',
'test/data/extensions/api_test/webstore_inline_install/inlineinstall/detail/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb',
'test/data/extensions/api_test/webstore_inline_install/inlineinstall/detail/ecglahbcnmdpdciemllbhojghbkagdje',
'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/focus/manifest.json',
'test/data/extensions/api_test/window_open/focus/test.html',
'test/data/extensions/api_test/window_open/focus/test.js',
'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/foo.html',
'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/extension/tab.js',
'test/data/extensions/api_test/window_open/popup_blocking/hosted_app/manifest.json',
'test/data/extensions/api_test/window_open/popup_blocking/hosted_app/tab.html',
'test/data/extensions/api_test/window_open/popup_large/manifest.json',
'test/data/extensions/api_test/window_open/popup_small/background.js',
'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/focus/test.html',
'test/data/extensions/api_test/window_update/focus/test.js',
'test/data/extensions/api_test/window_update/resize/manifest.json',
'test/data/extensions/api_test/window_update/resize/test.html',
'test/data/extensions/api_test/window_update/resize/test.js',
'test/data/extensions/api_test/window_update/show_state/manifest.json',
'test/data/extensions/api_test/window_update/show_state/test.js',
'test/data/extensions/api_test/window_update/sizing/manifest.json',
'test/data/extensions/api_test/window_update/sizing/test.html',
'test/data/extensions/api_test/window_update/sizing/test.js',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/french_sentence.html',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/icon_128.png',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/page.html',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/page.js',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/test_gettabs.html',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/test_gettabs.js',
'test/data/extensions/good/Extensions/hpiknbiabeeppbpihjehijgoemciehgk/',
'test/data/extensions/good/Extensions/hpiknbiabeeppbpihjehijgoemciehgk/2/background.html',
'test/data/extensions/good/Extensions/hpiknbiabeeppbpihjehijgoemciehgk/2/manifest.json',
'test/data/extensions/hosted_app/manifest.json',
'test/data/extensions/isolated_apps/app1/manifest.json',
'test/data/extensions/isolated_apps/app2/manifest.json',
'test/data/extensions/isolated_apps/non_app/subframe.html',
'test/data/extensions/management/packaged_app/manifest.json',
'test/data/extensions/platform_apps/minimal/main.html',
'test/data/extensions/platform_apps/minimal/manifest.json',
'test/data/extensions/platform_apps/minimal/test.js',
'test/data/extensions/subscribe_page_action/feed-icon-128x128.png',
'test/data/login/multi_realm.html',
'test/data/policy/device_management',
'test/data/prerender/doc1.html',
'test/data/save_page/c.htm',
'third_party/jstemplate/jstemplate_compiled.js',
'tools/build/repack_locales.py',
],
'isolate_dependency_untracked': [
'../third_party/python_26/Lib/xml/parsers/',
'test/data/devtools/extensions/devtools_extension/',
'test/data/devtools/extensions/devtools_messaging/',
'test/data/devtools/extensions/simple_content_script/',
'test/data/extensions/api_test/clipboard/extension/',
'test/data/extensions/api_test/clipboard/hosted_app/',
'test/data/extensions/api_test/clipboard/hosted_app_no_permission/',
'test/data/extensions/api_test/content_scripts/about_blank_iframes/',
'test/data/extensions/api_test/content_scripts/css_l10n/',
'test/data/extensions/api_test/content_scripts/css_l10n/_locales/',
'test/data/extensions/api_test/content_scripts/dont_match_host_permissions/',
'test/data/extensions/api_test/content_scripts/existing_renderers/',
'test/data/extensions/api_test/content_scripts/extension_api/',
'test/data/extensions/api_test/content_scripts/extension_iframe/',
'test/data/extensions/api_test/content_scripts/extension_process/',
'test/data/extensions/api_test/content_scripts/fragment/',
'test/data/extensions/api_test/content_scripts/other_extensions/',
'test/data/extensions/api_test/content_scripts/permissions/',
'test/data/extensions/api_test/content_scripts/view_source/',
'test/data/extensions/api_test/executescript/callback/',
'test/data/extensions/api_test/executescript/fragment/',
'test/data/extensions/api_test/executescript/frame_after_load/',
'test/data/extensions/api_test/executescript/in_frame/',
'test/data/extensions/api_test/extension_module/cognito_file/',
'test/data/extensions/api_test/extension_module/incognito_file/',
'test/data/extensions/api_test/i18n/_locales/',
'test/data/extensions/api_test/icons/',
'test/data/extensions/api_test/idle/',
'test/data/extensions/api_test/input/',
'test/data/extensions/api_test/keybinding/page_action/',
'test/data/extensions/api_test/keybinding/synthesized/',
'test/data/extensions/api_test/media_galleries/experimental/',
'test/data/extensions/api_test/media_galleries/read_access/',
'test/data/extensions/api_test/notifications/has_permission_manifest/',
'test/data/extensions/api_test/page_capture/',
'test/data/extensions/api_test/panels/',
'test/data/extensions/api_test/rlz/',
'test/data/extensions/api_test/serial/api/',
'test/data/extensions/api_test/settings/managed_storage_disabled/',
'test/data/extensions/api_test/settings/managed_storage_events/',
'test/data/extensions/api_test/settings/split_incognito/',
'test/data/extensions/api_test/socket/experimental/',
'test/data/extensions/api_test/speech_input/recognition/',
'test/data/extensions/api_test/speech_input/recognition_error/',
'test/data/extensions/api_test/speech_input/start_error/',
'test/data/extensions/api_test/speech_input/start_stop/',
'test/data/extensions/api_test/systeminfo/storage/',
'test/data/extensions/api_test/tabs/on_removed/',
'test/data/extensions/api_test/tts/optional_args/',
'test/data/extensions/api_test/tts/queue_interrupt/',
'test/data/extensions/api_test/tts/speak_error/',
'test/data/extensions/api_test/tts/word_callbacks/',
'test/data/extensions/api_test/tts_engine/engine_api/',
'test/data/extensions/api_test/tts_engine/engine_word_callbacks/',
'test/data/extensions/api_test/usb/device_handling/',
'test/data/extensions/api_test/usb/transfer_event/',
'test/data/extensions/api_test/webnavigation/clientRedirect/',
'test/data/extensions/api_test/webnavigation/getFrame/',
'test/data/extensions/api_test/webnavigation/history/',
'test/data/extensions/api_test/webnavigation/iframe/',
'test/data/extensions/api_test/webnavigation/openTab/',
'test/data/extensions/api_test/webnavigation/referenceFragment/',
'test/data/extensions/api_test/webnavigation/requestOpenTab/',
'test/data/extensions/api_test/webnavigation/serverRedirect/',
'test/data/extensions/api_test/webnavigation/simpleLoad/',
'test/data/extensions/api_test/webnavigation/targetBlank/',
'test/data/extensions/api_test/webnavigation/userAction/',
'test/data/extensions/api_test/webrequest/complexLoad/',
'test/data/extensions/api_test/webrequest/newTab/',
'test/data/extensions/api_test/webrequest/simpleLoad/',
'test/data/extensions/api_test/webrequest/xhr/',
'test/data/extensions/api_test/webrequest_permissions/spanning/',
'test/data/extensions/api_test/window_update/show_state/',
'test/data/extensions/devtools/timeline_api/',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/_locales/',
'test/data/extensions/good/Extensions/bjafgdebaacbbbecmhlhpofkepfkgcpa/',
'test/data/extensions/isolated_apps/app1/',
'test/data/extensions/management/install_event/',
'test/data/extensions/management/launch_app/',
'test/data/extensions/management/launch_app_from_background/',
'test/data/extensions/management/packaged_app/',
'test/data/extensions/management/simple_extension/',
'test/data/extensions/management/uninstall_extension/',
'test/data/extensions/subscribe_page_action/_locales/el/',
'test/data/requirements_checker/no_requirements/',
'test/data/requirements_checker/require_npapi/',
],
'isolate_dependency_touched': [
'test/data/download-test3.gif',
'test/data/empty.html',
'test/data/extensions/api_test/window_open/focus/blank.html',
'test/data/extensions/api_test/window_update/focus/blank.html',
'test/data/extensions/api_test/window_update/resize/blank.html',
'test/data/extensions/api_test/window_update/sizing/blank.html',
'test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/three_languages.html',
'test/data/extensions/good/Extensions/hpiknbiabeeppbpihjehijgoemciehgk/2/content_plugin.dll',
'test/data/extensions/good/Extensions/hpiknbiabeeppbpihjehijgoemciehgk/2/extension_plugin.dll',
'test/data/feeds/feed_invalid1.xml',
],
},
}, {
'variables': {
'isolate_dependency_tracked': [
'../third_party/tlslite/tlslite/integration/TLSTwistedProtocolWrapper.py',
],
'isolate_dependency_untracked': [
'test/data/extensions/api_test/bookmark_manager/standard/',
],
},
}],
],
}
|