summaryrefslogtreecommitdiffstats
path: root/chrome/chrome.xcodeproj/project.pbxproj
blob: 8e9798e0cede372bf967570230a84b923be3d14e (plain)
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
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 45;
	objects = {

/* Begin PBXAggregateTarget section */
		4D7B014C0E9D572C009A6919 /* run_unit_tests */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 4D7B01530E9D5760009A6919 /* Build configuration list for PBXAggregateTarget "run_unit_tests" */;
			buildPhases = (
				4D7B014B0E9D572C009A6919 /* ShellScript */,
			);
			dependencies = (
				4D7B01500E9D574A009A6919 /* PBXTargetDependency */,
			);
			name = run_unit_tests;
			productName = run_unit_tests;
		};
		4D7BFB040E9D4B8C009A6919 /* All */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 4D7BFB0A0E9D4BA1009A6919 /* Build configuration list for PBXAggregateTarget "All" */;
			buildPhases = (
			);
			dependencies = (
				4D7BFB080E9D4B98009A6919 /* PBXTargetDependency */,
				4D7BFC200E9D4CD4009A6919 /* PBXTargetDependency */,
				4D640CF20EAE86D800EBCFC0 /* PBXTargetDependency */,
				4D7BFB320E9D4BFB009A6919 /* PBXTargetDependency */,
			);
			name = All;
			productName = All;
		};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
		4D640CF30EAE86E300EBCFC0 /* about_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CBD0EAE868600EBCFC0 /* about_handler.cc */; };
		4D640CF40EAE86EA00EBCFC0 /* render_dns_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CE40EAE86A500EBCFC0 /* render_dns_queue.cc */; };
		4D640CF50EAE86EF00EBCFC0 /* visitedlink_slave.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CDC0EAE868600EBCFC0 /* visitedlink_slave.cc */; };
		4D7B00510E9D5473009A6919 /* libnet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7B004E0E9D5464009A6919 /* libnet.a */; };
		4D7B00520E9D5473009A6919 /* libskia.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7B00330E9D5459009A6919 /* libskia.a */; };
		4D7B005E0E9D54BB009A6919 /* libmodp_b64.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7B005D0E9D54AA009A6919 /* libmodp_b64.a */; };
		4D7B01420E9D56C4009A6919 /* libsqlite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7B01410E9D56BC009A6919 /* libsqlite.a */; };
		4D7B01480E9D56F2009A6919 /* libicudata.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE690E9D52DC009A6919 /* libicudata.a */; };
		4D7BF97B0E9D4857009A6919 /* browser_process.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8410E9D4839009A6919 /* browser_process.cc */; };
		4D7BF98D0E9D485B009A6919 /* cancelable_request.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8550E9D4839009A6919 /* cancelable_request.cc */; };
		4D7BF9920E9D485F009A6919 /* chrome_thread.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF85F0E9D4839009A6919 /* chrome_thread.cc */; };
		4D7BF9970E9D4863009A6919 /* cross_site_request_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8670E9D4839009A6919 /* cross_site_request_manager.cc */; };
		4D7BF9990E9D486B009A6919 /* google_url_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8870E9D4839009A6919 /* google_url_tracker.cc */; };
		4D7BF99E0E9D486F009A6919 /* google_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF88A0E9D4839009A6919 /* google_util.cc */; };
		4D7BF9A00E9D4875009A6919 /* meta_table_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8AF0E9D4839009A6919 /* meta_table_helper.cc */; };
		4D7BF9A50E9D487B009A6919 /* metrics_response.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8B40E9D4839009A6919 /* metrics_response.cc */; };
		4D7BF9AC0E9D4880009A6919 /* page_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8D40E9D4839009A6919 /* page_state.cc */; };
		4D7BF9B10E9D4888009A6919 /* renderer_security_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8FB0E9D4839009A6919 /* renderer_security_policy.cc */; };
		4D7BF9B60E9D4894009A6919 /* session_startup_pref.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF91A0E9D4839009A6919 /* session_startup_pref.cc */; };
		4D7BF9BD0E9D489B009A6919 /* url_fetcher_protect.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9530E9D4839009A6919 /* url_fetcher_protect.cc */; };
		4D7BF9C20E9D489E009A6919 /* user_metrics.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9590E9D4839009A6919 /* user_metrics.cc */; };
		4D7BF9E10E9D48D6009A6919 /* save_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9D40E9D48CE009A6919 /* save_file.cc */; };
		4D7BFA1E0E9D48FD009A6919 /* archived_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9E40E9D48F7009A6919 /* archived_database.cc */; };
		4D7BFA1F0E9D4901009A6919 /* history_types.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9F60E9D48F7009A6919 /* history_types.cc */; };
		4D7BFA240E9D4905009A6919 /* in_memory_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9FA0E9D48F7009A6919 /* in_memory_database.cc */; };
		4D7BFA260E9D4908009A6919 /* in_memory_history_backend.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9FC0E9D48F7009A6919 /* in_memory_history_backend.cc */; };
		4D7BFA280E9D490C009A6919 /* page_usage_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9FE0E9D48F7009A6919 /* page_usage_data.cc */; };
		4D7BFA2D0E9D4910009A6919 /* snippet.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA040E9D48F7009A6919 /* snippet.cc */; };
		4D7BFA320E9D4912009A6919 /* text_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA0A0E9D48F7009A6919 /* text_database.cc */; };
		4D7BFA370E9D4915009A6919 /* text_database_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA0C0E9D48F7009A6919 /* text_database_manager.cc */; };
		4D7BFA390E9D4918009A6919 /* thumbnail_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA100E9D48F7009A6919 /* thumbnail_database.cc */; };
		4D7BFA3E0E9D491B009A6919 /* visit_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA160E9D48F7009A6919 /* visit_database.cc */; };
		4D7BFA430E9D491E009A6919 /* visit_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA190E9D48F7009A6919 /* visit_tracker.cc */; };
		4D7BFA480E9D4922009A6919 /* visitsegment_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA1C0E9D48F7009A6919 /* visitsegment_database.cc */; };
		4D7BFA7C0E9D4994009A6919 /* dns_host_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA6A0E9D4981009A6919 /* dns_host_info.cc */; };
		4D7BFABB0E9D49C1009A6919 /* page_number.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA7F0E9D49A4009A6919 /* page_number.cc */; };
		4D7BFAC40E9D49C6009A6919 /* page_setup.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA880E9D49A4009A6919 /* page_setup.cc */; };
		4D7BFAC60E9D49CB009A6919 /* page_range.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA850E9D49A4009A6919 /* page_range.cc */; };
		4D7BFAC80E9D49D1009A6919 /* units.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA9F0E9D49A4009A6919 /* units.cc */; };
		4D7BFAEE0E9D49E5009A6919 /* bloom_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFACE0E9D49DE009A6919 /* bloom_filter.cc */; };
		4D7BFAEF0E9D49E7009A6919 /* chunk_range.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAD10E9D49DE009A6919 /* chunk_range.cc */; };
		4D7BFAF10E9D49EB009A6919 /* protocol_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAD80E9D49DE009A6919 /* protocol_parser.cc */; };
		4D7BFAF30E9D49EF009A6919 /* safe_browsing_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFADD0E9D49DE009A6919 /* safe_browsing_database.cc */; };
		4D7BFAF40E9D49F3009A6919 /* safe_browsing_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAE50E9D49DE009A6919 /* safe_browsing_service.cc */; };
		4D7BFAF60E9D49F6009A6919 /* safe_browsing_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAE70E9D49DE009A6919 /* safe_browsing_util.cc */; };
		4D7BFB350E9D4C18009A6919 /* chrome_thread_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8610E9D4839009A6919 /* chrome_thread_unittest.cc */; };
		4D7BFB3C0E9D4C25009A6919 /* history_types_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9F80E9D48F7009A6919 /* history_types_unittest.cc */; };
		4D7BFB3E0E9D4C2F009A6919 /* text_database_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA0F0E9D48F7009A6919 /* text_database_unittest.cc */; };
		4D7BFB420E9D4C35009A6919 /* visit_tracker_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA1B0E9D48F7009A6919 /* visit_tracker_unittest.cc */; };
		4D7BFB510E9D4C3E009A6919 /* dns_host_info_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA6C0E9D4981009A6919 /* dns_host_info_unittest.cc */; };
		4D7BFB580E9D4C43009A6919 /* page_range_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA870E9D49A4009A6919 /* page_range_unittest.cc */; };
		4D7BFB5F0E9D4C46009A6919 /* page_setup_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA8A0E9D49A4009A6919 /* page_setup_unittest.cc */; };
		4D7BFB610E9D4C4B009A6919 /* units_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAA10E9D49A4009A6919 /* units_unittest.cc */; };
		4D7BFB6D0E9D4C51009A6919 /* bloom_filter_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAD00E9D49DE009A6919 /* bloom_filter_unittest.cc */; };
		4D7BFB710E9D4C55009A6919 /* chunk_range_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAD30E9D49DE009A6919 /* chunk_range_unittest.cc */; };
		4D7BFB780E9D4C5A009A6919 /* protocol_parser_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFADA0E9D49DE009A6919 /* protocol_parser_unittest.cc */; };
		4D7BFB7F0E9D4C63009A6919 /* safe_browsing_util_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAE90E9D49DE009A6919 /* safe_browsing_util_unittest.cc */; };
		4D7BFC260E9D4CE8009A6919 /* animation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB850E9D4C9F009A6919 /* animation.cc */; };
		4D7BFC280E9D4CEB009A6919 /* chrome_constants.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB8B0E9D4C9F009A6919 /* chrome_constants.cc */; };
		4D7BFC2A0E9D4CED009A6919 /* chrome_counters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB8D0E9D4C9F009A6919 /* chrome_counters.cc */; };
		4D7BFC2C0E9D4CF1009A6919 /* chrome_switches.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB990E9D4C9F009A6919 /* chrome_switches.cc */; };
		4D7BFC2E0E9D4CF5009A6919 /* debug_flags.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBA10E9D4C9F009A6919 /* debug_flags.cc */; };
		4D7BFC330E9D4CF9009A6919 /* env_vars.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBA50E9D4C9F009A6919 /* env_vars.cc */; };
		4D7BFC380E9D4CFF009A6919 /* ipc_message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBB00E9D4C9F009A6919 /* ipc_message.cc */; };
		4D7BFC4B0E9D4D06009A6919 /* json_value_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBC30E9D4C9F009A6919 /* json_value_serializer.cc */; };
		4D7BFC540E9D4D09009A6919 /* libxml_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBCC0E9D4C9F009A6919 /* libxml_utils.cc */; };
		4D7BFC580E9D4D0E009A6919 /* jpeg_codec.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBC00E9D4C9F009A6919 /* jpeg_codec.cc */; };
		4D7BFC5C0E9D4D24009A6919 /* notification_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBD90E9D4C9F009A6919 /* notification_service.cc */; };
		4D7BFC710E9D4D28009A6919 /* pref_member.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBE50E9D4C9F009A6919 /* pref_member.cc */; };
		4D7BFC7A0E9D4D2B009A6919 /* pref_names.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBE80E9D4C9F009A6919 /* pref_names.cc */; };
		4D7BFC7F0E9D4D2E009A6919 /* slide_animation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBFC0E9D4C9F009A6919 /* slide_animation.cc */; };
		4D7BFC840E9D4D32009A6919 /* sqlite_compiled_statement.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBFE0E9D4C9F009A6919 /* sqlite_compiled_statement.cc */; };
		4D7BFC8B0E9D4D35009A6919 /* sqlite_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFC000E9D4C9F009A6919 /* sqlite_utils.cc */; };
		4D7BFC920E9D4D3A009A6919 /* task_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFC030E9D4C9F009A6919 /* task_queue.cc */; };
		4D7BFC970E9D4D3E009A6919 /* throb_animation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFC060E9D4C9F009A6919 /* throb_animation.cc */; };
		4D7BFC9C0E9D4D46009A6919 /* thumbnail_score.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFC080E9D4C9F009A6919 /* thumbnail_score.cc */; };
		4D7BFCA30E9D4D48009A6919 /* visitedlink_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFC0D0E9D4C9F009A6919 /* visitedlink_common.cc */; };
		4D7BFCC90E9D4D72009A6919 /* color_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFCAD0E9D4D5D009A6919 /* color_utils.cc */; };
		4D7BFCCE0E9D4D7A009A6919 /* cookie_monster_sqlite.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFCBF0E9D4D6B009A6919 /* cookie_monster_sqlite.cc */; };
		4D7BFCDF0E9D4DC4009A6919 /* animation_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB870E9D4C9F009A6919 /* animation_unittest.cc */; };
		4D7BFCE10E9D4DC8009A6919 /* bzip2_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB880E9D4C9F009A6919 /* bzip2_unittest.cc */; };
		4D7BFCE30E9D4DCE009A6919 /* jpeg_codec_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBC20E9D4C9F009A6919 /* jpeg_codec_unittest.cc */; };
		4D7BFCE70E9D4DD4009A6919 /* json_value_serializer_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBC60E9D4C9F009A6919 /* json_value_serializer_unittest.cc */; };
		4D7BFCF30E9D4E07009A6919 /* run_all_unittests.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFCEF0E9D4DFE009A6919 /* run_all_unittests.cc */; };
		4D7BFD960E9D5223009A6919 /* libbrowser.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BF3060E9D477E009A6919 /* libbrowser.a */; };
		4D7BFD970E9D5226009A6919 /* libcommon.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFC1A0E9D4CB9009A6919 /* libcommon.a */; };
		4D7BFDCE0E9D5267009A6919 /* libbase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDC70E9D525B009A6919 /* libbase.a */; };
		4D7BFDD20E9D5295009A6919 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDD10E9D5295009A6919 /* CoreFoundation.framework */; };
		4D7BFE760E9D52E4009A6919 /* libicuuc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE710E9D52DC009A6919 /* libicuuc.a */; };
		4D7BFE800E9D5317009A6919 /* libicui18n.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE6D0E9D52DC009A6919 /* libicui18n.a */; };
		4D7BFE830E9D532E009A6919 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE820E9D532E009A6919 /* Foundation.framework */; };
		4D7BFF3A0E9D5378009A6919 /* libjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF370E9D5362009A6919 /* libjpeg.a */; };
		4D7BFF440E9D53A0009A6919 /* libgtest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF410E9D538D009A6919 /* libgtest.a */; };
		4D7BFF590E9D53E0009A6919 /* libbzip2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF540E9D53C1009A6919 /* libbzip2.a */; };
		4D7BFF5A0E9D53E0009A6919 /* libevent.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF4B0E9D53B4009A6919 /* libevent.a */; };
		4D7BFF5E0E9D53FD009A6919 /* libbase_gfx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDC90E9D525B009A6919 /* libbase_gfx.a */; };
		4D7BFF730E9D5425009A6919 /* libgoogleurl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF6E0E9D540F009A6919 /* libgoogleurl.a */; };
		4D7BFF7B0E9D5449009A6919 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF7A0E9D5449009A6919 /* AppKit.framework */; };
		4DC6498F0EA92BF90017C876 /* platform_test_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4DC6498E0EA92BF90017C876 /* platform_test_mac.mm */; };
		4DDC63E70EAE344300FB5EBE /* metrics_response_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8B60E9D4839009A6919 /* metrics_response_unittest.cc */; };
		4DDC644B0EAE390800FB5EBE /* libxml.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFB230E9D4BBF009A6919 /* libxml.a */; };
		4DDC64580EAE394200FB5EBE /* libzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DDC64550EAE392400FB5EBE /* libzlib.a */; };
		B54BD8FC0ED622C00093FD54 /* mach_message_source_mac.cc in Sources */ = {isa = PBXBuildFile; fileRef = B54BD8FA0ED622C00093FD54 /* mach_message_source_mac.cc */; };
		B562C8430ED49C830077A23F /* mach_ipc_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = B562C8420ED49C830077A23F /* mach_ipc_mac.mm */; };
		E48FB9590EC4E9C10052B72B /* safe_browsing_database_bloom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFADF0E9D49DE009A6919 /* safe_browsing_database_bloom.cc */; };
		E48FB95C0EC4E9DD0052B72B /* safe_browsing_database_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAE10E9D49DE009A6919 /* safe_browsing_database_impl.cc */; };
		E48FB9760EC4EA320052B72B /* url_request_failed_dns_job.cc in Sources */ = {isa = PBXBuildFile; fileRef = E48FB96E0EC4EA270052B72B /* url_request_failed_dns_job.cc */; };
		E48FB9790EC4EA410052B72B /* url_request_mock_http_job.cc in Sources */ = {isa = PBXBuildFile; fileRef = E48FB9700EC4EA270052B72B /* url_request_mock_http_job.cc */; };
		E48FB97A0EC4EA4A0052B72B /* url_request_mock_net_error_job.cc in Sources */ = {isa = PBXBuildFile; fileRef = E48FB9720EC4EA270052B72B /* url_request_mock_net_error_job.cc */; };
		E48FB97C0EC4EA540052B72B /* url_request_slow_download_job.cc in Sources */ = {isa = PBXBuildFile; fileRef = E48FB9740EC4EA270052B72B /* url_request_slow_download_job.cc */; };
		E48FB9870EC4EBA10052B72B /* safe_browsing_database_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAE40E9D49DE009A6919 /* safe_browsing_database_unittest.cc */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		4D640CF10EAE86D800EBCFC0 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D640CEA0EAE86BD00EBCFC0;
			remoteInfo = renderer;
		};
		4D7B00320E9D5459009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B002E0E9D5459009A6919 /* skia.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = E48EE4CF0E34E855009DE966;
			remoteInfo = skia;
		};
		4D7B004D0E9D5464009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B00340E9D5464009A6919 /* net.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = E4BA04540E25613300BE02C6;
			remoteInfo = net;
		};
		4D7B004F0E9D5464009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B00340E9D5464009A6919 /* net.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = E4AFA6230E523E2900201347;
			remoteInfo = net_unittests;
		};
		4D7B00530E9D5487009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B002E0E9D5459009A6919 /* skia.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = E48EE4CE0E34E855009DE966;
			remoteInfo = skia;
		};
		4D7B00550E9D5487009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B00340E9D5464009A6919 /* net.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = net;
		};
		4D7B005C0E9D54AA009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B00580E9D54AA009A6919 /* modp_b64.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7B8502390E5A384100730B43;
			remoteInfo = modp_b64;
		};
		4D7B005F0E9D54BF009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B00580E9D54AA009A6919 /* modp_b64.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7B8502380E5A384100730B43;
			remoteInfo = modp_b64;
		};
		4D7B01400E9D56BC009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B01390E9D56BC009A6919 /* sqlite.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 4D7B007F0E9D5538009A6919;
			remoteInfo = sqlite;
		};
		4D7B01430E9D56CC009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B01390E9D56BC009A6919 /* sqlite.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 4D7B007E0E9D5538009A6919;
			remoteInfo = sqlite;
		};
		4D7B01460E9D56DF009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 82C262C30DCF9411005CFE91;
			remoteInfo = icudata;
		};
		4D7B014F0E9D574A009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BFB2C0E9D4BE5009A6919;
			remoteInfo = unit_tests;
		};
		4D7BFB070E9D4B98009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BF3050E9D477E009A6919;
			remoteInfo = browser;
		};
		4D7BFB220E9D4BBF009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFB0B0E9D4BBF009A6919 /* libxml.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7B12F2AC0D8EE24200CB6E8F;
			remoteInfo = xml;
		};
		4D7BFB240E9D4BBF009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFB0B0E9D4BBF009A6919 /* libxml.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7B12F54E0D8EE8E400CB6E8F;
			remoteInfo = xmlcatalog;
		};
		4D7BFB260E9D4BBF009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFB0B0E9D4BBF009A6919 /* libxml.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7B12F58F0D8EEB2F00CB6E8F;
			remoteInfo = xmllint;
		};
		4D7BFB280E9D4BC9009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFB0B0E9D4BBF009A6919 /* libxml.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BE970530D872DC200F86D4B;
			remoteInfo = libxml_config;
		};
		4D7BFB310E9D4BFB009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BFB2C0E9D4BE5009A6919;
			remoteInfo = unit_tests;
		};
		4D7BFC1D0E9D4CCA009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFB0B0E9D4BBF009A6919 /* libxml.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BE970530D872DC200F86D4B;
			remoteInfo = libxml_config;
		};
		4D7BFC1F0E9D4CD4009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BFC190E9D4CB9009A6919;
			remoteInfo = common;
		};
		4D7BFCD90E9D4DAF009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BF3050E9D477E009A6919;
			remoteInfo = browser;
		};
		4D7BFCDB0E9D4DAF009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BFC190E9D4CB9009A6919;
			remoteInfo = common;
		};
		4D7BFDC60E9D525B009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 825402BB0D92D0FA0006B936;
			remoteInfo = base;
		};
		4D7BFDC80E9D525B009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 825403B10D92D2E50006B936;
			remoteInfo = base_gfx;
		};
		4D7BFDCA0E9D525B009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = E49F18BF0E4CBAC200386AEC;
			remoteInfo = base_unittests;
		};
		4D7BFDCC0E9D5262009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 825402BA0D92D0FA0006B936;
			remoteInfo = base;
		};
		4D7BFE660E9D52DC009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD540D60D6F7EFE003CD41E;
			remoteInfo = genccode;
		};
		4D7BFE680E9D52DC009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 82C262C40DCF9411005CFE91;
			remoteInfo = icudata;
		};
		4D7BFE6A0E9D52DC009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD5408B0D6F743F003CD41E;
			remoteInfo = icudata_stub;
		};
		4D7BFE6C0E9D52DC009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD53EA60D6F6FC7003CD41E;
			remoteInfo = icui18n;
		};
		4D7BFE6E0E9D52DC009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD540260D6F727B003CD41E;
			remoteInfo = icutu;
		};
		4D7BFE700E9D52DC009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD53AAB0D6F6671003CD41E;
			remoteInfo = icuuc;
		};
		4D7BFE720E9D52DC009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD5410E0D6F8457003CD41E;
			remoteInfo = icupkg;
		};
		4D7BFE770E9D52EB009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53AAA0D6F6671003CD41E;
			remoteInfo = icuuc;
		};
		4D7BFE7E0E9D5310009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53EA50D6F6FC7003CD41E;
			remoteInfo = icui18n;
		};
		4D7BFF360E9D5362009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF2F0E9D5362009A6919 /* libjpeg.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = D2AAC046055464E500DB518D;
			remoteInfo = libjpeg;
		};
		4D7BFF380E9D536D009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF2F0E9D5362009A6919 /* libjpeg.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = libjpeg;
		};
		4D7BFF400E9D538D009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF3C0E9D538D009A6919 /* gtest.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = D2AAC046055464E500DB518D;
			remoteInfo = gtest;
		};
		4D7BFF420E9D5394009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF3C0E9D538D009A6919 /* gtest.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = gtest;
		};
		4D7BFF4A0E9D53B4009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF460E9D53B4009A6919 /* libevent.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7B262E840E82E5D7001CE27F;
			remoteInfo = libevent;
		};
		4D7BFF530E9D53C1009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF4C0E9D53C1009A6919 /* bzip2.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = E4BA04540E25613300BE02C6;
			remoteInfo = bzip2;
		};
		4D7BFF550E9D53D2009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF4C0E9D53C1009A6919 /* bzip2.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = bzip2;
		};
		4D7BFF570E9D53D2009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF460E9D53B4009A6919 /* libevent.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7B262E830E82E5D7001CE27F;
			remoteInfo = libevent;
		};
		4D7BFF5C0E9D53F3009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 825403B00D92D2E50006B936;
			remoteInfo = base_gfx;
		};
		4D7BFF6D0E9D540F009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF5F0E9D540F009A6919 /* googleurl.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BA018360E5A28DB00044150;
			remoteInfo = googleurl;
		};
		4D7BFF6F0E9D540F009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF5F0E9D540F009A6919 /* googleurl.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BA018E20E5A2AFF00044150;
			remoteInfo = googleurl_unittests;
		};
		4D7BFF710E9D5416009A6919 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF5F0E9D540F009A6919 /* googleurl.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BA018350E5A28DB00044150;
			remoteInfo = googleurl;
		};
		4DDC64490EAE38F500FB5EBE /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFB0B0E9D4BBF009A6919 /* libxml.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7B12F2AB0D8EE24200CB6E8F;
			remoteInfo = xml;
		};
		4DDC64540EAE392400FB5EBE /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4DDC64500EAE392400FB5EBE /* zlib.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = D2AAC046055464E500DB518D;
			remoteInfo = zlib;
		};
		4DDC64560EAE393800FB5EBE /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4DDC64500EAE392400FB5EBE /* zlib.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = zlib;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		4D640CBD0EAE868600EBCFC0 /* about_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = about_handler.cc; sourceTree = "<group>"; };
		4D640CBE0EAE868600EBCFC0 /* about_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = about_handler.h; sourceTree = "<group>"; };
		4D640CBF0EAE868600EBCFC0 /* chrome_plugin_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_plugin_host.cc; sourceTree = "<group>"; };
		4D640CC00EAE868600EBCFC0 /* chrome_plugin_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_plugin_host.h; sourceTree = "<group>"; };
		4D640CC10EAE868600EBCFC0 /* debug_message_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = debug_message_handler.cc; sourceTree = "<group>"; };
		4D640CC20EAE868600EBCFC0 /* debug_message_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debug_message_handler.h; sourceTree = "<group>"; };
		4D640CC30EAE868600EBCFC0 /* dom_ui_bindings.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dom_ui_bindings.cc; sourceTree = "<group>"; };
		4D640CC40EAE868600EBCFC0 /* dom_ui_bindings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dom_ui_bindings.h; sourceTree = "<group>"; };
		4D640CC50EAE868600EBCFC0 /* external_host_bindings.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = external_host_bindings.cc; sourceTree = "<group>"; };
		4D640CC60EAE868600EBCFC0 /* external_host_bindings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = external_host_bindings.h; sourceTree = "<group>"; };
		4D640CC70EAE868600EBCFC0 /* external_js_object.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = external_js_object.cc; sourceTree = "<group>"; };
		4D640CC80EAE868600EBCFC0 /* external_js_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = external_js_object.h; sourceTree = "<group>"; };
		4D640CC90EAE868600EBCFC0 /* greasemonkey_slave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = greasemonkey_slave.cc; sourceTree = "<group>"; };
		4D640CCA0EAE868600EBCFC0 /* greasemonkey_slave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = greasemonkey_slave.h; sourceTree = "<group>"; };
		4D640CCB0EAE868600EBCFC0 /* localized_error.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = localized_error.cc; sourceTree = "<group>"; };
		4D640CCC0EAE868600EBCFC0 /* localized_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = localized_error.h; sourceTree = "<group>"; };
		4D640CCD0EAE868600EBCFC0 /* plugin_channel_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin_channel_host.cc; sourceTree = "<group>"; };
		4D640CCE0EAE868600EBCFC0 /* plugin_channel_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_channel_host.h; sourceTree = "<group>"; };
		4D640CCF0EAE868600EBCFC0 /* render_process.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_process.cc; sourceTree = "<group>"; };
		4D640CD00EAE868600EBCFC0 /* render_process.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_process.h; sourceTree = "<group>"; };
		4D640CD10EAE868600EBCFC0 /* render_thread.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_thread.cc; sourceTree = "<group>"; };
		4D640CD20EAE868600EBCFC0 /* render_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_thread.h; sourceTree = "<group>"; };
		4D640CD30EAE868600EBCFC0 /* render_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_view.cc; sourceTree = "<group>"; };
		4D640CD40EAE868600EBCFC0 /* render_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_view.h; sourceTree = "<group>"; };
		4D640CD50EAE868600EBCFC0 /* render_widget.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_widget.cc; sourceTree = "<group>"; };
		4D640CD60EAE868600EBCFC0 /* render_widget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_widget.h; sourceTree = "<group>"; };
		4D640CD70EAE868600EBCFC0 /* render_widget_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_widget_unittest.cc; sourceTree = "<group>"; };
		4D640CD80EAE868600EBCFC0 /* renderer_glue.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = renderer_glue.cc; sourceTree = "<group>"; };
		4D640CD90EAE868600EBCFC0 /* renderer_main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = renderer_main.cc; sourceTree = "<group>"; };
		4D640CDA0EAE868600EBCFC0 /* renderer_resources.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = renderer_resources.h; sourceTree = "<group>"; };
		4D640CDB0EAE868600EBCFC0 /* spellcheck_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spellcheck_unittest.cc; sourceTree = "<group>"; };
		4D640CDC0EAE868600EBCFC0 /* visitedlink_slave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visitedlink_slave.cc; sourceTree = "<group>"; };
		4D640CDD0EAE868600EBCFC0 /* visitedlink_slave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = visitedlink_slave.h; sourceTree = "<group>"; };
		4D640CDE0EAE868600EBCFC0 /* webplugin_delegate_proxy.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = webplugin_delegate_proxy.cc; sourceTree = "<group>"; };
		4D640CDF0EAE868600EBCFC0 /* webplugin_delegate_proxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = webplugin_delegate_proxy.h; sourceTree = "<group>"; };
		4D640CE10EAE86A500EBCFC0 /* render_dns_master.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_dns_master.cc; sourceTree = "<group>"; };
		4D640CE20EAE86A500EBCFC0 /* render_dns_master.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_dns_master.h; sourceTree = "<group>"; };
		4D640CE30EAE86A500EBCFC0 /* render_dns_master_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_dns_master_unittest.cc; sourceTree = "<group>"; };
		4D640CE40EAE86A500EBCFC0 /* render_dns_queue.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_dns_queue.cc; sourceTree = "<group>"; };
		4D640CE50EAE86A500EBCFC0 /* render_dns_queue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_dns_queue.h; sourceTree = "<group>"; };
		4D640CE60EAE86A500EBCFC0 /* render_dns_queue_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_dns_queue_unittest.cc; sourceTree = "<group>"; };
		4D640CEB0EAE86BD00EBCFC0 /* librenderer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = librenderer.a; sourceTree = BUILT_PRODUCTS_DIR; };
		4D640D120EAE87BD00EBCFC0 /* browser_trial.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_trial.cc; sourceTree = "<group>"; };
		4D640D130EAE87BD00EBCFC0 /* browser_trial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_trial.h; sourceTree = "<group>"; };
		4D640D140EAE87BD00EBCFC0 /* greasemonkey_master.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = greasemonkey_master.cc; sourceTree = "<group>"; };
		4D640D150EAE87BD00EBCFC0 /* greasemonkey_master.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = greasemonkey_master.h; sourceTree = "<group>"; };
		4D640D160EAE87BD00EBCFC0 /* interstitial_page.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = interstitial_page.cc; sourceTree = "<group>"; };
		4D640D170EAE87BD00EBCFC0 /* interstitial_page.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = interstitial_page.h; sourceTree = "<group>"; };
		4D640D180EAE87BD00EBCFC0 /* render_widget_host_view_win.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_widget_host_view_win.cc; sourceTree = "<group>"; };
		4D640D190EAE87BD00EBCFC0 /* render_widget_host_view_win.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_widget_host_view_win.h; sourceTree = "<group>"; };
		4D640D1A0EAE87BD00EBCFC0 /* template_url_prepopulate_data_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_prepopulate_data_unittest.cc; sourceTree = "<group>"; };
		4D640D1B0EAE87BD00EBCFC0 /* web_contents_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = web_contents_view.cc; sourceTree = "<group>"; };
		4D640D1C0EAE87BD00EBCFC0 /* web_contents_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = web_contents_view.h; sourceTree = "<group>"; };
		4D640D1D0EAE87BD00EBCFC0 /* web_contents_view_win.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = web_contents_view_win.cc; sourceTree = "<group>"; };
		4D640D1E0EAE87BD00EBCFC0 /* web_contents_view_win.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = web_contents_view_win.h; sourceTree = "<group>"; };
		4D640D1F0EAE881300EBCFC0 /* download_request_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_request_manager.cc; sourceTree = "<group>"; };
		4D640D200EAE881300EBCFC0 /* download_request_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download_request_manager.h; sourceTree = "<group>"; };
		4D640D210EAE881300EBCFC0 /* download_request_manager_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_request_manager_unittest.cc; sourceTree = "<group>"; };
		4D640D220EAE885500EBCFC0 /* page_zoom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = page_zoom.h; sourceTree = "<group>"; };
		4D7B002E0E9D5459009A6919 /* skia.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = skia.xcodeproj; path = skia/skia.xcodeproj; sourceTree = "<group>"; };
		4D7B00340E9D5464009A6919 /* net.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = net.xcodeproj; path = net/net.xcodeproj; sourceTree = "<group>"; };
		4D7B00580E9D54AA009A6919 /* modp_b64.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = modp_b64.xcodeproj; path = third_party/modp_b64/modp_b64.xcodeproj; sourceTree = "<group>"; };
		4D7B01390E9D56BC009A6919 /* sqlite.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = sqlite.xcodeproj; path = third_party/sqlite/sqlite.xcodeproj; sourceTree = "<group>"; };
		4D7BF2FB0E9D46E6009A6919 /* common.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = common.xcconfig; sourceTree = "<group>"; };
		4D7BF2FC0E9D46E6009A6919 /* debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = debug.xcconfig; sourceTree = "<group>"; };
		4D7BF2FD0E9D46E6009A6919 /* executable.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = executable.xcconfig; sourceTree = "<group>"; };
		4D7BF2FE0E9D46E6009A6919 /* release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = release.xcconfig; sourceTree = "<group>"; };
		4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = staticlib.xcconfig; sourceTree = "<group>"; };
		4D7BF3060E9D477E009A6919 /* libbrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libbrowser.a; sourceTree = BUILT_PRODUCTS_DIR; };
		4D7BF8220E9D4839009A6919 /* about_internets_status_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = about_internets_status_view.cc; sourceTree = "<group>"; };
		4D7BF8230E9D4839009A6919 /* about_internets_status_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = about_internets_status_view.h; sourceTree = "<group>"; };
		4D7BF8240E9D4839009A6919 /* alternate_nav_url_fetcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = alternate_nav_url_fetcher.cc; sourceTree = "<group>"; };
		4D7BF8250E9D4839009A6919 /* alternate_nav_url_fetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alternate_nav_url_fetcher.h; sourceTree = "<group>"; };
		4D7BF8260E9D4839009A6919 /* app_modal_dialog_queue.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = app_modal_dialog_queue.cc; sourceTree = "<group>"; };
		4D7BF8270E9D4839009A6919 /* app_modal_dialog_queue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = app_modal_dialog_queue.h; sourceTree = "<group>"; };
		4D7BF8280E9D4839009A6919 /* back_forward_menu_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = back_forward_menu_model.cc; sourceTree = "<group>"; };
		4D7BF8290E9D4839009A6919 /* back_forward_menu_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = back_forward_menu_model.h; sourceTree = "<group>"; };
		4D7BF82A0E9D4839009A6919 /* back_forward_menu_model_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = back_forward_menu_model_unittest.cc; sourceTree = "<group>"; };
		4D7BF82B0E9D4839009A6919 /* base_history_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = base_history_model.cc; sourceTree = "<group>"; };
		4D7BF82C0E9D4839009A6919 /* base_history_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = base_history_model.h; sourceTree = "<group>"; };
		4D7BF8300E9D4839009A6919 /* browser.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser.cc; sourceTree = "<group>"; };
		4D7BF8310E9D4839009A6919 /* browser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser.h; sourceTree = "<group>"; };
		4D7BF8320E9D4839009A6919 /* browser_about_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_about_handler.cc; sourceTree = "<group>"; };
		4D7BF8330E9D4839009A6919 /* browser_about_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_about_handler.h; sourceTree = "<group>"; };
		4D7BF8340E9D4839009A6919 /* browser_accessibility.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_accessibility.cc; sourceTree = "<group>"; };
		4D7BF8350E9D4839009A6919 /* browser_accessibility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_accessibility.h; sourceTree = "<group>"; };
		4D7BF8360E9D4839009A6919 /* browser_accessibility_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_accessibility_manager.cc; sourceTree = "<group>"; };
		4D7BF8370E9D4839009A6919 /* browser_accessibility_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_accessibility_manager.h; sourceTree = "<group>"; };
		4D7BF8380E9D4839009A6919 /* browser_commands.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_commands.cc; sourceTree = "<group>"; };
		4D7BF8390E9D4839009A6919 /* browser_focus_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_focus_uitest.cc; sourceTree = "<group>"; };
		4D7BF83A0E9D4839009A6919 /* browser_init.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_init.cc; sourceTree = "<group>"; };
		4D7BF83B0E9D4839009A6919 /* browser_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_init.h; sourceTree = "<group>"; };
		4D7BF83C0E9D4839009A6919 /* browser_list.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_list.cc; sourceTree = "<group>"; };
		4D7BF83D0E9D4839009A6919 /* browser_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_list.h; sourceTree = "<group>"; };
		4D7BF83E0E9D4839009A6919 /* browser_main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_main.cc; sourceTree = "<group>"; };
		4D7BF83F0E9D4839009A6919 /* browser_prefs.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_prefs.cc; sourceTree = "<group>"; };
		4D7BF8400E9D4839009A6919 /* browser_prefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_prefs.h; sourceTree = "<group>"; };
		4D7BF8410E9D4839009A6919 /* browser_process.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_process.cc; sourceTree = "<group>"; };
		4D7BF8420E9D4839009A6919 /* browser_process.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_process.h; sourceTree = "<group>"; };
		4D7BF8430E9D4839009A6919 /* browser_process_impl.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_process_impl.cc; sourceTree = "<group>"; };
		4D7BF8440E9D4839009A6919 /* browser_process_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_process_impl.h; sourceTree = "<group>"; };
		4D7BF8450E9D4839009A6919 /* browser_resources.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_resources.h; sourceTree = "<group>"; };
		4D7BF8460E9D4839009A6919 /* browser_shutdown.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_shutdown.cc; sourceTree = "<group>"; };
		4D7BF8470E9D4839009A6919 /* browser_shutdown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_shutdown.h; sourceTree = "<group>"; };
		4D7BF8480E9D4839009A6919 /* browser_type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_type.h; sourceTree = "<group>"; };
		4D7BF8490E9D4839009A6919 /* browser_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_uitest.cc; sourceTree = "<group>"; };
		4D7BF84A0E9D4839009A6919 /* browser_url_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_url_handler.cc; sourceTree = "<group>"; };
		4D7BF84B0E9D4839009A6919 /* browser_url_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_url_handler.h; sourceTree = "<group>"; };
		4D7BF84C0E9D4839009A6919 /* browser_window.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browser_window.cc; sourceTree = "<group>"; };
		4D7BF84D0E9D4839009A6919 /* browser_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_window.h; sourceTree = "<group>"; };
		4D7BF84E0E9D4839009A6919 /* browsing_data_remover.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browsing_data_remover.cc; sourceTree = "<group>"; };
		4D7BF84F0E9D4839009A6919 /* browsing_data_remover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browsing_data_remover.h; sourceTree = "<group>"; };
		4D7BF8500E9D4839009A6919 /* browsing_instance.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browsing_instance.cc; sourceTree = "<group>"; };
		4D7BF8510E9D4839009A6919 /* browsing_instance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browsing_instance.h; sourceTree = "<group>"; };
		4D7BF8520E9D4839009A6919 /* cache_manager_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cache_manager_host.cc; sourceTree = "<group>"; };
		4D7BF8530E9D4839009A6919 /* cache_manager_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cache_manager_host.h; sourceTree = "<group>"; };
		4D7BF8540E9D4839009A6919 /* cache_manager_host_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cache_manager_host_unittest.cc; sourceTree = "<group>"; };
		4D7BF8550E9D4839009A6919 /* cancelable_request.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cancelable_request.cc; sourceTree = "<group>"; };
		4D7BF8560E9D4839009A6919 /* cancelable_request.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cancelable_request.h; sourceTree = "<group>"; };
		4D7BF8570E9D4839009A6919 /* cert_store.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cert_store.cc; sourceTree = "<group>"; };
		4D7BF8580E9D4839009A6919 /* cert_store.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cert_store.h; sourceTree = "<group>"; };
		4D7BF8590E9D4839009A6919 /* character_encoding.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = character_encoding.cc; sourceTree = "<group>"; };
		4D7BF85A0E9D4839009A6919 /* character_encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = character_encoding.h; sourceTree = "<group>"; };
		4D7BF85B0E9D4839009A6919 /* chrome_plugin_browsing_context.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_plugin_browsing_context.cc; sourceTree = "<group>"; };
		4D7BF85C0E9D4839009A6919 /* chrome_plugin_browsing_context.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_plugin_browsing_context.h; sourceTree = "<group>"; };
		4D7BF85D0E9D4839009A6919 /* chrome_plugin_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_plugin_host.cc; sourceTree = "<group>"; };
		4D7BF85E0E9D4839009A6919 /* chrome_plugin_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_plugin_host.h; sourceTree = "<group>"; };
		4D7BF85F0E9D4839009A6919 /* chrome_thread.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_thread.cc; sourceTree = "<group>"; };
		4D7BF8600E9D4839009A6919 /* chrome_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_thread.h; sourceTree = "<group>"; };
		4D7BF8610E9D4839009A6919 /* chrome_thread_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_thread_unittest.cc; sourceTree = "<group>"; };
		4D7BF8620E9D4839009A6919 /* constrained_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = constrained_window.h; sourceTree = "<group>"; };
		4D7BF8630E9D4839009A6919 /* controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = controller.cc; sourceTree = "<group>"; };
		4D7BF8640E9D4839009A6919 /* controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = controller.h; sourceTree = "<group>"; };
		4D7BF8650E9D4839009A6919 /* controller_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = controller_unittest.cc; sourceTree = "<group>"; };
		4D7BF8660E9D4839009A6919 /* crash_recovery_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = crash_recovery_uitest.cc; sourceTree = "<group>"; };
		4D7BF8670E9D4839009A6919 /* cross_site_request_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cross_site_request_manager.cc; sourceTree = "<group>"; };
		4D7BF8680E9D4839009A6919 /* cross_site_request_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cross_site_request_manager.h; sourceTree = "<group>"; };
		4D7BF8690E9D4839009A6919 /* dom_operation_notification_details.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dom_operation_notification_details.h; sourceTree = "<group>"; };
		4D7BF86A0E9D4839009A6919 /* drag_utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = drag_utils.cc; sourceTree = "<group>"; };
		4D7BF86B0E9D4839009A6919 /* drag_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = drag_utils.h; sourceTree = "<group>"; };
		4D7BF86C0E9D4839009A6919 /* encoding_menu_controller_delegate.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = encoding_menu_controller_delegate.cc; sourceTree = "<group>"; };
		4D7BF86D0E9D4839009A6919 /* encoding_menu_controller_delegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = encoding_menu_controller_delegate.h; sourceTree = "<group>"; };
		4D7BF86E0E9D4839009A6919 /* encryptor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = encryptor.cc; sourceTree = "<group>"; };
		4D7BF86F0E9D4839009A6919 /* encryptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = encryptor.h; sourceTree = "<group>"; };
		4D7BF8700E9D4839009A6919 /* encryptor_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = encryptor_unittest.cc; sourceTree = "<group>"; };
		4D7BF8710E9D4839009A6919 /* errorpage_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = errorpage_uitest.cc; sourceTree = "<group>"; };
		4D7BF8720E9D4839009A6919 /* external_protocol_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = external_protocol_handler.cc; sourceTree = "<group>"; };
		4D7BF8730E9D4839009A6919 /* external_protocol_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = external_protocol_handler.h; sourceTree = "<group>"; };
		4D7BF8740E9D4839009A6919 /* external_tab_container.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = external_tab_container.cc; sourceTree = "<group>"; };
		4D7BF8750E9D4839009A6919 /* external_tab_container.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = external_tab_container.h; sourceTree = "<group>"; };
		4D7BF8760E9D4839009A6919 /* fav_icon_helper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fav_icon_helper.cc; sourceTree = "<group>"; };
		4D7BF8770E9D4839009A6919 /* fav_icon_helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fav_icon_helper.h; sourceTree = "<group>"; };
		4D7BF87E0E9D4839009A6919 /* find_notification_details.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = find_notification_details.h; sourceTree = "<group>"; };
		4D7BF87F0E9D4839009A6919 /* first_run.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = first_run.cc; sourceTree = "<group>"; };
		4D7BF8800E9D4839009A6919 /* first_run.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = first_run.h; sourceTree = "<group>"; };
		4D7BF8810E9D4839009A6919 /* frame_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = frame_util.cc; sourceTree = "<group>"; };
		4D7BF8820E9D4839009A6919 /* frame_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = frame_util.h; sourceTree = "<group>"; };
		4D7BF8830E9D4839009A6919 /* gears_integration.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gears_integration.cc; sourceTree = "<group>"; };
		4D7BF8840E9D4839009A6919 /* gears_integration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gears_integration.h; sourceTree = "<group>"; };
		4D7BF8850E9D4839009A6919 /* google_update.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = google_update.cc; sourceTree = "<group>"; };
		4D7BF8860E9D4839009A6919 /* google_update.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = google_update.h; sourceTree = "<group>"; };
		4D7BF8870E9D4839009A6919 /* google_url_tracker.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = google_url_tracker.cc; sourceTree = "<group>"; };
		4D7BF8880E9D4839009A6919 /* google_url_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = google_url_tracker.h; sourceTree = "<group>"; };
		4D7BF8890E9D4839009A6919 /* google_url_tracker_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = google_url_tracker_unittest.cc; sourceTree = "<group>"; };
		4D7BF88A0E9D4839009A6919 /* google_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = google_util.cc; sourceTree = "<group>"; };
		4D7BF88B0E9D4839009A6919 /* google_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = google_util.h; sourceTree = "<group>"; };
		4D7BF88C0E9D4839009A6919 /* history_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_model.cc; sourceTree = "<group>"; };
		4D7BF88D0E9D4839009A6919 /* history_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = history_model.h; sourceTree = "<group>"; };
		4D7BF88E0E9D4839009A6919 /* history_tab_ui.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_tab_ui.cc; sourceTree = "<group>"; };
		4D7BF88F0E9D4839009A6919 /* history_tab_ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = history_tab_ui.h; sourceTree = "<group>"; };
		4D7BF8900E9D4839009A6919 /* history_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_view.cc; sourceTree = "<group>"; };
		4D7BF8910E9D4839009A6919 /* history_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = history_view.h; sourceTree = "<group>"; };
		4D7BF8920E9D4839009A6919 /* iaccessible_function_ids.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iaccessible_function_ids.h; sourceTree = "<group>"; };
		4D7BF8930E9D4839009A6919 /* icon_loader.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icon_loader.cc; sourceTree = "<group>"; };
		4D7BF8940E9D4839009A6919 /* icon_loader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icon_loader.h; sourceTree = "<group>"; };
		4D7BF8950E9D4839009A6919 /* icon_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icon_manager.cc; sourceTree = "<group>"; };
		4D7BF8960E9D4839009A6919 /* icon_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icon_manager.h; sourceTree = "<group>"; };
		4D7BF8970E9D4839009A6919 /* ie7_password.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ie7_password.cc; sourceTree = "<group>"; };
		4D7BF8980E9D4839009A6919 /* ie7_password.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ie7_password.h; sourceTree = "<group>"; };
		4D7BF8990E9D4839009A6919 /* iframe_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iframe_uitest.cc; sourceTree = "<group>"; };
		4D7BF89A0E9D4839009A6919 /* images_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = images_uitest.cc; sourceTree = "<group>"; };
		4D7BF89B0E9D4839009A6919 /* ime_input.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ime_input.cc; sourceTree = "<group>"; };
		4D7BF89C0E9D4839009A6919 /* ime_input.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ime_input.h; sourceTree = "<group>"; };
		4D7BF89E0E9D4839009A6919 /* interstitial_page_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = interstitial_page_uitest.cc; sourceTree = "<group>"; };
		4D7BF89F0E9D4839009A6919 /* ipc_status_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_status_view.cc; sourceTree = "<group>"; };
		4D7BF8A00E9D4839009A6919 /* ipc_status_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_status_view.h; sourceTree = "<group>"; };
		4D7BF8A10E9D4839009A6919 /* jankometer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jankometer.cc; sourceTree = "<group>"; };
		4D7BF8A20E9D4839009A6919 /* jankometer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jankometer.h; sourceTree = "<group>"; };
		4D7BF8A30E9D4839009A6919 /* js_before_unload_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = js_before_unload_handler.cc; sourceTree = "<group>"; };
		4D7BF8A40E9D4839009A6919 /* js_before_unload_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = js_before_unload_handler.h; sourceTree = "<group>"; };
		4D7BF8A50E9D4839009A6919 /* jsmessage_box_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsmessage_box_handler.cc; sourceTree = "<group>"; };
		4D7BF8A60E9D4839009A6919 /* jsmessage_box_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsmessage_box_handler.h; sourceTree = "<group>"; };
		4D7BF8A70E9D4839009A6919 /* load_from_memory_cache_details.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = load_from_memory_cache_details.h; sourceTree = "<group>"; };
		4D7BF8A80E9D4839009A6919 /* load_notification_details.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = load_notification_details.h; sourceTree = "<group>"; };
		4D7BF8A90E9D4839009A6919 /* locale_tests_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locale_tests_uitest.cc; sourceTree = "<group>"; };
		4D7BF8AA0E9D4839009A6919 /* login_prompt.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = login_prompt.cc; sourceTree = "<group>"; };
		4D7BF8AB0E9D4839009A6919 /* login_prompt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = login_prompt.h; sourceTree = "<group>"; };
		4D7BF8AC0E9D4839009A6919 /* login_prompt_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = login_prompt_uitest.cc; sourceTree = "<group>"; };
		4D7BF8AD0E9D4839009A6919 /* memory_details.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = memory_details.cc; sourceTree = "<group>"; };
		4D7BF8AE0E9D4839009A6919 /* memory_details.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memory_details.h; sourceTree = "<group>"; };
		4D7BF8AF0E9D4839009A6919 /* meta_table_helper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = meta_table_helper.cc; sourceTree = "<group>"; };
		4D7BF8B00E9D4839009A6919 /* meta_table_helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = meta_table_helper.h; sourceTree = "<group>"; };
		4D7BF8B10E9D4839009A6919 /* metrics_log.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metrics_log.cc; sourceTree = "<group>"; };
		4D7BF8B20E9D4839009A6919 /* metrics_log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = metrics_log.h; sourceTree = "<group>"; };
		4D7BF8B30E9D4839009A6919 /* metrics_log_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metrics_log_unittest.cc; sourceTree = "<group>"; };
		4D7BF8B40E9D4839009A6919 /* metrics_response.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metrics_response.cc; sourceTree = "<group>"; };
		4D7BF8B50E9D4839009A6919 /* metrics_response.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = metrics_response.h; sourceTree = "<group>"; };
		4D7BF8B60E9D4839009A6919 /* metrics_response_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metrics_response_unittest.cc; sourceTree = "<group>"; };
		4D7BF8B70E9D4839009A6919 /* metrics_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metrics_service.cc; sourceTree = "<group>"; };
		4D7BF8B80E9D4839009A6919 /* metrics_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = metrics_service.h; sourceTree = "<group>"; };
		4D7BF8B90E9D4839009A6919 /* metrics_service_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metrics_service_uitest.cc; sourceTree = "<group>"; };
		4D7BF8BA0E9D4839009A6919 /* modal_html_dialog_delegate.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = modal_html_dialog_delegate.cc; sourceTree = "<group>"; };
		4D7BF8BB0E9D4839009A6919 /* modal_html_dialog_delegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modal_html_dialog_delegate.h; sourceTree = "<group>"; };
		4D7BF8BC0E9D4839009A6919 /* native_ui_contents.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = native_ui_contents.cc; sourceTree = "<group>"; };
		4D7BF8BD0E9D4839009A6919 /* native_ui_contents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = native_ui_contents.h; sourceTree = "<group>"; };
		4D7BF8BE0E9D4839009A6919 /* navigation_controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = navigation_controller.cc; sourceTree = "<group>"; };
		4D7BF8BF0E9D4839009A6919 /* navigation_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = navigation_controller.h; sourceTree = "<group>"; };
		4D7BF8C00E9D4839009A6919 /* navigation_controller_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = navigation_controller_unittest.cc; sourceTree = "<group>"; };
		4D7BF8C10E9D4839009A6919 /* navigation_entry.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = navigation_entry.cc; sourceTree = "<group>"; };
		4D7BF8C20E9D4839009A6919 /* navigation_entry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = navigation_entry.h; sourceTree = "<group>"; };
		4D7BF8D00E9D4839009A6919 /* network_status_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network_status_view.cc; sourceTree = "<group>"; };
		4D7BF8D10E9D4839009A6919 /* network_status_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network_status_view.h; sourceTree = "<group>"; };
		4D7BF8D20E9D4839009A6919 /* options_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = options_window.h; sourceTree = "<group>"; };
		4D7BF8D30E9D4839009A6919 /* page_navigator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = page_navigator.h; sourceTree = "<group>"; };
		4D7BF8D40E9D4839009A6919 /* page_state.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_state.cc; sourceTree = "<group>"; };
		4D7BF8D50E9D4839009A6919 /* page_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = page_state.h; sourceTree = "<group>"; };
		4D7BF8D60E9D4839009A6919 /* password_form_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = password_form_manager.cc; sourceTree = "<group>"; };
		4D7BF8D70E9D4839009A6919 /* password_form_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = password_form_manager.h; sourceTree = "<group>"; };
		4D7BF8D80E9D4839009A6919 /* password_form_manager_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = password_form_manager_unittest.cc; sourceTree = "<group>"; };
		4D7BF8D90E9D4839009A6919 /* password_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = password_manager.cc; sourceTree = "<group>"; };
		4D7BF8DA0E9D4839009A6919 /* password_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = password_manager.h; sourceTree = "<group>"; };
		4D7BF8DB0E9D4839009A6919 /* plugin_installer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin_installer.cc; sourceTree = "<group>"; };
		4D7BF8DC0E9D4839009A6919 /* plugin_installer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_installer.h; sourceTree = "<group>"; };
		4D7BF8DD0E9D4839009A6919 /* plugin_process_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin_process_host.cc; sourceTree = "<group>"; };
		4D7BF8DE0E9D4839009A6919 /* plugin_process_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_process_host.h; sourceTree = "<group>"; };
		4D7BF8DF0E9D4839009A6919 /* plugin_process_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_process_info.h; sourceTree = "<group>"; };
		4D7BF8E00E9D4839009A6919 /* plugin_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin_service.cc; sourceTree = "<group>"; };
		4D7BF8E10E9D4839009A6919 /* plugin_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_service.h; sourceTree = "<group>"; };
		4D7BF8E20E9D4839009A6919 /* profile.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = profile.cc; sourceTree = "<group>"; };
		4D7BF8E30E9D4839009A6919 /* profile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = profile.h; sourceTree = "<group>"; };
		4D7BF8E40E9D4839009A6919 /* profile_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = profile_manager.cc; sourceTree = "<group>"; };
		4D7BF8E50E9D4839009A6919 /* profile_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = profile_manager.h; sourceTree = "<group>"; };
		4D7BF8E60E9D4839009A6919 /* profile_manager_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = profile_manager_unittest.cc; sourceTree = "<group>"; };
		4D7BF8E70E9D4839009A6919 /* provisional_load_details.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = provisional_load_details.cc; sourceTree = "<group>"; };
		4D7BF8E80E9D4839009A6919 /* provisional_load_details.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = provisional_load_details.h; sourceTree = "<group>"; };
		4D7BF8E90E9D4839009A6919 /* render_process_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_process_host.cc; sourceTree = "<group>"; };
		4D7BF8EA0E9D4839009A6919 /* render_process_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_process_host.h; sourceTree = "<group>"; };
		4D7BF8EB0E9D4839009A6919 /* render_view_context_menu.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_view_context_menu.cc; sourceTree = "<group>"; };
		4D7BF8EC0E9D4839009A6919 /* render_view_context_menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_view_context_menu.h; sourceTree = "<group>"; };
		4D7BF8ED0E9D4839009A6919 /* render_view_context_menu_controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_view_context_menu_controller.cc; sourceTree = "<group>"; };
		4D7BF8EE0E9D4839009A6919 /* render_view_context_menu_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_view_context_menu_controller.h; sourceTree = "<group>"; };
		4D7BF8EF0E9D4839009A6919 /* render_view_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_view_host.cc; sourceTree = "<group>"; };
		4D7BF8F00E9D4839009A6919 /* render_view_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_view_host.h; sourceTree = "<group>"; };
		4D7BF8F10E9D4839009A6919 /* render_view_host_delegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_view_host_delegate.h; sourceTree = "<group>"; };
		4D7BF8F20E9D4839009A6919 /* render_view_host_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_view_host_manager.cc; sourceTree = "<group>"; };
		4D7BF8F30E9D4839009A6919 /* render_view_host_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_view_host_manager.h; sourceTree = "<group>"; };
		4D7BF8F40E9D4839009A6919 /* render_widget_helper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_widget_helper.cc; sourceTree = "<group>"; };
		4D7BF8F50E9D4839009A6919 /* render_widget_helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_widget_helper.h; sourceTree = "<group>"; };
		4D7BF8F60E9D4839009A6919 /* render_widget_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_widget_host.cc; sourceTree = "<group>"; };
		4D7BF8F70E9D4839009A6919 /* render_widget_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_widget_host.h; sourceTree = "<group>"; };
		4D7BF8FA0E9D4839009A6919 /* render_widget_host_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_widget_host_view.h; sourceTree = "<group>"; };
		4D7BF8FB0E9D4839009A6919 /* renderer_security_policy.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = renderer_security_policy.cc; sourceTree = "<group>"; };
		4D7BF8FC0E9D4839009A6919 /* renderer_security_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = renderer_security_policy.h; sourceTree = "<group>"; };
		4D7BF8FD0E9D4839009A6919 /* renderer_security_policy_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = renderer_security_policy_unittest.cc; sourceTree = "<group>"; };
		4D7BF8FE0E9D4839009A6919 /* repost_form_warning_dialog.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = repost_form_warning_dialog.cc; sourceTree = "<group>"; };
		4D7BF8FF0E9D4839009A6919 /* repost_form_warning_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = repost_form_warning_dialog.h; sourceTree = "<group>"; };
		4D7BF9000E9D4839009A6919 /* resource_dispatcher_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resource_dispatcher_host.cc; sourceTree = "<group>"; };
		4D7BF9010E9D4839009A6919 /* resource_dispatcher_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource_dispatcher_host.h; sourceTree = "<group>"; };
		4D7BF9020E9D4839009A6919 /* resource_dispatcher_host_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resource_dispatcher_host_uitest.cc; sourceTree = "<group>"; };
		4D7BF9030E9D4839009A6919 /* resource_dispatcher_host_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resource_dispatcher_host_unittest.cc; sourceTree = "<group>"; };
		4D7BF9040E9D4839009A6919 /* resource_message_filter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resource_message_filter.cc; sourceTree = "<group>"; };
		4D7BF9050E9D4839009A6919 /* resource_message_filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource_message_filter.h; sourceTree = "<group>"; };
		4D7BF9060E9D4839009A6919 /* resource_request_details.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource_request_details.h; sourceTree = "<group>"; };
		4D7BF9070E9D4839009A6919 /* sandbox_policy.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sandbox_policy.cc; sourceTree = "<group>"; };
		4D7BF9080E9D4839009A6919 /* sandbox_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sandbox_policy.h; sourceTree = "<group>"; };
		4D7BF9090E9D4839009A6919 /* sanity_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sanity_uitest.cc; sourceTree = "<group>"; };
		4D7BF90A0E9D4839009A6919 /* security_style.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = security_style.h; sourceTree = "<group>"; };
		4D7BF90B0E9D4839009A6919 /* session_backend.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_backend.cc; sourceTree = "<group>"; };
		4D7BF90C0E9D4839009A6919 /* session_backend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_backend.h; sourceTree = "<group>"; };
		4D7BF90D0E9D4839009A6919 /* session_backend_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_backend_unittest.cc; sourceTree = "<group>"; };
		4D7BF90E0E9D4839009A6919 /* session_crashed_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_crashed_view.cc; sourceTree = "<group>"; };
		4D7BF90F0E9D4839009A6919 /* session_crashed_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_crashed_view.h; sourceTree = "<group>"; };
		4D7BF9100E9D4839009A6919 /* session_history_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_history_uitest.cc; sourceTree = "<group>"; };
		4D7BF9110E9D4839009A6919 /* session_id.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_id.h; sourceTree = "<group>"; };
		4D7BF9120E9D4839009A6919 /* session_restore.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_restore.cc; sourceTree = "<group>"; };
		4D7BF9130E9D4839009A6919 /* session_restore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_restore.h; sourceTree = "<group>"; };
		4D7BF9140E9D4839009A6919 /* session_restore_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_restore_uitest.cc; sourceTree = "<group>"; };
		4D7BF9150E9D4839009A6919 /* session_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_service.cc; sourceTree = "<group>"; };
		4D7BF9160E9D4839009A6919 /* session_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_service.h; sourceTree = "<group>"; };
		4D7BF9170E9D4839009A6919 /* session_service_test_helper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_service_test_helper.cc; sourceTree = "<group>"; };
		4D7BF9180E9D4839009A6919 /* session_service_test_helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_service_test_helper.h; sourceTree = "<group>"; };
		4D7BF9190E9D4839009A6919 /* session_service_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_service_unittest.cc; sourceTree = "<group>"; };
		4D7BF91A0E9D4839009A6919 /* session_startup_pref.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_startup_pref.cc; sourceTree = "<group>"; };
		4D7BF91B0E9D4839009A6919 /* session_startup_pref.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_startup_pref.h; sourceTree = "<group>"; };
		4D7BF91C0E9D4839009A6919 /* shell_dialogs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shell_dialogs.h; sourceTree = "<group>"; };
		4D7BF91D0E9D4839009A6919 /* shell_integration.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shell_integration.cc; sourceTree = "<group>"; };
		4D7BF91E0E9D4839009A6919 /* shell_integration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shell_integration.h; sourceTree = "<group>"; };
		4D7BF91F0E9D4839009A6919 /* site_instance.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = site_instance.cc; sourceTree = "<group>"; };
		4D7BF9200E9D4839009A6919 /* site_instance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = site_instance.h; sourceTree = "<group>"; };
		4D7BF9210E9D4839009A6919 /* site_instance_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = site_instance_unittest.cc; sourceTree = "<group>"; };
		4D7BF9220E9D4839009A6919 /* spellcheck_worditerator.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spellcheck_worditerator.cc; sourceTree = "<group>"; };
		4D7BF9230E9D4839009A6919 /* spellcheck_worditerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spellcheck_worditerator.h; sourceTree = "<group>"; };
		4D7BF9240E9D4839009A6919 /* spellchecker.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spellchecker.cc; sourceTree = "<group>"; };
		4D7BF9250E9D4839009A6919 /* spellchecker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spellchecker.h; sourceTree = "<group>"; };
		4D7BF9260E9D4839009A6919 /* ssl_blocking_page.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ssl_blocking_page.cc; sourceTree = "<group>"; };
		4D7BF9270E9D4839009A6919 /* ssl_blocking_page.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl_blocking_page.h; sourceTree = "<group>"; };
		4D7BF9280E9D4839009A6919 /* ssl_error_info.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ssl_error_info.cc; sourceTree = "<group>"; };
		4D7BF9290E9D4839009A6919 /* ssl_error_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl_error_info.h; sourceTree = "<group>"; };
		4D7BF92A0E9D4839009A6919 /* ssl_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ssl_manager.cc; sourceTree = "<group>"; };
		4D7BF92B0E9D4839009A6919 /* ssl_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl_manager.h; sourceTree = "<group>"; };
		4D7BF92C0E9D4839009A6919 /* ssl_policy.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ssl_policy.cc; sourceTree = "<group>"; };
		4D7BF92D0E9D4839009A6919 /* ssl_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl_policy.h; sourceTree = "<group>"; };
		4D7BF92E0E9D4839009A6919 /* ssl_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ssl_uitest.cc; sourceTree = "<group>"; };
		4D7BF92F0E9D4839009A6919 /* status_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = status_view.cc; sourceTree = "<group>"; };
		4D7BF9300E9D4839009A6919 /* status_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = status_view.h; sourceTree = "<group>"; };
		4D7BF9310E9D4839009A6919 /* suspend_controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = suspend_controller.cc; sourceTree = "<group>"; };
		4D7BF9320E9D4839009A6919 /* suspend_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = suspend_controller.h; sourceTree = "<group>"; };
		4D7BF9330E9D4839009A6919 /* tab_contents.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab_contents.cc; sourceTree = "<group>"; };
		4D7BF9340E9D4839009A6919 /* tab_contents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab_contents.h; sourceTree = "<group>"; };
		4D7BF9350E9D4839009A6919 /* tab_contents_delegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab_contents_delegate.h; sourceTree = "<group>"; };
		4D7BF9360E9D4839009A6919 /* tab_contents_factory.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab_contents_factory.cc; sourceTree = "<group>"; };
		4D7BF9370E9D4839009A6919 /* tab_contents_factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab_contents_factory.h; sourceTree = "<group>"; };
		4D7BF9380E9D4839009A6919 /* tab_contents_type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab_contents_type.h; sourceTree = "<group>"; };
		4D7BF9390E9D4839009A6919 /* tab_restore_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab_restore_service.cc; sourceTree = "<group>"; };
		4D7BF93A0E9D4839009A6919 /* tab_restore_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab_restore_service.h; sourceTree = "<group>"; };
		4D7BF93B0E9D4839009A6919 /* tab_restore_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab_restore_uitest.cc; sourceTree = "<group>"; };
		4D7BF93C0E9D4839009A6919 /* tab_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab_util.cc; sourceTree = "<group>"; };
		4D7BF93D0E9D4839009A6919 /* tab_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab_util.h; sourceTree = "<group>"; };
		4D7BF93E0E9D4839009A6919 /* task_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = task_manager.cc; sourceTree = "<group>"; };
		4D7BF93F0E9D4839009A6919 /* task_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_manager.h; sourceTree = "<group>"; };
		4D7BF9400E9D4839009A6919 /* task_manager_resource_providers.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = task_manager_resource_providers.cc; sourceTree = "<group>"; };
		4D7BF9410E9D4839009A6919 /* task_manager_resource_providers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_manager_resource_providers.h; sourceTree = "<group>"; };
		4D7BF9420E9D4839009A6919 /* template_url.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url.cc; sourceTree = "<group>"; };
		4D7BF9430E9D4839009A6919 /* template_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url.h; sourceTree = "<group>"; };
		4D7BF9440E9D4839009A6919 /* template_url_fetcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_fetcher.cc; sourceTree = "<group>"; };
		4D7BF9450E9D4839009A6919 /* template_url_fetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url_fetcher.h; sourceTree = "<group>"; };
		4D7BF9460E9D4839009A6919 /* template_url_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_model.cc; sourceTree = "<group>"; };
		4D7BF9470E9D4839009A6919 /* template_url_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url_model.h; sourceTree = "<group>"; };
		4D7BF9480E9D4839009A6919 /* template_url_model_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_model_unittest.cc; sourceTree = "<group>"; };
		4D7BF9490E9D4839009A6919 /* template_url_parser.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_parser.cc; sourceTree = "<group>"; };
		4D7BF94A0E9D4839009A6919 /* template_url_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url_parser.h; sourceTree = "<group>"; };
		4D7BF94B0E9D4839009A6919 /* template_url_parser_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_parser_unittest.cc; sourceTree = "<group>"; };
		4D7BF94C0E9D4839009A6919 /* template_url_prepopulate_data.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_prepopulate_data.cc; sourceTree = "<group>"; };
		4D7BF94D0E9D4839009A6919 /* template_url_prepopulate_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url_prepopulate_data.h; sourceTree = "<group>"; };
		4D7BF94E0E9D4839009A6919 /* template_url_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_unittest.cc; sourceTree = "<group>"; };
		4D7BF94F0E9D4839009A6919 /* toolbar_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = toolbar_model.cc; sourceTree = "<group>"; };
		4D7BF9500E9D4839009A6919 /* toolbar_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = toolbar_model.h; sourceTree = "<group>"; };
		4D7BF9510E9D4839009A6919 /* url_fetcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fetcher.cc; sourceTree = "<group>"; };
		4D7BF9520E9D4839009A6919 /* url_fetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_fetcher.h; sourceTree = "<group>"; };
		4D7BF9530E9D4839009A6919 /* url_fetcher_protect.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fetcher_protect.cc; sourceTree = "<group>"; };
		4D7BF9540E9D4839009A6919 /* url_fetcher_protect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_fetcher_protect.h; sourceTree = "<group>"; };
		4D7BF9550E9D4839009A6919 /* url_fetcher_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fetcher_unittest.cc; sourceTree = "<group>"; };
		4D7BF9560E9D4839009A6919 /* url_fixer_upper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fixer_upper.cc; sourceTree = "<group>"; };
		4D7BF9570E9D4839009A6919 /* url_fixer_upper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_fixer_upper.h; sourceTree = "<group>"; };
		4D7BF9580E9D4839009A6919 /* url_fixer_upper_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fixer_upper_unittest.cc; sourceTree = "<group>"; };
		4D7BF9590E9D4839009A6919 /* user_metrics.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = user_metrics.cc; sourceTree = "<group>"; };
		4D7BF95A0E9D4839009A6919 /* user_metrics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_metrics.h; sourceTree = "<group>"; };
		4D7BF95B0E9D4839009A6919 /* view_ids.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = view_ids.h; sourceTree = "<group>"; };
		4D7BF95C0E9D4839009A6919 /* view_source_contents.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = view_source_contents.cc; sourceTree = "<group>"; };
		4D7BF95D0E9D4839009A6919 /* view_source_contents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = view_source_contents.h; sourceTree = "<group>"; };
		4D7BF95E0E9D4839009A6919 /* view_source_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = view_source_uitest.cc; sourceTree = "<group>"; };
		4D7BF95F0E9D4839009A6919 /* visitedlink_master.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visitedlink_master.cc; sourceTree = "<group>"; };
		4D7BF9600E9D4839009A6919 /* visitedlink_master.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = visitedlink_master.h; sourceTree = "<group>"; };
		4D7BF9610E9D4839009A6919 /* visitedlink_perftest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visitedlink_perftest.cc; sourceTree = "<group>"; };
		4D7BF9620E9D4839009A6919 /* visitedlink_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visitedlink_unittest.cc; sourceTree = "<group>"; };
		4D7BF9630E9D4839009A6919 /* web_app.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = web_app.cc; sourceTree = "<group>"; };
		4D7BF9640E9D4839009A6919 /* web_app.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = web_app.h; sourceTree = "<group>"; };
		4D7BF9650E9D4839009A6919 /* web_app_icon_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = web_app_icon_manager.cc; sourceTree = "<group>"; };
		4D7BF9660E9D4839009A6919 /* web_app_icon_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = web_app_icon_manager.h; sourceTree = "<group>"; };
		4D7BF9670E9D4839009A6919 /* web_app_launcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = web_app_launcher.cc; sourceTree = "<group>"; };
		4D7BF9680E9D4839009A6919 /* web_app_launcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = web_app_launcher.h; sourceTree = "<group>"; };
		4D7BF9690E9D4839009A6919 /* web_contents.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = web_contents.cc; sourceTree = "<group>"; };
		4D7BF96A0E9D4839009A6919 /* web_contents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = web_contents.h; sourceTree = "<group>"; };
		4D7BF96B0E9D4839009A6919 /* web_contents_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = web_contents_unittest.cc; sourceTree = "<group>"; };
		4D7BF96C0E9D4839009A6919 /* web_drag_source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = web_drag_source.cc; sourceTree = "<group>"; };
		4D7BF96D0E9D4839009A6919 /* web_drag_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = web_drag_source.h; sourceTree = "<group>"; };
		4D7BF96E0E9D4839009A6919 /* web_drop_target.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = web_drop_target.cc; sourceTree = "<group>"; };
		4D7BF96F0E9D4839009A6919 /* web_drop_target.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = web_drop_target.h; sourceTree = "<group>"; };
		4D7BF9700E9D4839009A6919 /* window_sizer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = window_sizer.cc; sourceTree = "<group>"; };
		4D7BF9710E9D4839009A6919 /* window_sizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = window_sizer.h; sourceTree = "<group>"; };
		4D7BF9720E9D4839009A6919 /* window_sizer_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = window_sizer_unittest.cc; sourceTree = "<group>"; };
		4D7BF9C90E9D48CE009A6919 /* download_exe.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_exe.cc; sourceTree = "<group>"; };
		4D7BF9CA0E9D48CE009A6919 /* download_file.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_file.cc; sourceTree = "<group>"; };
		4D7BF9CB0E9D48CE009A6919 /* download_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download_file.h; sourceTree = "<group>"; };
		4D7BF9CC0E9D48CE009A6919 /* download_item_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_item_model.cc; sourceTree = "<group>"; };
		4D7BF9CD0E9D48CE009A6919 /* download_item_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download_item_model.h; sourceTree = "<group>"; };
		4D7BF9CE0E9D48CE009A6919 /* download_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_manager.cc; sourceTree = "<group>"; };
		4D7BF9CF0E9D48CE009A6919 /* download_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download_manager.h; sourceTree = "<group>"; };
		4D7BF9D00E9D48CE009A6919 /* download_manager_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_manager_unittest.cc; sourceTree = "<group>"; };
		4D7BF9D10E9D48CE009A6919 /* download_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_uitest.cc; sourceTree = "<group>"; };
		4D7BF9D20E9D48CE009A6919 /* download_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_util.cc; sourceTree = "<group>"; };
		4D7BF9D30E9D48CE009A6919 /* download_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download_util.h; sourceTree = "<group>"; };
		4D7BF9D40E9D48CE009A6919 /* save_file.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = save_file.cc; sourceTree = "<group>"; };
		4D7BF9D50E9D48CE009A6919 /* save_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = save_file.h; sourceTree = "<group>"; };
		4D7BF9D60E9D48CE009A6919 /* save_file_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = save_file_manager.cc; sourceTree = "<group>"; };
		4D7BF9D70E9D48CE009A6919 /* save_file_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = save_file_manager.h; sourceTree = "<group>"; };
		4D7BF9D80E9D48CE009A6919 /* save_item.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = save_item.cc; sourceTree = "<group>"; };
		4D7BF9D90E9D48CE009A6919 /* save_item.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = save_item.h; sourceTree = "<group>"; };
		4D7BF9DA0E9D48CE009A6919 /* save_package.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = save_package.cc; sourceTree = "<group>"; };
		4D7BF9DB0E9D48CE009A6919 /* save_package.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = save_package.h; sourceTree = "<group>"; };
		4D7BF9DC0E9D48CE009A6919 /* save_package_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = save_package_unittest.cc; sourceTree = "<group>"; };
		4D7BF9DD0E9D48CE009A6919 /* save_page_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = save_page_model.cc; sourceTree = "<group>"; };
		4D7BF9DE0E9D48CE009A6919 /* save_page_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = save_page_model.h; sourceTree = "<group>"; };
		4D7BF9DF0E9D48CE009A6919 /* save_page_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = save_page_uitest.cc; sourceTree = "<group>"; };
		4D7BF9E00E9D48CE009A6919 /* save_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = save_types.h; sourceTree = "<group>"; };
		4D7BF9E40E9D48F7009A6919 /* archived_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = archived_database.cc; sourceTree = "<group>"; };
		4D7BF9E50E9D48F7009A6919 /* archived_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = archived_database.h; sourceTree = "<group>"; };
		4D7BF9E60E9D48F7009A6919 /* download_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_database.cc; sourceTree = "<group>"; };
		4D7BF9E70E9D48F7009A6919 /* download_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download_database.h; sourceTree = "<group>"; };
		4D7BF9E80E9D48F7009A6919 /* download_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download_types.h; sourceTree = "<group>"; };
		4D7BF9E90E9D48F7009A6919 /* expire_history_backend.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = expire_history_backend.cc; sourceTree = "<group>"; };
		4D7BF9EA0E9D48F7009A6919 /* expire_history_backend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = expire_history_backend.h; sourceTree = "<group>"; };
		4D7BF9EB0E9D48F7009A6919 /* expire_history_backend_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = expire_history_backend_unittest.cc; sourceTree = "<group>"; };
		4D7BF9EC0E9D48F7009A6919 /* history.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history.cc; sourceTree = "<group>"; };
		4D7BF9ED0E9D48F7009A6919 /* history.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = history.h; sourceTree = "<group>"; };
		4D7BF9EE0E9D48F7009A6919 /* history_backend.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_backend.cc; sourceTree = "<group>"; };
		4D7BF9EF0E9D48F7009A6919 /* history_backend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = history_backend.h; sourceTree = "<group>"; };
		4D7BF9F00E9D48F7009A6919 /* history_backend_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_backend_unittest.cc; sourceTree = "<group>"; };
		4D7BF9F10E9D48F7009A6919 /* history_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_database.cc; sourceTree = "<group>"; };
		4D7BF9F20E9D48F7009A6919 /* history_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = history_database.h; sourceTree = "<group>"; };
		4D7BF9F30E9D48F7009A6919 /* history_marshaling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = history_marshaling.h; sourceTree = "<group>"; };
		4D7BF9F40E9D48F7009A6919 /* history_notifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = history_notifications.h; sourceTree = "<group>"; };
		4D7BF9F50E9D48F7009A6919 /* history_querying_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_querying_unittest.cc; sourceTree = "<group>"; };
		4D7BF9F60E9D48F7009A6919 /* history_types.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_types.cc; sourceTree = "<group>"; };
		4D7BF9F70E9D48F7009A6919 /* history_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = history_types.h; sourceTree = "<group>"; };
		4D7BF9F80E9D48F7009A6919 /* history_types_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_types_unittest.cc; sourceTree = "<group>"; };
		4D7BF9F90E9D48F7009A6919 /* history_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = history_unittest.cc; sourceTree = "<group>"; };
		4D7BF9FA0E9D48F7009A6919 /* in_memory_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = in_memory_database.cc; sourceTree = "<group>"; };
		4D7BF9FB0E9D48F7009A6919 /* in_memory_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_memory_database.h; sourceTree = "<group>"; };
		4D7BF9FC0E9D48F7009A6919 /* in_memory_history_backend.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = in_memory_history_backend.cc; sourceTree = "<group>"; };
		4D7BF9FD0E9D48F7009A6919 /* in_memory_history_backend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_memory_history_backend.h; sourceTree = "<group>"; };
		4D7BF9FE0E9D48F7009A6919 /* page_usage_data.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_usage_data.cc; sourceTree = "<group>"; };
		4D7BF9FF0E9D48F7009A6919 /* page_usage_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = page_usage_data.h; sourceTree = "<group>"; };
		4D7BFA000E9D48F7009A6919 /* query_parser.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = query_parser.cc; sourceTree = "<group>"; };
		4D7BFA010E9D48F7009A6919 /* query_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = query_parser.h; sourceTree = "<group>"; };
		4D7BFA020E9D48F7009A6919 /* query_parser_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = query_parser_unittest.cc; sourceTree = "<group>"; };
		4D7BFA030E9D48F7009A6919 /* redirect_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = redirect_uitest.cc; sourceTree = "<group>"; };
		4D7BFA040E9D48F7009A6919 /* snippet.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = snippet.cc; sourceTree = "<group>"; };
		4D7BFA050E9D48F7009A6919 /* snippet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = snippet.h; sourceTree = "<group>"; };
		4D7BFA060E9D48F7009A6919 /* snippet_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = snippet_unittest.cc; sourceTree = "<group>"; };
		4D7BFA070E9D48F7009A6919 /* starred_url_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = starred_url_database.cc; sourceTree = "<group>"; };
		4D7BFA080E9D48F7009A6919 /* starred_url_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = starred_url_database.h; sourceTree = "<group>"; };
		4D7BFA090E9D48F7009A6919 /* starred_url_database_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = starred_url_database_unittest.cc; sourceTree = "<group>"; };
		4D7BFA0A0E9D48F7009A6919 /* text_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = text_database.cc; sourceTree = "<group>"; };
		4D7BFA0B0E9D48F7009A6919 /* text_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = text_database.h; sourceTree = "<group>"; };
		4D7BFA0C0E9D48F7009A6919 /* text_database_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = text_database_manager.cc; sourceTree = "<group>"; };
		4D7BFA0D0E9D48F7009A6919 /* text_database_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = text_database_manager.h; sourceTree = "<group>"; };
		4D7BFA0E0E9D48F7009A6919 /* text_database_manager_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = text_database_manager_unittest.cc; sourceTree = "<group>"; };
		4D7BFA0F0E9D48F7009A6919 /* text_database_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = text_database_unittest.cc; sourceTree = "<group>"; };
		4D7BFA100E9D48F7009A6919 /* thumbnail_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = thumbnail_database.cc; sourceTree = "<group>"; };
		4D7BFA110E9D48F7009A6919 /* thumbnail_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thumbnail_database.h; sourceTree = "<group>"; };
		4D7BFA120E9D48F7009A6919 /* thumbnail_database_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = thumbnail_database_unittest.cc; sourceTree = "<group>"; };
		4D7BFA130E9D48F7009A6919 /* url_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_database.cc; sourceTree = "<group>"; };
		4D7BFA140E9D48F7009A6919 /* url_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_database.h; sourceTree = "<group>"; };
		4D7BFA150E9D48F7009A6919 /* url_database_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_database_unittest.cc; sourceTree = "<group>"; };
		4D7BFA160E9D48F7009A6919 /* visit_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visit_database.cc; sourceTree = "<group>"; };
		4D7BFA170E9D48F7009A6919 /* visit_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = visit_database.h; sourceTree = "<group>"; };
		4D7BFA180E9D48F7009A6919 /* visit_database_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visit_database_unittest.cc; sourceTree = "<group>"; };
		4D7BFA190E9D48F7009A6919 /* visit_tracker.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visit_tracker.cc; sourceTree = "<group>"; };
		4D7BFA1A0E9D48F7009A6919 /* visit_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = visit_tracker.h; sourceTree = "<group>"; };
		4D7BFA1B0E9D48F7009A6919 /* visit_tracker_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visit_tracker_unittest.cc; sourceTree = "<group>"; };
		4D7BFA1C0E9D48F7009A6919 /* visitsegment_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visitsegment_database.cc; sourceTree = "<group>"; };
		4D7BFA1D0E9D48F7009A6919 /* visitsegment_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = visitsegment_database.h; sourceTree = "<group>"; };
		4D7BFA680E9D4981009A6919 /* dns_global.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dns_global.cc; sourceTree = "<group>"; };
		4D7BFA690E9D4981009A6919 /* dns_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dns_global.h; sourceTree = "<group>"; };
		4D7BFA6A0E9D4981009A6919 /* dns_host_info.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dns_host_info.cc; sourceTree = "<group>"; };
		4D7BFA6B0E9D4981009A6919 /* dns_host_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dns_host_info.h; sourceTree = "<group>"; };
		4D7BFA6C0E9D4981009A6919 /* dns_host_info_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dns_host_info_unittest.cc; sourceTree = "<group>"; };
		4D7BFA6D0E9D4981009A6919 /* dns_master.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dns_master.cc; sourceTree = "<group>"; };
		4D7BFA6E0E9D4981009A6919 /* dns_master.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dns_master.h; sourceTree = "<group>"; };
		4D7BFA6F0E9D4981009A6919 /* dns_master_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dns_master_unittest.cc; sourceTree = "<group>"; };
		4D7BFA700E9D4981009A6919 /* dns_slave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dns_slave.cc; sourceTree = "<group>"; };
		4D7BFA710E9D4981009A6919 /* dns_slave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dns_slave.h; sourceTree = "<group>"; };
		4D7BFA720E9D4981009A6919 /* sdch_dictionary_fetcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdch_dictionary_fetcher.cc; sourceTree = "<group>"; };
		4D7BFA730E9D4981009A6919 /* sdch_dictionary_fetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdch_dictionary_fetcher.h; sourceTree = "<group>"; };
		4D7BFA7F0E9D49A4009A6919 /* page_number.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_number.cc; sourceTree = "<group>"; };
		4D7BFA800E9D49A4009A6919 /* page_number.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = page_number.h; sourceTree = "<group>"; };
		4D7BFA810E9D49A4009A6919 /* page_number_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_number_unittest.cc; sourceTree = "<group>"; };
		4D7BFA820E9D49A4009A6919 /* page_overlays.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_overlays.cc; sourceTree = "<group>"; };
		4D7BFA830E9D49A4009A6919 /* page_overlays.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = page_overlays.h; sourceTree = "<group>"; };
		4D7BFA840E9D49A4009A6919 /* page_overlays_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_overlays_unittest.cc; sourceTree = "<group>"; };
		4D7BFA850E9D49A4009A6919 /* page_range.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_range.cc; sourceTree = "<group>"; };
		4D7BFA860E9D49A4009A6919 /* page_range.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = page_range.h; sourceTree = "<group>"; };
		4D7BFA870E9D49A4009A6919 /* page_range_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_range_unittest.cc; sourceTree = "<group>"; };
		4D7BFA880E9D49A4009A6919 /* page_setup.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_setup.cc; sourceTree = "<group>"; };
		4D7BFA890E9D49A4009A6919 /* page_setup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = page_setup.h; sourceTree = "<group>"; };
		4D7BFA8A0E9D49A4009A6919 /* page_setup_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = page_setup_unittest.cc; sourceTree = "<group>"; };
		4D7BFA8B0E9D49A4009A6919 /* print_job.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = print_job.cc; sourceTree = "<group>"; };
		4D7BFA8C0E9D49A4009A6919 /* print_job.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = print_job.h; sourceTree = "<group>"; };
		4D7BFA8D0E9D49A4009A6919 /* print_job_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = print_job_manager.cc; sourceTree = "<group>"; };
		4D7BFA8E0E9D49A4009A6919 /* print_job_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = print_job_manager.h; sourceTree = "<group>"; };
		4D7BFA8F0E9D49A4009A6919 /* print_job_worker.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = print_job_worker.cc; sourceTree = "<group>"; };
		4D7BFA900E9D49A4009A6919 /* print_job_worker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = print_job_worker.h; sourceTree = "<group>"; };
		4D7BFA910E9D49A4009A6919 /* print_job_worker_owner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = print_job_worker_owner.h; sourceTree = "<group>"; };
		4D7BFA920E9D49A4009A6919 /* print_settings.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = print_settings.cc; sourceTree = "<group>"; };
		4D7BFA930E9D49A4009A6919 /* print_settings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = print_settings.h; sourceTree = "<group>"; };
		4D7BFA940E9D49A4009A6919 /* print_view_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = print_view_manager.cc; sourceTree = "<group>"; };
		4D7BFA950E9D49A4009A6919 /* print_view_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = print_view_manager.h; sourceTree = "<group>"; };
		4D7BFA960E9D49A4009A6919 /* printed_document.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = printed_document.cc; sourceTree = "<group>"; };
		4D7BFA970E9D49A4009A6919 /* printed_document.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = printed_document.h; sourceTree = "<group>"; };
		4D7BFA980E9D49A4009A6919 /* printed_page.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = printed_page.cc; sourceTree = "<group>"; };
		4D7BFA990E9D49A4009A6919 /* printed_page.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = printed_page.h; sourceTree = "<group>"; };
		4D7BFA9A0E9D49A4009A6919 /* printed_pages_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = printed_pages_source.h; sourceTree = "<group>"; };
		4D7BFA9B0E9D49A4009A6919 /* printer_query.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = printer_query.cc; sourceTree = "<group>"; };
		4D7BFA9C0E9D49A4009A6919 /* printer_query.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = printer_query.h; sourceTree = "<group>"; };
		4D7BFA9D0E9D49A4009A6919 /* printing_layout_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = printing_layout_uitest.cc; sourceTree = "<group>"; };
		4D7BFA9E0E9D49A4009A6919 /* printing_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = printing_test.h; sourceTree = "<group>"; };
		4D7BFA9F0E9D49A4009A6919 /* units.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = units.cc; sourceTree = "<group>"; };
		4D7BFAA00E9D49A4009A6919 /* units.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = units.h; sourceTree = "<group>"; };
		4D7BFAA10E9D49A4009A6919 /* units_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = units_unittest.cc; sourceTree = "<group>"; };
		4D7BFAA20E9D49A4009A6919 /* win_printing_context.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = win_printing_context.cc; sourceTree = "<group>"; };
		4D7BFAA30E9D49A4009A6919 /* win_printing_context.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = win_printing_context.h; sourceTree = "<group>"; };
		4D7BFAA40E9D49A4009A6919 /* win_printing_context_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = win_printing_context_unittest.cc; sourceTree = "<group>"; };
		4D7BFACE0E9D49DE009A6919 /* bloom_filter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bloom_filter.cc; sourceTree = "<group>"; };
		4D7BFACF0E9D49DE009A6919 /* bloom_filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bloom_filter.h; sourceTree = "<group>"; };
		4D7BFAD00E9D49DE009A6919 /* bloom_filter_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bloom_filter_unittest.cc; sourceTree = "<group>"; };
		4D7BFAD10E9D49DE009A6919 /* chunk_range.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chunk_range.cc; sourceTree = "<group>"; };
		4D7BFAD20E9D49DE009A6919 /* chunk_range.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chunk_range.h; sourceTree = "<group>"; };
		4D7BFAD30E9D49DE009A6919 /* chunk_range_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chunk_range_unittest.cc; sourceTree = "<group>"; };
		4D7BFAD40E9D49DE009A6919 /* database_perftest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = database_perftest.cc; sourceTree = "<group>"; };
		4D7BFAD50E9D49DE009A6919 /* protocol_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = protocol_manager.cc; sourceTree = "<group>"; };
		4D7BFAD60E9D49DE009A6919 /* protocol_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol_manager.h; sourceTree = "<group>"; };
		4D7BFAD70E9D49DE009A6919 /* protocol_manager_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = protocol_manager_unittest.cc; sourceTree = "<group>"; };
		4D7BFAD80E9D49DE009A6919 /* protocol_parser.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = protocol_parser.cc; sourceTree = "<group>"; };
		4D7BFAD90E9D49DE009A6919 /* protocol_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol_parser.h; sourceTree = "<group>"; };
		4D7BFADA0E9D49DE009A6919 /* protocol_parser_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = protocol_parser_unittest.cc; sourceTree = "<group>"; };
		4D7BFADB0E9D49DE009A6919 /* safe_browsing_blocking_page.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = safe_browsing_blocking_page.cc; sourceTree = "<group>"; };
		4D7BFADC0E9D49DE009A6919 /* safe_browsing_blocking_page.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safe_browsing_blocking_page.h; sourceTree = "<group>"; };
		4D7BFADD0E9D49DE009A6919 /* safe_browsing_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = safe_browsing_database.cc; sourceTree = "<group>"; };
		4D7BFADE0E9D49DE009A6919 /* safe_browsing_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safe_browsing_database.h; sourceTree = "<group>"; };
		4D7BFADF0E9D49DE009A6919 /* safe_browsing_database_bloom.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = safe_browsing_database_bloom.cc; sourceTree = "<group>"; };
		4D7BFAE00E9D49DE009A6919 /* safe_browsing_database_bloom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safe_browsing_database_bloom.h; sourceTree = "<group>"; };
		4D7BFAE10E9D49DE009A6919 /* safe_browsing_database_impl.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = safe_browsing_database_impl.cc; sourceTree = "<group>"; };
		4D7BFAE20E9D49DE009A6919 /* safe_browsing_database_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safe_browsing_database_impl.h; sourceTree = "<group>"; };
		4D7BFAE40E9D49DE009A6919 /* safe_browsing_database_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = safe_browsing_database_unittest.cc; sourceTree = "<group>"; };
		4D7BFAE50E9D49DE009A6919 /* safe_browsing_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = safe_browsing_service.cc; sourceTree = "<group>"; };
		4D7BFAE60E9D49DE009A6919 /* safe_browsing_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safe_browsing_service.h; sourceTree = "<group>"; };
		4D7BFAE70E9D49DE009A6919 /* safe_browsing_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = safe_browsing_util.cc; sourceTree = "<group>"; };
		4D7BFAE80E9D49DE009A6919 /* safe_browsing_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safe_browsing_util.h; sourceTree = "<group>"; };
		4D7BFAE90E9D49DE009A6919 /* safe_browsing_util_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = safe_browsing_util_unittest.cc; sourceTree = "<group>"; };
		4D7BFB0B0E9D4BBF009A6919 /* libxml.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libxml.xcodeproj; path = third_party/libxml/libxml.xcodeproj; sourceTree = "<group>"; };
		4D7BFB2D0E9D4BE5009A6919 /* unit_tests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = unit_tests; sourceTree = BUILT_PRODUCTS_DIR; };
		4D7BFB850E9D4C9F009A6919 /* animation.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = animation.cc; sourceTree = "<group>"; };
		4D7BFB860E9D4C9F009A6919 /* animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = animation.h; sourceTree = "<group>"; };
		4D7BFB870E9D4C9F009A6919 /* animation_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = animation_unittest.cc; sourceTree = "<group>"; };
		4D7BFB880E9D4C9F009A6919 /* bzip2_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bzip2_unittest.cc; sourceTree = "<group>"; };
		4D7BFB890E9D4C9F009A6919 /* child_process.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = child_process.cc; sourceTree = "<group>"; };
		4D7BFB8A0E9D4C9F009A6919 /* child_process.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = child_process.h; sourceTree = "<group>"; };
		4D7BFB8B0E9D4C9F009A6919 /* chrome_constants.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_constants.cc; sourceTree = "<group>"; };
		4D7BFB8C0E9D4C9F009A6919 /* chrome_constants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_constants.h; sourceTree = "<group>"; };
		4D7BFB8D0E9D4C9F009A6919 /* chrome_counters.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_counters.cc; sourceTree = "<group>"; };
		4D7BFB8E0E9D4C9F009A6919 /* chrome_counters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_counters.h; sourceTree = "<group>"; };
		4D7BFB8F0E9D4C9F009A6919 /* chrome_paths.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_paths.cc; sourceTree = "<group>"; };
		4D7BFB900E9D4C9F009A6919 /* chrome_paths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_paths.h; sourceTree = "<group>"; };
		4D7BFB910E9D4C9F009A6919 /* chrome_plugin_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_plugin_api.h; sourceTree = "<group>"; };
		4D7BFB920E9D4C9F009A6919 /* chrome_plugin_lib.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_plugin_lib.cc; sourceTree = "<group>"; };
		4D7BFB930E9D4C9F009A6919 /* chrome_plugin_lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_plugin_lib.h; sourceTree = "<group>"; };
		4D7BFB940E9D4C9F009A6919 /* chrome_plugin_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_plugin_unittest.cc; sourceTree = "<group>"; };
		4D7BFB950E9D4C9F009A6919 /* chrome_plugin_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_plugin_util.cc; sourceTree = "<group>"; };
		4D7BFB960E9D4C9F009A6919 /* chrome_plugin_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_plugin_util.h; sourceTree = "<group>"; };
		4D7BFB970E9D4C9F009A6919 /* chrome_process_filter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_process_filter.cc; sourceTree = "<group>"; };
		4D7BFB980E9D4C9F009A6919 /* chrome_process_filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_process_filter.h; sourceTree = "<group>"; };
		4D7BFB990E9D4C9F009A6919 /* chrome_switches.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_switches.cc; sourceTree = "<group>"; };
		4D7BFB9A0E9D4C9F009A6919 /* chrome_switches.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_switches.h; sourceTree = "<group>"; };
		4D7BFB9B0E9D4C9F009A6919 /* classfactory.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = classfactory.cc; sourceTree = "<group>"; };
		4D7BFB9C0E9D4C9F009A6919 /* classfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = classfactory.h; sourceTree = "<group>"; };
		4D7BFB9D0E9D4C9F009A6919 /* clipboard_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = clipboard_service.cc; sourceTree = "<group>"; };
		4D7BFB9E0E9D4C9F009A6919 /* clipboard_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clipboard_service.h; sourceTree = "<group>"; };
		4D7BFB9F0E9D4C9F009A6919 /* common_glue.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = common_glue.cc; sourceTree = "<group>"; };
		4D7BFBA00E9D4C9F009A6919 /* common_resources.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common_resources.h; sourceTree = "<group>"; };
		4D7BFBA10E9D4C9F009A6919 /* debug_flags.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = debug_flags.cc; sourceTree = "<group>"; };
		4D7BFBA20E9D4C9F009A6919 /* debug_flags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debug_flags.h; sourceTree = "<group>"; };
		4D7BFBA30E9D4C9F009A6919 /* drag_drop_types.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = drag_drop_types.cc; sourceTree = "<group>"; };
		4D7BFBA40E9D4C9F009A6919 /* drag_drop_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = drag_drop_types.h; sourceTree = "<group>"; };
		4D7BFBA50E9D4C9F009A6919 /* env_vars.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = env_vars.cc; sourceTree = "<group>"; };
		4D7BFBA60E9D4C9F009A6919 /* env_vars.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = env_vars.h; sourceTree = "<group>"; };
		4D7BFBA70E9D4C9F009A6919 /* filter_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filter_policy.h; sourceTree = "<group>"; };
		4D7BFBA80E9D4C9F009A6919 /* gears_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gears_api.h; sourceTree = "<group>"; };
		4D7BFBA90E9D4C9F009A6919 /* ipc_channel.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_channel.cc; sourceTree = "<group>"; };
		4D7BFBAA0E9D4C9F009A6919 /* ipc_channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_channel.h; sourceTree = "<group>"; };
		4D7BFBAB0E9D4C9F009A6919 /* ipc_channel_proxy.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_channel_proxy.cc; sourceTree = "<group>"; };
		4D7BFBAC0E9D4C9F009A6919 /* ipc_channel_proxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_channel_proxy.h; sourceTree = "<group>"; };
		4D7BFBAD0E9D4C9F009A6919 /* ipc_fuzzing_tests.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_fuzzing_tests.cc; sourceTree = "<group>"; };
		4D7BFBAE0E9D4C9F009A6919 /* ipc_logging.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_logging.cc; sourceTree = "<group>"; };
		4D7BFBAF0E9D4C9F009A6919 /* ipc_logging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_logging.h; sourceTree = "<group>"; };
		4D7BFBB00E9D4C9F009A6919 /* ipc_message.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_message.cc; sourceTree = "<group>"; };
		4D7BFBB10E9D4C9F009A6919 /* ipc_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_message.h; sourceTree = "<group>"; };
		4D7BFBB20E9D4C9F009A6919 /* ipc_message_macros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_message_macros.h; sourceTree = "<group>"; };
		4D7BFBB30E9D4C9F009A6919 /* ipc_message_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_message_unittest.cc; sourceTree = "<group>"; };
		4D7BFBB40E9D4C9F009A6919 /* ipc_message_utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_message_utils.cc; sourceTree = "<group>"; };
		4D7BFBB50E9D4C9F009A6919 /* ipc_message_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_message_utils.h; sourceTree = "<group>"; };
		4D7BFBB60E9D4C9F009A6919 /* ipc_sync_channel.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_sync_channel.cc; sourceTree = "<group>"; };
		4D7BFBB70E9D4C9F009A6919 /* ipc_sync_channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_sync_channel.h; sourceTree = "<group>"; };
		4D7BFBB80E9D4C9F009A6919 /* ipc_sync_channel_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_sync_channel_unittest.cc; sourceTree = "<group>"; };
		4D7BFBB90E9D4C9F009A6919 /* ipc_sync_channel_unittest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_sync_channel_unittest.h; sourceTree = "<group>"; };
		4D7BFBBA0E9D4C9F009A6919 /* ipc_sync_message.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_sync_message.cc; sourceTree = "<group>"; };
		4D7BFBBB0E9D4C9F009A6919 /* ipc_sync_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_sync_message.h; sourceTree = "<group>"; };
		4D7BFBBC0E9D4C9F009A6919 /* ipc_sync_message_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_sync_message_unittest.cc; sourceTree = "<group>"; };
		4D7BFBBD0E9D4C9F009A6919 /* ipc_sync_message_unittest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_sync_message_unittest.h; sourceTree = "<group>"; };
		4D7BFBBE0E9D4C9F009A6919 /* ipc_tests.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_tests.cc; sourceTree = "<group>"; };
		4D7BFBBF0E9D4C9F009A6919 /* ipc_tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_tests.h; sourceTree = "<group>"; };
		4D7BFBC00E9D4C9F009A6919 /* jpeg_codec.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jpeg_codec.cc; sourceTree = "<group>"; };
		4D7BFBC10E9D4C9F009A6919 /* jpeg_codec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jpeg_codec.h; sourceTree = "<group>"; };
		4D7BFBC20E9D4C9F009A6919 /* jpeg_codec_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jpeg_codec_unittest.cc; sourceTree = "<group>"; };
		4D7BFBC30E9D4C9F009A6919 /* json_value_serializer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = json_value_serializer.cc; sourceTree = "<group>"; };
		4D7BFBC40E9D4C9F009A6919 /* json_value_serializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = json_value_serializer.h; sourceTree = "<group>"; };
		4D7BFBC50E9D4C9F009A6919 /* json_value_serializer_perftest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = json_value_serializer_perftest.cc; sourceTree = "<group>"; };
		4D7BFBC60E9D4C9F009A6919 /* json_value_serializer_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = json_value_serializer_unittest.cc; sourceTree = "<group>"; };
		4D7BFBC70E9D4C9F009A6919 /* jstemplate_builder.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jstemplate_builder.cc; sourceTree = "<group>"; };
		4D7BFBC80E9D4C9F009A6919 /* jstemplate_builder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jstemplate_builder.h; sourceTree = "<group>"; };
		4D7BFBC90E9D4C9F009A6919 /* l10n_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l10n_util.cc; sourceTree = "<group>"; };
		4D7BFBCA0E9D4C9F009A6919 /* l10n_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = l10n_util.h; sourceTree = "<group>"; };
		4D7BFBCB0E9D4C9F009A6919 /* l10n_util_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l10n_util_unittest.cc; sourceTree = "<group>"; };
		4D7BFBCC0E9D4C9F009A6919 /* libxml_utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = libxml_utils.cc; sourceTree = "<group>"; };
		4D7BFBCD0E9D4C9F009A6919 /* libxml_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libxml_utils.h; sourceTree = "<group>"; };
		4D7BFBCE0E9D4C9F009A6919 /* logging_chrome.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = logging_chrome.cc; sourceTree = "<group>"; };
		4D7BFBCF0E9D4C9F009A6919 /* logging_chrome.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logging_chrome.h; sourceTree = "<group>"; };
		4D7BFBD00E9D4C9F009A6919 /* logging_chrome_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = logging_chrome_uitest.cc; sourceTree = "<group>"; };
		4D7BFBD10E9D4C9F009A6919 /* message_router.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = message_router.cc; sourceTree = "<group>"; };
		4D7BFBD20E9D4C9F009A6919 /* message_router.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = message_router.h; sourceTree = "<group>"; };
		4D7BFBD30E9D4C9F009A6919 /* mru_cache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mru_cache.h; sourceTree = "<group>"; };
		4D7BFBD40E9D4C9F009A6919 /* mru_cache_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mru_cache_unittest.cc; sourceTree = "<group>"; };
		4D7BFBD50E9D4C9F009A6919 /* navigation_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = navigation_types.h; sourceTree = "<group>"; };
		4D7BFBD60E9D4C9F009A6919 /* notification_details.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notification_details.h; sourceTree = "<group>"; };
		4D7BFBD70E9D4C9F009A6919 /* notification_registrar.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notification_registrar.cc; sourceTree = "<group>"; };
		4D7BFBD80E9D4C9F009A6919 /* notification_registrar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notification_registrar.h; sourceTree = "<group>"; };
		4D7BFBD90E9D4C9F009A6919 /* notification_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notification_service.cc; sourceTree = "<group>"; };
		4D7BFBDA0E9D4C9F009A6919 /* notification_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notification_service.h; sourceTree = "<group>"; };
		4D7BFBDB0E9D4C9F009A6919 /* notification_service_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notification_service_unittest.cc; sourceTree = "<group>"; };
		4D7BFBDC0E9D4C9F009A6919 /* notification_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notification_source.h; sourceTree = "<group>"; };
		4D7BFBDD0E9D4C9F009A6919 /* notification_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notification_types.h; sourceTree = "<group>"; };
		4D7BFBDE0E9D4C9F009A6919 /* os_exchange_data.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = os_exchange_data.cc; sourceTree = "<group>"; };
		4D7BFBDF0E9D4C9F009A6919 /* os_exchange_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = os_exchange_data.h; sourceTree = "<group>"; };
		4D7BFBE00E9D4C9F009A6919 /* os_exchange_data_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = os_exchange_data_unittest.cc; sourceTree = "<group>"; };
		4D7BFBE10E9D4C9F009A6919 /* page_transition_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = page_transition_types.h; sourceTree = "<group>"; };
		4D7BFBE20E9D4C9F009A6919 /* plugin_messages.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin_messages.cc; sourceTree = "<group>"; };
		4D7BFBE30E9D4C9F009A6919 /* plugin_messages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_messages.h; sourceTree = "<group>"; };
		4D7BFBE40E9D4C9F009A6919 /* plugin_messages_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_messages_internal.h; sourceTree = "<group>"; };
		4D7BFBE50E9D4C9F009A6919 /* pref_member.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pref_member.cc; sourceTree = "<group>"; };
		4D7BFBE60E9D4C9F009A6919 /* pref_member.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pref_member.h; sourceTree = "<group>"; };
		4D7BFBE70E9D4C9F009A6919 /* pref_member_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pref_member_unittest.cc; sourceTree = "<group>"; };
		4D7BFBE80E9D4C9F009A6919 /* pref_names.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pref_names.cc; sourceTree = "<group>"; };
		4D7BFBE90E9D4C9F009A6919 /* pref_names.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pref_names.h; sourceTree = "<group>"; };
		4D7BFBEA0E9D4C9F009A6919 /* pref_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pref_service.cc; sourceTree = "<group>"; };
		4D7BFBEB0E9D4C9F009A6919 /* pref_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pref_service.h; sourceTree = "<group>"; };
		4D7BFBEC0E9D4C9F009A6919 /* pref_service_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pref_service_uitest.cc; sourceTree = "<group>"; };
		4D7BFBED0E9D4C9F009A6919 /* pref_service_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pref_service_unittest.cc; sourceTree = "<group>"; };
		4D7BFBEE0E9D4C9F009A6919 /* process_watcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = process_watcher.cc; sourceTree = "<group>"; };
		4D7BFBEF0E9D4C9F009A6919 /* process_watcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = process_watcher.h; sourceTree = "<group>"; };
		4D7BFBF00E9D4C9F009A6919 /* ref_counted_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ref_counted_util.h; sourceTree = "<group>"; };
		4D7BFBF10E9D4C9F009A6919 /* render_messages.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_messages.cc; sourceTree = "<group>"; };
		4D7BFBF20E9D4C9F009A6919 /* render_messages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_messages.h; sourceTree = "<group>"; };
		4D7BFBF30E9D4C9F009A6919 /* render_messages_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render_messages_internal.h; sourceTree = "<group>"; };
		4D7BFBF40E9D4C9F009A6919 /* resource_bundle.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resource_bundle.cc; sourceTree = "<group>"; };
		4D7BFBF50E9D4C9F009A6919 /* resource_bundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource_bundle.h; sourceTree = "<group>"; };
		4D7BFBF60E9D4C9F009A6919 /* resource_dispatcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resource_dispatcher.cc; sourceTree = "<group>"; };
		4D7BFBF70E9D4C9F009A6919 /* resource_dispatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource_dispatcher.h; sourceTree = "<group>"; };
		4D7BFBF80E9D4C9F009A6919 /* resource_dispatcher_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resource_dispatcher_unittest.cc; sourceTree = "<group>"; };
		4D7BFBF90E9D4C9F009A6919 /* scoped_vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scoped_vector.h; sourceTree = "<group>"; };
		4D7BFBFA0E9D4C9F009A6919 /* security_filter_peer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = security_filter_peer.cc; sourceTree = "<group>"; };
		4D7BFBFB0E9D4C9F009A6919 /* security_filter_peer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = security_filter_peer.h; sourceTree = "<group>"; };
		4D7BFBFC0E9D4C9F009A6919 /* slide_animation.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slide_animation.cc; sourceTree = "<group>"; };
		4D7BFBFD0E9D4C9F009A6919 /* slide_animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slide_animation.h; sourceTree = "<group>"; };
		4D7BFBFE0E9D4C9F009A6919 /* sqlite_compiled_statement.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sqlite_compiled_statement.cc; sourceTree = "<group>"; };
		4D7BFBFF0E9D4C9F009A6919 /* sqlite_compiled_statement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sqlite_compiled_statement.h; sourceTree = "<group>"; };
		4D7BFC000E9D4C9F009A6919 /* sqlite_utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sqlite_utils.cc; sourceTree = "<group>"; };
		4D7BFC010E9D4C9F009A6919 /* sqlite_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sqlite_utils.h; sourceTree = "<group>"; };
		4D7BFC020E9D4C9F009A6919 /* stl_util-inl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "stl_util-inl.h"; sourceTree = "<group>"; };
		4D7BFC030E9D4C9F009A6919 /* task_queue.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = task_queue.cc; sourceTree = "<group>"; };
		4D7BFC040E9D4C9F009A6919 /* task_queue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_queue.h; sourceTree = "<group>"; };
		4D7BFC050E9D4C9F009A6919 /* text_zoom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = text_zoom.h; sourceTree = "<group>"; };
		4D7BFC060E9D4C9F009A6919 /* throb_animation.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = throb_animation.cc; sourceTree = "<group>"; };
		4D7BFC070E9D4C9F009A6919 /* throb_animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = throb_animation.h; sourceTree = "<group>"; };
		4D7BFC080E9D4C9F009A6919 /* thumbnail_score.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = thumbnail_score.cc; sourceTree = "<group>"; };
		4D7BFC090E9D4C9F009A6919 /* thumbnail_score.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thumbnail_score.h; sourceTree = "<group>"; };
		4D7BFC0A0E9D4C9F009A6919 /* time_format.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = time_format.cc; sourceTree = "<group>"; };
		4D7BFC0B0E9D4C9F009A6919 /* time_format.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time_format.h; sourceTree = "<group>"; };
		4D7BFC0C0E9D4C9F009A6919 /* time_format_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = time_format_unittest.cc; sourceTree = "<group>"; };
		4D7BFC0D0E9D4C9F009A6919 /* visitedlink_common.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visitedlink_common.cc; sourceTree = "<group>"; };
		4D7BFC0E0E9D4C9F009A6919 /* visitedlink_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = visitedlink_common.h; sourceTree = "<group>"; };
		4D7BFC0F0E9D4C9F009A6919 /* win_safe_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = win_safe_util.cc; sourceTree = "<group>"; };
		4D7BFC100E9D4C9F009A6919 /* win_safe_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = win_safe_util.h; sourceTree = "<group>"; };
		4D7BFC110E9D4C9F009A6919 /* win_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = win_util.cc; sourceTree = "<group>"; };
		4D7BFC120E9D4C9F009A6919 /* win_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = win_util.h; sourceTree = "<group>"; };
		4D7BFC130E9D4C9F009A6919 /* win_util_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = win_util_unittest.cc; sourceTree = "<group>"; };
		4D7BFC140E9D4C9F009A6919 /* worker_thread_ticker.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = worker_thread_ticker.cc; sourceTree = "<group>"; };
		4D7BFC150E9D4C9F009A6919 /* worker_thread_ticker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worker_thread_ticker.h; sourceTree = "<group>"; };
		4D7BFC1A0E9D4CB9009A6919 /* libcommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libcommon.a; sourceTree = BUILT_PRODUCTS_DIR; };
		4D7BFCA90E9D4D5D009A6919 /* chrome_canvas.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_canvas.cc; sourceTree = "<group>"; };
		4D7BFCAA0E9D4D5D009A6919 /* chrome_canvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_canvas.h; sourceTree = "<group>"; };
		4D7BFCAB0E9D4D5D009A6919 /* chrome_font.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_font.cc; sourceTree = "<group>"; };
		4D7BFCAC0E9D4D5D009A6919 /* chrome_font.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_font.h; sourceTree = "<group>"; };
		4D7BFCAD0E9D4D5D009A6919 /* color_utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = color_utils.cc; sourceTree = "<group>"; };
		4D7BFCAE0E9D4D5D009A6919 /* color_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = color_utils.h; sourceTree = "<group>"; };
		4D7BFCAF0E9D4D5D009A6919 /* emf.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emf.cc; sourceTree = "<group>"; };
		4D7BFCB00E9D4D5D009A6919 /* emf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emf.h; sourceTree = "<group>"; };
		4D7BFCB10E9D4D5D009A6919 /* emf_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emf_unittest.cc; sourceTree = "<group>"; };
		4D7BFCB20E9D4D5D009A6919 /* favicon_size.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = favicon_size.h; sourceTree = "<group>"; };
		4D7BFCB30E9D4D5D009A6919 /* icon_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icon_util.cc; sourceTree = "<group>"; };
		4D7BFCB40E9D4D5D009A6919 /* icon_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icon_util.h; sourceTree = "<group>"; };
		4D7BFCB50E9D4D5D009A6919 /* icon_util_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icon_util_unittest.cc; sourceTree = "<group>"; };
		4D7BFCB60E9D4D5D009A6919 /* insets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = insets.h; sourceTree = "<group>"; };
		4D7BFCB70E9D4D5D009A6919 /* path.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = path.cc; sourceTree = "<group>"; };
		4D7BFCB80E9D4D5D009A6919 /* path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = path.h; sourceTree = "<group>"; };
		4D7BFCB90E9D4D5D009A6919 /* url_elider.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_elider.cc; sourceTree = "<group>"; };
		4D7BFCBA0E9D4D5D009A6919 /* url_elider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_elider.h; sourceTree = "<group>"; };
		4D7BFCBB0E9D4D5D009A6919 /* url_elider_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_elider_unittest.cc; sourceTree = "<group>"; };
		4D7BFCBC0E9D4D5D009A6919 /* utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utils.h; sourceTree = "<group>"; };
		4D7BFCBE0E9D4D6B009A6919 /* cache_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cache_uitest.cc; sourceTree = "<group>"; };
		4D7BFCBF0E9D4D6B009A6919 /* cookie_monster_sqlite.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cookie_monster_sqlite.cc; sourceTree = "<group>"; };
		4D7BFCC00E9D4D6B009A6919 /* cookie_monster_sqlite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cookie_monster_sqlite.h; sourceTree = "<group>"; };
		4D7BFCC10E9D4D6B009A6919 /* dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dns.h; sourceTree = "<group>"; };
		4D7BFCC20E9D4D6B009A6919 /* url_request_intercept_job.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_request_intercept_job.cc; sourceTree = "<group>"; };
		4D7BFCC30E9D4D6B009A6919 /* url_request_intercept_job.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_request_intercept_job.h; sourceTree = "<group>"; };
		4D7BFCC40E9D4D6B009A6919 /* url_util_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_util_unittest.cc; sourceTree = "<group>"; };
		4D7BFCEE0E9D4DFE009A6919 /* chrome_test_suite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_test_suite.h; sourceTree = "<group>"; };
		4D7BFCEF0E9D4DFE009A6919 /* run_all_unittests.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = run_all_unittests.cc; sourceTree = "<group>"; };
		4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = base.xcodeproj; path = base/base.xcodeproj; sourceTree = "<group>"; };
		4D7BFDD10E9D5295009A6919 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<group>"; };
		4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = icu.xcodeproj; path = third_party/icu38/icu.xcodeproj; sourceTree = "<group>"; };
		4D7BFE820E9D532E009A6919 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = "<group>"; };
		4D7BFF2F0E9D5362009A6919 /* libjpeg.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libjpeg.xcodeproj; path = third_party/libjpeg/libjpeg.xcodeproj; sourceTree = "<group>"; };
		4D7BFF3C0E9D538D009A6919 /* gtest.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = gtest.xcodeproj; path = testing/gtest.xcodeproj; sourceTree = "<group>"; };
		4D7BFF460E9D53B4009A6919 /* libevent.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libevent.xcodeproj; path = third_party/libevent/libevent.xcodeproj; sourceTree = "<group>"; };
		4D7BFF4C0E9D53C1009A6919 /* bzip2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = bzip2.xcodeproj; path = third_party/bzip2/bzip2.xcodeproj; sourceTree = "<group>"; };
		4D7BFF5F0E9D540F009A6919 /* googleurl.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = googleurl.xcodeproj; path = build/googleurl.xcodeproj; sourceTree = "<group>"; };
		4D7BFF7A0E9D5449009A6919 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = "<group>"; };
		4DC6498E0EA92BF90017C876 /* platform_test_mac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = platform_test_mac.mm; sourceTree = "<group>"; };
		4DDC64500EAE392400FB5EBE /* zlib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = zlib.xcodeproj; path = third_party/zlib/zlib.xcodeproj; sourceTree = "<group>"; };
		B54BD8FA0ED622C00093FD54 /* mach_message_source_mac.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mach_message_source_mac.cc; sourceTree = "<group>"; };
		B54BD8FB0ED622C00093FD54 /* mach_message_source_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_message_source_mac.h; sourceTree = "<group>"; };
		B562C8410ED49C830077A23F /* mach_ipc_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_ipc_mac.h; sourceTree = "<group>"; };
		B562C8420ED49C830077A23F /* mach_ipc_mac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = mach_ipc_mac.mm; sourceTree = "<group>"; };
		E48FB9610EC4EA270052B72B /* automation_autocomplete_edit_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_autocomplete_edit_tracker.h; sourceTree = "<group>"; };
		E48FB9620EC4EA270052B72B /* automation_browser_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_browser_tracker.h; sourceTree = "<group>"; };
		E48FB9630EC4EA270052B72B /* automation_constrained_window_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_constrained_window_tracker.h; sourceTree = "<group>"; };
		E48FB9640EC4EA270052B72B /* automation_provider.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = automation_provider.cc; sourceTree = "<group>"; };
		E48FB9650EC4EA270052B72B /* automation_provider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_provider.h; sourceTree = "<group>"; };
		E48FB9660EC4EA270052B72B /* automation_provider_list.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = automation_provider_list.cc; sourceTree = "<group>"; };
		E48FB9670EC4EA270052B72B /* automation_provider_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_provider_list.h; sourceTree = "<group>"; };
		E48FB9680EC4EA270052B72B /* automation_resource_tracker.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = automation_resource_tracker.cc; sourceTree = "<group>"; };
		E48FB9690EC4EA270052B72B /* automation_resource_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_resource_tracker.h; sourceTree = "<group>"; };
		E48FB96A0EC4EA270052B72B /* automation_tab_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_tab_tracker.h; sourceTree = "<group>"; };
		E48FB96B0EC4EA270052B72B /* automation_window_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_window_tracker.h; sourceTree = "<group>"; };
		E48FB96C0EC4EA270052B72B /* ui_controls.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ui_controls.cc; sourceTree = "<group>"; };
		E48FB96D0EC4EA270052B72B /* ui_controls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui_controls.h; sourceTree = "<group>"; };
		E48FB96E0EC4EA270052B72B /* url_request_failed_dns_job.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_request_failed_dns_job.cc; sourceTree = "<group>"; };
		E48FB96F0EC4EA270052B72B /* url_request_failed_dns_job.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_request_failed_dns_job.h; sourceTree = "<group>"; };
		E48FB9700EC4EA270052B72B /* url_request_mock_http_job.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_request_mock_http_job.cc; sourceTree = "<group>"; };
		E48FB9710EC4EA270052B72B /* url_request_mock_http_job.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_request_mock_http_job.h; sourceTree = "<group>"; };
		E48FB9720EC4EA270052B72B /* url_request_mock_net_error_job.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_request_mock_net_error_job.cc; sourceTree = "<group>"; };
		E48FB9730EC4EA270052B72B /* url_request_mock_net_error_job.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_request_mock_net_error_job.h; sourceTree = "<group>"; };
		E48FB9740EC4EA270052B72B /* url_request_slow_download_job.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_request_slow_download_job.cc; sourceTree = "<group>"; };
		E48FB9750EC4EA270052B72B /* url_request_slow_download_job.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_request_slow_download_job.h; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		4D640CE90EAE86BD00EBCFC0 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D7BF3040E9D477E009A6919 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D7BFB2B0E9D4BE5009A6919 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D7BFF7B0E9D5449009A6919 /* AppKit.framework in Frameworks */,
				4D7BFDD20E9D5295009A6919 /* CoreFoundation.framework in Frameworks */,
				4D7BFE830E9D532E009A6919 /* Foundation.framework in Frameworks */,
				4D7BFDCE0E9D5267009A6919 /* libbase.a in Frameworks */,
				4D7BFF5E0E9D53FD009A6919 /* libbase_gfx.a in Frameworks */,
				4D7BFD960E9D5223009A6919 /* libbrowser.a in Frameworks */,
				4D7BFF590E9D53E0009A6919 /* libbzip2.a in Frameworks */,
				4D7BFD970E9D5226009A6919 /* libcommon.a in Frameworks */,
				4D7BFF5A0E9D53E0009A6919 /* libevent.a in Frameworks */,
				4D7BFF730E9D5425009A6919 /* libgoogleurl.a in Frameworks */,
				4D7BFF440E9D53A0009A6919 /* libgtest.a in Frameworks */,
				4D7B01480E9D56F2009A6919 /* libicudata.a in Frameworks */,
				4D7BFE800E9D5317009A6919 /* libicui18n.a in Frameworks */,
				4D7BFE760E9D52E4009A6919 /* libicuuc.a in Frameworks */,
				4D7BFF3A0E9D5378009A6919 /* libjpeg.a in Frameworks */,
				4D7B005E0E9D54BB009A6919 /* libmodp_b64.a in Frameworks */,
				4D7B00510E9D5473009A6919 /* libnet.a in Frameworks */,
				4D7B00520E9D5473009A6919 /* libskia.a in Frameworks */,
				4D7B01420E9D56C4009A6919 /* libsqlite.a in Frameworks */,
				4DDC644B0EAE390800FB5EBE /* libxml.a in Frameworks */,
				4DDC64580EAE394200FB5EBE /* libzlib.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D7BFC180E9D4CB9009A6919 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		4D640CB90EAE863E00EBCFC0 /* renderer */ = {
			isa = PBXGroup;
			children = (
				4D640CE00EAE868E00EBCFC0 /* net */,
				4D640CBD0EAE868600EBCFC0 /* about_handler.cc */,
				4D640CBE0EAE868600EBCFC0 /* about_handler.h */,
				4D640CBF0EAE868600EBCFC0 /* chrome_plugin_host.cc */,
				4D640CC00EAE868600EBCFC0 /* chrome_plugin_host.h */,
				4D640CC10EAE868600EBCFC0 /* debug_message_handler.cc */,
				4D640CC20EAE868600EBCFC0 /* debug_message_handler.h */,
				4D640CC30EAE868600EBCFC0 /* dom_ui_bindings.cc */,
				4D640CC40EAE868600EBCFC0 /* dom_ui_bindings.h */,
				4D640CC50EAE868600EBCFC0 /* external_host_bindings.cc */,
				4D640CC60EAE868600EBCFC0 /* external_host_bindings.h */,
				4D640CC70EAE868600EBCFC0 /* external_js_object.cc */,
				4D640CC80EAE868600EBCFC0 /* external_js_object.h */,
				4D640CC90EAE868600EBCFC0 /* greasemonkey_slave.cc */,
				4D640CCA0EAE868600EBCFC0 /* greasemonkey_slave.h */,
				4D640CCB0EAE868600EBCFC0 /* localized_error.cc */,
				4D640CCC0EAE868600EBCFC0 /* localized_error.h */,
				4D640CCD0EAE868600EBCFC0 /* plugin_channel_host.cc */,
				4D640CCE0EAE868600EBCFC0 /* plugin_channel_host.h */,
				4D640CCF0EAE868600EBCFC0 /* render_process.cc */,
				4D640CD00EAE868600EBCFC0 /* render_process.h */,
				4D640CD10EAE868600EBCFC0 /* render_thread.cc */,
				4D640CD20EAE868600EBCFC0 /* render_thread.h */,
				4D640CD30EAE868600EBCFC0 /* render_view.cc */,
				4D640CD40EAE868600EBCFC0 /* render_view.h */,
				4D640CD50EAE868600EBCFC0 /* render_widget.cc */,
				4D640CD60EAE868600EBCFC0 /* render_widget.h */,
				4D640CD70EAE868600EBCFC0 /* render_widget_unittest.cc */,
				4D640CD80EAE868600EBCFC0 /* renderer_glue.cc */,
				4D640CD90EAE868600EBCFC0 /* renderer_main.cc */,
				4D640CDA0EAE868600EBCFC0 /* renderer_resources.h */,
				4D640CDB0EAE868600EBCFC0 /* spellcheck_unittest.cc */,
				4D640CDC0EAE868600EBCFC0 /* visitedlink_slave.cc */,
				4D640CDD0EAE868600EBCFC0 /* visitedlink_slave.h */,
				4D640CDE0EAE868600EBCFC0 /* webplugin_delegate_proxy.cc */,
				4D640CDF0EAE868600EBCFC0 /* webplugin_delegate_proxy.h */,
			);
			path = renderer;
			sourceTree = "<group>";
		};
		4D640CE00EAE868E00EBCFC0 /* net */ = {
			isa = PBXGroup;
			children = (
				4D640CE10EAE86A500EBCFC0 /* render_dns_master.cc */,
				4D640CE20EAE86A500EBCFC0 /* render_dns_master.h */,
				4D640CE30EAE86A500EBCFC0 /* render_dns_master_unittest.cc */,
				4D640CE40EAE86A500EBCFC0 /* render_dns_queue.cc */,
				4D640CE50EAE86A500EBCFC0 /* render_dns_queue.h */,
				4D640CE60EAE86A500EBCFC0 /* render_dns_queue_unittest.cc */,
			);
			path = net;
			sourceTree = "<group>";
		};
		4D7B002F0E9D5459009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7B00330E9D5459009A6919 /* libskia.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7B00350E9D5464009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7B004E0E9D5464009A6919 /* libnet.a */,
				4D7B00500E9D5464009A6919 /* net_unittests */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7B00590E9D54AA009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7B005D0E9D54AA009A6919 /* libmodp_b64.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7B013A0E9D56BC009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7B01410E9D56BC009A6919 /* libsqlite.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BF2E70E9D46A4009A6919 = {
			isa = PBXGroup;
			children = (
				4D7BF2FA0E9D46CD009A6919 /* Configuration */,
				4DC6498D0EA92BE10017C876 /* base */,
				4D7BF3380E9D479D009A6919 /* chrome */,
				4D7BFDD00E9D527E009A6919 /* Frameworks */,
				4D7BFB090E9D4BA1009A6919 /* Projects */,
				4D7BF3070E9D477E009A6919 /* Products */,
			);
			sourceTree = "<group>";
		};
		4D7BF2FA0E9D46CD009A6919 /* Configuration */ = {
			isa = PBXGroup;
			children = (
				4D7BF2FB0E9D46E6009A6919 /* common.xcconfig */,
				4D7BF2FC0E9D46E6009A6919 /* debug.xcconfig */,
				4D7BF2FD0E9D46E6009A6919 /* executable.xcconfig */,
				4D7BF2FE0E9D46E6009A6919 /* release.xcconfig */,
				4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */,
			);
			name = Configuration;
			path = ../build;
			sourceTree = "<group>";
		};
		4D7BF3070E9D477E009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7BF3060E9D477E009A6919 /* libbrowser.a */,
				4D7BFC1A0E9D4CB9009A6919 /* libcommon.a */,
				4D640CEB0EAE86BD00EBCFC0 /* librenderer.a */,
				4D7BFB2D0E9D4BE5009A6919 /* unit_tests */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BF3380E9D479D009A6919 /* chrome */ = {
			isa = PBXGroup;
			children = (
				4D7BF8210E9D47FB009A6919 /* browser */,
				4D7BFB840E9D4C6F009A6919 /* common */,
				4D640CB90EAE863E00EBCFC0 /* renderer */,
				4D7BFCEB0E9D4DDA009A6919 /* test */,
			);
			name = chrome;
			sourceTree = "<group>";
		};
		4D7BF8210E9D47FB009A6919 /* browser */ = {
			isa = PBXGroup;
			children = (
				E48FB9600EC4EA270052B72B /* automation */,
				4D7BF9C80E9D48B0009A6919 /* download */,
				4D7BF9E30E9D48E0009A6919 /* history */,
				4D7BFA670E9D4981009A6919 /* net */,
				4D7BFA7E0E9D49A4009A6919 /* printing */,
				4D7BFACD0E9D49DE009A6919 /* safe_browsing */,
				4D7BF8220E9D4839009A6919 /* about_internets_status_view.cc */,
				4D7BF8230E9D4839009A6919 /* about_internets_status_view.h */,
				4D7BF8240E9D4839009A6919 /* alternate_nav_url_fetcher.cc */,
				4D7BF8250E9D4839009A6919 /* alternate_nav_url_fetcher.h */,
				4D7BF8260E9D4839009A6919 /* app_modal_dialog_queue.cc */,
				4D7BF8270E9D4839009A6919 /* app_modal_dialog_queue.h */,
				4D7BF8280E9D4839009A6919 /* back_forward_menu_model.cc */,
				4D7BF8290E9D4839009A6919 /* back_forward_menu_model.h */,
				4D7BF82A0E9D4839009A6919 /* back_forward_menu_model_unittest.cc */,
				4D7BF82B0E9D4839009A6919 /* base_history_model.cc */,
				4D7BF82C0E9D4839009A6919 /* base_history_model.h */,
				4D7BF8300E9D4839009A6919 /* browser.cc */,
				4D7BF8310E9D4839009A6919 /* browser.h */,
				4D7BF8320E9D4839009A6919 /* browser_about_handler.cc */,
				4D7BF8330E9D4839009A6919 /* browser_about_handler.h */,
				4D7BF8340E9D4839009A6919 /* browser_accessibility.cc */,
				4D7BF8350E9D4839009A6919 /* browser_accessibility.h */,
				4D7BF8360E9D4839009A6919 /* browser_accessibility_manager.cc */,
				4D7BF8370E9D4839009A6919 /* browser_accessibility_manager.h */,
				4D7BF8380E9D4839009A6919 /* browser_commands.cc */,
				4D7BF8390E9D4839009A6919 /* browser_focus_uitest.cc */,
				4D7BF83A0E9D4839009A6919 /* browser_init.cc */,
				4D7BF83B0E9D4839009A6919 /* browser_init.h */,
				4D7BF83C0E9D4839009A6919 /* browser_list.cc */,
				4D7BF83D0E9D4839009A6919 /* browser_list.h */,
				4D7BF83E0E9D4839009A6919 /* browser_main.cc */,
				4D7BF83F0E9D4839009A6919 /* browser_prefs.cc */,
				4D7BF8400E9D4839009A6919 /* browser_prefs.h */,
				4D7BF8410E9D4839009A6919 /* browser_process.cc */,
				4D7BF8420E9D4839009A6919 /* browser_process.h */,
				4D7BF8430E9D4839009A6919 /* browser_process_impl.cc */,
				4D7BF8440E9D4839009A6919 /* browser_process_impl.h */,
				4D7BF8450E9D4839009A6919 /* browser_resources.h */,
				4D7BF8460E9D4839009A6919 /* browser_shutdown.cc */,
				4D7BF8470E9D4839009A6919 /* browser_shutdown.h */,
				4D640D120EAE87BD00EBCFC0 /* browser_trial.cc */,
				4D640D130EAE87BD00EBCFC0 /* browser_trial.h */,
				4D7BF8480E9D4839009A6919 /* browser_type.h */,
				4D7BF8490E9D4839009A6919 /* browser_uitest.cc */,
				4D7BF84A0E9D4839009A6919 /* browser_url_handler.cc */,
				4D7BF84B0E9D4839009A6919 /* browser_url_handler.h */,
				4D7BF84C0E9D4839009A6919 /* browser_window.cc */,
				4D7BF84D0E9D4839009A6919 /* browser_window.h */,
				4D7BF84E0E9D4839009A6919 /* browsing_data_remover.cc */,
				4D7BF84F0E9D4839009A6919 /* browsing_data_remover.h */,
				4D7BF8500E9D4839009A6919 /* browsing_instance.cc */,
				4D7BF8510E9D4839009A6919 /* browsing_instance.h */,
				4D7BF8520E9D4839009A6919 /* cache_manager_host.cc */,
				4D7BF8530E9D4839009A6919 /* cache_manager_host.h */,
				4D7BF8540E9D4839009A6919 /* cache_manager_host_unittest.cc */,
				4D7BF8550E9D4839009A6919 /* cancelable_request.cc */,
				4D7BF8560E9D4839009A6919 /* cancelable_request.h */,
				4D7BF8570E9D4839009A6919 /* cert_store.cc */,
				4D7BF8580E9D4839009A6919 /* cert_store.h */,
				4D7BF8590E9D4839009A6919 /* character_encoding.cc */,
				4D7BF85A0E9D4839009A6919 /* character_encoding.h */,
				4D7BF85B0E9D4839009A6919 /* chrome_plugin_browsing_context.cc */,
				4D7BF85C0E9D4839009A6919 /* chrome_plugin_browsing_context.h */,
				4D7BF85D0E9D4839009A6919 /* chrome_plugin_host.cc */,
				4D7BF85E0E9D4839009A6919 /* chrome_plugin_host.h */,
				4D7BF85F0E9D4839009A6919 /* chrome_thread.cc */,
				4D7BF8600E9D4839009A6919 /* chrome_thread.h */,
				4D7BF8610E9D4839009A6919 /* chrome_thread_unittest.cc */,
				4D7BF8620E9D4839009A6919 /* constrained_window.h */,
				4D7BF8630E9D4839009A6919 /* controller.cc */,
				4D7BF8640E9D4839009A6919 /* controller.h */,
				4D7BF8650E9D4839009A6919 /* controller_unittest.cc */,
				4D7BF8660E9D4839009A6919 /* crash_recovery_uitest.cc */,
				4D7BF8670E9D4839009A6919 /* cross_site_request_manager.cc */,
				4D7BF8680E9D4839009A6919 /* cross_site_request_manager.h */,
				4D7BF8690E9D4839009A6919 /* dom_operation_notification_details.h */,
				4D7BF86A0E9D4839009A6919 /* drag_utils.cc */,
				4D7BF86B0E9D4839009A6919 /* drag_utils.h */,
				4D7BF86C0E9D4839009A6919 /* encoding_menu_controller_delegate.cc */,
				4D7BF86D0E9D4839009A6919 /* encoding_menu_controller_delegate.h */,
				4D7BF86E0E9D4839009A6919 /* encryptor.cc */,
				4D7BF86F0E9D4839009A6919 /* encryptor.h */,
				4D7BF8700E9D4839009A6919 /* encryptor_unittest.cc */,
				4D7BF8710E9D4839009A6919 /* errorpage_uitest.cc */,
				4D7BF8720E9D4839009A6919 /* external_protocol_handler.cc */,
				4D7BF8730E9D4839009A6919 /* external_protocol_handler.h */,
				4D7BF8740E9D4839009A6919 /* external_tab_container.cc */,
				4D7BF8750E9D4839009A6919 /* external_tab_container.h */,
				4D7BF8760E9D4839009A6919 /* fav_icon_helper.cc */,
				4D7BF8770E9D4839009A6919 /* fav_icon_helper.h */,
				4D7BF87E0E9D4839009A6919 /* find_notification_details.h */,
				4D7BF87F0E9D4839009A6919 /* first_run.cc */,
				4D7BF8800E9D4839009A6919 /* first_run.h */,
				4D7BF8810E9D4839009A6919 /* frame_util.cc */,
				4D7BF8820E9D4839009A6919 /* frame_util.h */,
				4D7BF8830E9D4839009A6919 /* gears_integration.cc */,
				4D7BF8840E9D4839009A6919 /* gears_integration.h */,
				4D7BF8850E9D4839009A6919 /* google_update.cc */,
				4D7BF8860E9D4839009A6919 /* google_update.h */,
				4D7BF8870E9D4839009A6919 /* google_url_tracker.cc */,
				4D7BF8880E9D4839009A6919 /* google_url_tracker.h */,
				4D7BF8890E9D4839009A6919 /* google_url_tracker_unittest.cc */,
				4D7BF88A0E9D4839009A6919 /* google_util.cc */,
				4D7BF88B0E9D4839009A6919 /* google_util.h */,
				4D640D140EAE87BD00EBCFC0 /* greasemonkey_master.cc */,
				4D640D150EAE87BD00EBCFC0 /* greasemonkey_master.h */,
				4D7BF88C0E9D4839009A6919 /* history_model.cc */,
				4D7BF88D0E9D4839009A6919 /* history_model.h */,
				4D7BF88E0E9D4839009A6919 /* history_tab_ui.cc */,
				4D7BF88F0E9D4839009A6919 /* history_tab_ui.h */,
				4D7BF8900E9D4839009A6919 /* history_view.cc */,
				4D7BF8910E9D4839009A6919 /* history_view.h */,
				4D7BF8920E9D4839009A6919 /* iaccessible_function_ids.h */,
				4D7BF8930E9D4839009A6919 /* icon_loader.cc */,
				4D7BF8940E9D4839009A6919 /* icon_loader.h */,
				4D7BF8950E9D4839009A6919 /* icon_manager.cc */,
				4D7BF8960E9D4839009A6919 /* icon_manager.h */,
				4D7BF8970E9D4839009A6919 /* ie7_password.cc */,
				4D7BF8980E9D4839009A6919 /* ie7_password.h */,
				4D7BF8990E9D4839009A6919 /* iframe_uitest.cc */,
				4D7BF89A0E9D4839009A6919 /* images_uitest.cc */,
				4D7BF89B0E9D4839009A6919 /* ime_input.cc */,
				4D7BF89C0E9D4839009A6919 /* ime_input.h */,
				4D640D160EAE87BD00EBCFC0 /* interstitial_page.cc */,
				4D640D170EAE87BD00EBCFC0 /* interstitial_page.h */,
				4D7BF89E0E9D4839009A6919 /* interstitial_page_uitest.cc */,
				4D7BF89F0E9D4839009A6919 /* ipc_status_view.cc */,
				4D7BF8A00E9D4839009A6919 /* ipc_status_view.h */,
				4D7BF8A10E9D4839009A6919 /* jankometer.cc */,
				4D7BF8A20E9D4839009A6919 /* jankometer.h */,
				4D7BF8A30E9D4839009A6919 /* js_before_unload_handler.cc */,
				4D7BF8A40E9D4839009A6919 /* js_before_unload_handler.h */,
				4D7BF8A50E9D4839009A6919 /* jsmessage_box_handler.cc */,
				4D7BF8A60E9D4839009A6919 /* jsmessage_box_handler.h */,
				4D7BF8A70E9D4839009A6919 /* load_from_memory_cache_details.h */,
				4D7BF8A80E9D4839009A6919 /* load_notification_details.h */,
				4D7BF8A90E9D4839009A6919 /* locale_tests_uitest.cc */,
				4D7BF8AA0E9D4839009A6919 /* login_prompt.cc */,
				4D7BF8AB0E9D4839009A6919 /* login_prompt.h */,
				4D7BF8AC0E9D4839009A6919 /* login_prompt_uitest.cc */,
				4D7BF8AD0E9D4839009A6919 /* memory_details.cc */,
				4D7BF8AE0E9D4839009A6919 /* memory_details.h */,
				4D7BF8AF0E9D4839009A6919 /* meta_table_helper.cc */,
				4D7BF8B00E9D4839009A6919 /* meta_table_helper.h */,
				4D7BF8B10E9D4839009A6919 /* metrics_log.cc */,
				4D7BF8B20E9D4839009A6919 /* metrics_log.h */,
				4D7BF8B30E9D4839009A6919 /* metrics_log_unittest.cc */,
				4D7BF8B40E9D4839009A6919 /* metrics_response.cc */,
				4D7BF8B50E9D4839009A6919 /* metrics_response.h */,
				4D7BF8B60E9D4839009A6919 /* metrics_response_unittest.cc */,
				4D7BF8B70E9D4839009A6919 /* metrics_service.cc */,
				4D7BF8B80E9D4839009A6919 /* metrics_service.h */,
				4D7BF8B90E9D4839009A6919 /* metrics_service_uitest.cc */,
				4D7BF8BA0E9D4839009A6919 /* modal_html_dialog_delegate.cc */,
				4D7BF8BB0E9D4839009A6919 /* modal_html_dialog_delegate.h */,
				4D7BF8BC0E9D4839009A6919 /* native_ui_contents.cc */,
				4D7BF8BD0E9D4839009A6919 /* native_ui_contents.h */,
				4D7BF8BE0E9D4839009A6919 /* navigation_controller.cc */,
				4D7BF8BF0E9D4839009A6919 /* navigation_controller.h */,
				4D7BF8C00E9D4839009A6919 /* navigation_controller_unittest.cc */,
				4D7BF8C10E9D4839009A6919 /* navigation_entry.cc */,
				4D7BF8C20E9D4839009A6919 /* navigation_entry.h */,
				4D7BF8D00E9D4839009A6919 /* network_status_view.cc */,
				4D7BF8D10E9D4839009A6919 /* network_status_view.h */,
				4D7BF8D20E9D4839009A6919 /* options_window.h */,
				4D7BF8D30E9D4839009A6919 /* page_navigator.h */,
				4D7BF8D40E9D4839009A6919 /* page_state.cc */,
				4D7BF8D50E9D4839009A6919 /* page_state.h */,
				4D7BF8D60E9D4839009A6919 /* password_form_manager.cc */,
				4D7BF8D70E9D4839009A6919 /* password_form_manager.h */,
				4D7BF8D80E9D4839009A6919 /* password_form_manager_unittest.cc */,
				4D7BF8D90E9D4839009A6919 /* password_manager.cc */,
				4D7BF8DA0E9D4839009A6919 /* password_manager.h */,
				4D7BF8DB0E9D4839009A6919 /* plugin_installer.cc */,
				4D7BF8DC0E9D4839009A6919 /* plugin_installer.h */,
				4D7BF8DD0E9D4839009A6919 /* plugin_process_host.cc */,
				4D7BF8DE0E9D4839009A6919 /* plugin_process_host.h */,
				4D7BF8DF0E9D4839009A6919 /* plugin_process_info.h */,
				4D7BF8E00E9D4839009A6919 /* plugin_service.cc */,
				4D7BF8E10E9D4839009A6919 /* plugin_service.h */,
				4D7BF8E20E9D4839009A6919 /* profile.cc */,
				4D7BF8E30E9D4839009A6919 /* profile.h */,
				4D7BF8E40E9D4839009A6919 /* profile_manager.cc */,
				4D7BF8E50E9D4839009A6919 /* profile_manager.h */,
				4D7BF8E60E9D4839009A6919 /* profile_manager_unittest.cc */,
				4D7BF8E70E9D4839009A6919 /* provisional_load_details.cc */,
				4D7BF8E80E9D4839009A6919 /* provisional_load_details.h */,
				4D7BF8E90E9D4839009A6919 /* render_process_host.cc */,
				4D7BF8EA0E9D4839009A6919 /* render_process_host.h */,
				4D7BF8EB0E9D4839009A6919 /* render_view_context_menu.cc */,
				4D7BF8EC0E9D4839009A6919 /* render_view_context_menu.h */,
				4D7BF8ED0E9D4839009A6919 /* render_view_context_menu_controller.cc */,
				4D7BF8EE0E9D4839009A6919 /* render_view_context_menu_controller.h */,
				4D7BF8EF0E9D4839009A6919 /* render_view_host.cc */,
				4D7BF8F00E9D4839009A6919 /* render_view_host.h */,
				4D7BF8F10E9D4839009A6919 /* render_view_host_delegate.h */,
				4D7BF8F20E9D4839009A6919 /* render_view_host_manager.cc */,
				4D7BF8F30E9D4839009A6919 /* render_view_host_manager.h */,
				4D7BF8F40E9D4839009A6919 /* render_widget_helper.cc */,
				4D7BF8F50E9D4839009A6919 /* render_widget_helper.h */,
				4D7BF8F60E9D4839009A6919 /* render_widget_host.cc */,
				4D7BF8F70E9D4839009A6919 /* render_widget_host.h */,
				4D7BF8FA0E9D4839009A6919 /* render_widget_host_view.h */,
				4D640D180EAE87BD00EBCFC0 /* render_widget_host_view_win.cc */,
				4D640D190EAE87BD00EBCFC0 /* render_widget_host_view_win.h */,
				4D7BF8FB0E9D4839009A6919 /* renderer_security_policy.cc */,
				4D7BF8FC0E9D4839009A6919 /* renderer_security_policy.h */,
				4D7BF8FD0E9D4839009A6919 /* renderer_security_policy_unittest.cc */,
				4D7BF8FE0E9D4839009A6919 /* repost_form_warning_dialog.cc */,
				4D7BF8FF0E9D4839009A6919 /* repost_form_warning_dialog.h */,
				4D7BF9000E9D4839009A6919 /* resource_dispatcher_host.cc */,
				4D7BF9010E9D4839009A6919 /* resource_dispatcher_host.h */,
				4D7BF9020E9D4839009A6919 /* resource_dispatcher_host_uitest.cc */,
				4D7BF9030E9D4839009A6919 /* resource_dispatcher_host_unittest.cc */,
				4D7BF9040E9D4839009A6919 /* resource_message_filter.cc */,
				4D7BF9050E9D4839009A6919 /* resource_message_filter.h */,
				4D7BF9060E9D4839009A6919 /* resource_request_details.h */,
				4D7BF9070E9D4839009A6919 /* sandbox_policy.cc */,
				4D7BF9080E9D4839009A6919 /* sandbox_policy.h */,
				4D7BF9090E9D4839009A6919 /* sanity_uitest.cc */,
				4D7BF90A0E9D4839009A6919 /* security_style.h */,
				4D7BF90B0E9D4839009A6919 /* session_backend.cc */,
				4D7BF90C0E9D4839009A6919 /* session_backend.h */,
				4D7BF90D0E9D4839009A6919 /* session_backend_unittest.cc */,
				4D7BF90E0E9D4839009A6919 /* session_crashed_view.cc */,
				4D7BF90F0E9D4839009A6919 /* session_crashed_view.h */,
				4D7BF9100E9D4839009A6919 /* session_history_uitest.cc */,
				4D7BF9110E9D4839009A6919 /* session_id.h */,
				4D7BF9120E9D4839009A6919 /* session_restore.cc */,
				4D7BF9130E9D4839009A6919 /* session_restore.h */,
				4D7BF9140E9D4839009A6919 /* session_restore_uitest.cc */,
				4D7BF9150E9D4839009A6919 /* session_service.cc */,
				4D7BF9160E9D4839009A6919 /* session_service.h */,
				4D7BF9170E9D4839009A6919 /* session_service_test_helper.cc */,
				4D7BF9180E9D4839009A6919 /* session_service_test_helper.h */,
				4D7BF9190E9D4839009A6919 /* session_service_unittest.cc */,
				4D7BF91A0E9D4839009A6919 /* session_startup_pref.cc */,
				4D7BF91B0E9D4839009A6919 /* session_startup_pref.h */,
				4D7BF91C0E9D4839009A6919 /* shell_dialogs.h */,
				4D7BF91D0E9D4839009A6919 /* shell_integration.cc */,
				4D7BF91E0E9D4839009A6919 /* shell_integration.h */,
				4D7BF91F0E9D4839009A6919 /* site_instance.cc */,
				4D7BF9200E9D4839009A6919 /* site_instance.h */,
				4D7BF9210E9D4839009A6919 /* site_instance_unittest.cc */,
				4D7BF9220E9D4839009A6919 /* spellcheck_worditerator.cc */,
				4D7BF9230E9D4839009A6919 /* spellcheck_worditerator.h */,
				4D7BF9240E9D4839009A6919 /* spellchecker.cc */,
				4D7BF9250E9D4839009A6919 /* spellchecker.h */,
				4D7BF9260E9D4839009A6919 /* ssl_blocking_page.cc */,
				4D7BF9270E9D4839009A6919 /* ssl_blocking_page.h */,
				4D7BF9280E9D4839009A6919 /* ssl_error_info.cc */,
				4D7BF9290E9D4839009A6919 /* ssl_error_info.h */,
				4D7BF92A0E9D4839009A6919 /* ssl_manager.cc */,
				4D7BF92B0E9D4839009A6919 /* ssl_manager.h */,
				4D7BF92C0E9D4839009A6919 /* ssl_policy.cc */,
				4D7BF92D0E9D4839009A6919 /* ssl_policy.h */,
				4D7BF92E0E9D4839009A6919 /* ssl_uitest.cc */,
				4D7BF92F0E9D4839009A6919 /* status_view.cc */,
				4D7BF9300E9D4839009A6919 /* status_view.h */,
				4D7BF9310E9D4839009A6919 /* suspend_controller.cc */,
				4D7BF9320E9D4839009A6919 /* suspend_controller.h */,
				4D7BF9330E9D4839009A6919 /* tab_contents.cc */,
				4D7BF9340E9D4839009A6919 /* tab_contents.h */,
				4D7BF9350E9D4839009A6919 /* tab_contents_delegate.h */,
				4D7BF9360E9D4839009A6919 /* tab_contents_factory.cc */,
				4D7BF9370E9D4839009A6919 /* tab_contents_factory.h */,
				4D7BF9380E9D4839009A6919 /* tab_contents_type.h */,
				4D7BF9390E9D4839009A6919 /* tab_restore_service.cc */,
				4D7BF93A0E9D4839009A6919 /* tab_restore_service.h */,
				4D7BF93B0E9D4839009A6919 /* tab_restore_uitest.cc */,
				4D7BF93C0E9D4839009A6919 /* tab_util.cc */,
				4D7BF93D0E9D4839009A6919 /* tab_util.h */,
				4D7BF93E0E9D4839009A6919 /* task_manager.cc */,
				4D7BF93F0E9D4839009A6919 /* task_manager.h */,
				4D7BF9400E9D4839009A6919 /* task_manager_resource_providers.cc */,
				4D7BF9410E9D4839009A6919 /* task_manager_resource_providers.h */,
				4D7BF9420E9D4839009A6919 /* template_url.cc */,
				4D7BF9430E9D4839009A6919 /* template_url.h */,
				4D7BF9440E9D4839009A6919 /* template_url_fetcher.cc */,
				4D7BF9450E9D4839009A6919 /* template_url_fetcher.h */,
				4D7BF9460E9D4839009A6919 /* template_url_model.cc */,
				4D7BF9470E9D4839009A6919 /* template_url_model.h */,
				4D7BF9480E9D4839009A6919 /* template_url_model_unittest.cc */,
				4D7BF9490E9D4839009A6919 /* template_url_parser.cc */,
				4D7BF94A0E9D4839009A6919 /* template_url_parser.h */,
				4D7BF94B0E9D4839009A6919 /* template_url_parser_unittest.cc */,
				4D7BF94C0E9D4839009A6919 /* template_url_prepopulate_data.cc */,
				4D7BF94D0E9D4839009A6919 /* template_url_prepopulate_data.h */,
				4D640D1A0EAE87BD00EBCFC0 /* template_url_prepopulate_data_unittest.cc */,
				4D7BF94E0E9D4839009A6919 /* template_url_unittest.cc */,
				4D7BF94F0E9D4839009A6919 /* toolbar_model.cc */,
				4D7BF9500E9D4839009A6919 /* toolbar_model.h */,
				4D7BF9510E9D4839009A6919 /* url_fetcher.cc */,
				4D7BF9520E9D4839009A6919 /* url_fetcher.h */,
				4D7BF9530E9D4839009A6919 /* url_fetcher_protect.cc */,
				4D7BF9540E9D4839009A6919 /* url_fetcher_protect.h */,
				4D7BF9550E9D4839009A6919 /* url_fetcher_unittest.cc */,
				4D7BF9560E9D4839009A6919 /* url_fixer_upper.cc */,
				4D7BF9570E9D4839009A6919 /* url_fixer_upper.h */,
				4D7BF9580E9D4839009A6919 /* url_fixer_upper_unittest.cc */,
				4D7BF9590E9D4839009A6919 /* user_metrics.cc */,
				4D7BF95A0E9D4839009A6919 /* user_metrics.h */,
				4D7BF95B0E9D4839009A6919 /* view_ids.h */,
				4D7BF95C0E9D4839009A6919 /* view_source_contents.cc */,
				4D7BF95D0E9D4839009A6919 /* view_source_contents.h */,
				4D7BF95E0E9D4839009A6919 /* view_source_uitest.cc */,
				4D7BF95F0E9D4839009A6919 /* visitedlink_master.cc */,
				4D7BF9600E9D4839009A6919 /* visitedlink_master.h */,
				4D7BF9610E9D4839009A6919 /* visitedlink_perftest.cc */,
				4D7BF9620E9D4839009A6919 /* visitedlink_unittest.cc */,
				4D7BF9630E9D4839009A6919 /* web_app.cc */,
				4D7BF9640E9D4839009A6919 /* web_app.h */,
				4D7BF9650E9D4839009A6919 /* web_app_icon_manager.cc */,
				4D7BF9660E9D4839009A6919 /* web_app_icon_manager.h */,
				4D7BF9670E9D4839009A6919 /* web_app_launcher.cc */,
				4D7BF9680E9D4839009A6919 /* web_app_launcher.h */,
				4D7BF9690E9D4839009A6919 /* web_contents.cc */,
				4D7BF96A0E9D4839009A6919 /* web_contents.h */,
				4D7BF96B0E9D4839009A6919 /* web_contents_unittest.cc */,
				4D640D1B0EAE87BD00EBCFC0 /* web_contents_view.cc */,
				4D640D1C0EAE87BD00EBCFC0 /* web_contents_view.h */,
				4D640D1D0EAE87BD00EBCFC0 /* web_contents_view_win.cc */,
				4D640D1E0EAE87BD00EBCFC0 /* web_contents_view_win.h */,
				4D7BF96C0E9D4839009A6919 /* web_drag_source.cc */,
				4D7BF96D0E9D4839009A6919 /* web_drag_source.h */,
				4D7BF96E0E9D4839009A6919 /* web_drop_target.cc */,
				4D7BF96F0E9D4839009A6919 /* web_drop_target.h */,
				4D7BF9700E9D4839009A6919 /* window_sizer.cc */,
				4D7BF9710E9D4839009A6919 /* window_sizer.h */,
				4D7BF9720E9D4839009A6919 /* window_sizer_unittest.cc */,
			);
			path = browser;
			sourceTree = "<group>";
		};
		4D7BF9C80E9D48B0009A6919 /* download */ = {
			isa = PBXGroup;
			children = (
				4D7BF9C90E9D48CE009A6919 /* download_exe.cc */,
				4D7BF9CA0E9D48CE009A6919 /* download_file.cc */,
				4D7BF9CB0E9D48CE009A6919 /* download_file.h */,
				4D7BF9CC0E9D48CE009A6919 /* download_item_model.cc */,
				4D7BF9CD0E9D48CE009A6919 /* download_item_model.h */,
				4D7BF9CE0E9D48CE009A6919 /* download_manager.cc */,
				4D7BF9CF0E9D48CE009A6919 /* download_manager.h */,
				4D7BF9D00E9D48CE009A6919 /* download_manager_unittest.cc */,
				4D640D1F0EAE881300EBCFC0 /* download_request_manager.cc */,
				4D640D200EAE881300EBCFC0 /* download_request_manager.h */,
				4D640D210EAE881300EBCFC0 /* download_request_manager_unittest.cc */,
				4D7BF9D10E9D48CE009A6919 /* download_uitest.cc */,
				4D7BF9D20E9D48CE009A6919 /* download_util.cc */,
				4D7BF9D30E9D48CE009A6919 /* download_util.h */,
				4D7BF9D40E9D48CE009A6919 /* save_file.cc */,
				4D7BF9D50E9D48CE009A6919 /* save_file.h */,
				4D7BF9D60E9D48CE009A6919 /* save_file_manager.cc */,
				4D7BF9D70E9D48CE009A6919 /* save_file_manager.h */,
				4D7BF9D80E9D48CE009A6919 /* save_item.cc */,
				4D7BF9D90E9D48CE009A6919 /* save_item.h */,
				4D7BF9DA0E9D48CE009A6919 /* save_package.cc */,
				4D7BF9DB0E9D48CE009A6919 /* save_package.h */,
				4D7BF9DC0E9D48CE009A6919 /* save_package_unittest.cc */,
				4D7BF9DD0E9D48CE009A6919 /* save_page_model.cc */,
				4D7BF9DE0E9D48CE009A6919 /* save_page_model.h */,
				4D7BF9DF0E9D48CE009A6919 /* save_page_uitest.cc */,
				4D7BF9E00E9D48CE009A6919 /* save_types.h */,
			);
			path = download;
			sourceTree = "<group>";
		};
		4D7BF9E30E9D48E0009A6919 /* history */ = {
			isa = PBXGroup;
			children = (
				4D7BF9E40E9D48F7009A6919 /* archived_database.cc */,
				4D7BF9E50E9D48F7009A6919 /* archived_database.h */,
				4D7BF9E60E9D48F7009A6919 /* download_database.cc */,
				4D7BF9E70E9D48F7009A6919 /* download_database.h */,
				4D7BF9E80E9D48F7009A6919 /* download_types.h */,
				4D7BF9E90E9D48F7009A6919 /* expire_history_backend.cc */,
				4D7BF9EA0E9D48F7009A6919 /* expire_history_backend.h */,
				4D7BF9EB0E9D48F7009A6919 /* expire_history_backend_unittest.cc */,
				4D7BF9EC0E9D48F7009A6919 /* history.cc */,
				4D7BF9ED0E9D48F7009A6919 /* history.h */,
				4D7BF9EE0E9D48F7009A6919 /* history_backend.cc */,
				4D7BF9EF0E9D48F7009A6919 /* history_backend.h */,
				4D7BF9F00E9D48F7009A6919 /* history_backend_unittest.cc */,
				4D7BF9F10E9D48F7009A6919 /* history_database.cc */,
				4D7BF9F20E9D48F7009A6919 /* history_database.h */,
				4D7BF9F30E9D48F7009A6919 /* history_marshaling.h */,
				4D7BF9F40E9D48F7009A6919 /* history_notifications.h */,
				4D7BF9F50E9D48F7009A6919 /* history_querying_unittest.cc */,
				4D7BF9F60E9D48F7009A6919 /* history_types.cc */,
				4D7BF9F70E9D48F7009A6919 /* history_types.h */,
				4D7BF9F80E9D48F7009A6919 /* history_types_unittest.cc */,
				4D7BF9F90E9D48F7009A6919 /* history_unittest.cc */,
				4D7BF9FA0E9D48F7009A6919 /* in_memory_database.cc */,
				4D7BF9FB0E9D48F7009A6919 /* in_memory_database.h */,
				4D7BF9FC0E9D48F7009A6919 /* in_memory_history_backend.cc */,
				4D7BF9FD0E9D48F7009A6919 /* in_memory_history_backend.h */,
				4D7BF9FE0E9D48F7009A6919 /* page_usage_data.cc */,
				4D7BF9FF0E9D48F7009A6919 /* page_usage_data.h */,
				4D7BFA000E9D48F7009A6919 /* query_parser.cc */,
				4D7BFA010E9D48F7009A6919 /* query_parser.h */,
				4D7BFA020E9D48F7009A6919 /* query_parser_unittest.cc */,
				4D7BFA030E9D48F7009A6919 /* redirect_uitest.cc */,
				4D7BFA040E9D48F7009A6919 /* snippet.cc */,
				4D7BFA050E9D48F7009A6919 /* snippet.h */,
				4D7BFA060E9D48F7009A6919 /* snippet_unittest.cc */,
				4D7BFA070E9D48F7009A6919 /* starred_url_database.cc */,
				4D7BFA080E9D48F7009A6919 /* starred_url_database.h */,
				4D7BFA090E9D48F7009A6919 /* starred_url_database_unittest.cc */,
				4D7BFA0A0E9D48F7009A6919 /* text_database.cc */,
				4D7BFA0B0E9D48F7009A6919 /* text_database.h */,
				4D7BFA0C0E9D48F7009A6919 /* text_database_manager.cc */,
				4D7BFA0D0E9D48F7009A6919 /* text_database_manager.h */,
				4D7BFA0E0E9D48F7009A6919 /* text_database_manager_unittest.cc */,
				4D7BFA0F0E9D48F7009A6919 /* text_database_unittest.cc */,
				4D7BFA100E9D48F7009A6919 /* thumbnail_database.cc */,
				4D7BFA110E9D48F7009A6919 /* thumbnail_database.h */,
				4D7BFA120E9D48F7009A6919 /* thumbnail_database_unittest.cc */,
				4D7BFA130E9D48F7009A6919 /* url_database.cc */,
				4D7BFA140E9D48F7009A6919 /* url_database.h */,
				4D7BFA150E9D48F7009A6919 /* url_database_unittest.cc */,
				4D7BFA160E9D48F7009A6919 /* visit_database.cc */,
				4D7BFA170E9D48F7009A6919 /* visit_database.h */,
				4D7BFA180E9D48F7009A6919 /* visit_database_unittest.cc */,
				4D7BFA190E9D48F7009A6919 /* visit_tracker.cc */,
				4D7BFA1A0E9D48F7009A6919 /* visit_tracker.h */,
				4D7BFA1B0E9D48F7009A6919 /* visit_tracker_unittest.cc */,
				4D7BFA1C0E9D48F7009A6919 /* visitsegment_database.cc */,
				4D7BFA1D0E9D48F7009A6919 /* visitsegment_database.h */,
			);
			path = history;
			sourceTree = "<group>";
		};
		4D7BFA670E9D4981009A6919 /* net */ = {
			isa = PBXGroup;
			children = (
				4D7BFA680E9D4981009A6919 /* dns_global.cc */,
				4D7BFA690E9D4981009A6919 /* dns_global.h */,
				4D7BFA6A0E9D4981009A6919 /* dns_host_info.cc */,
				4D7BFA6B0E9D4981009A6919 /* dns_host_info.h */,
				4D7BFA6C0E9D4981009A6919 /* dns_host_info_unittest.cc */,
				4D7BFA6D0E9D4981009A6919 /* dns_master.cc */,
				4D7BFA6E0E9D4981009A6919 /* dns_master.h */,
				4D7BFA6F0E9D4981009A6919 /* dns_master_unittest.cc */,
				4D7BFA700E9D4981009A6919 /* dns_slave.cc */,
				4D7BFA710E9D4981009A6919 /* dns_slave.h */,
				4D7BFA720E9D4981009A6919 /* sdch_dictionary_fetcher.cc */,
				4D7BFA730E9D4981009A6919 /* sdch_dictionary_fetcher.h */,
			);
			path = net;
			sourceTree = "<group>";
		};
		4D7BFA7E0E9D49A4009A6919 /* printing */ = {
			isa = PBXGroup;
			children = (
				4D7BFA7F0E9D49A4009A6919 /* page_number.cc */,
				4D7BFA800E9D49A4009A6919 /* page_number.h */,
				4D7BFA810E9D49A4009A6919 /* page_number_unittest.cc */,
				4D7BFA820E9D49A4009A6919 /* page_overlays.cc */,
				4D7BFA830E9D49A4009A6919 /* page_overlays.h */,
				4D7BFA840E9D49A4009A6919 /* page_overlays_unittest.cc */,
				4D7BFA850E9D49A4009A6919 /* page_range.cc */,
				4D7BFA860E9D49A4009A6919 /* page_range.h */,
				4D7BFA870E9D49A4009A6919 /* page_range_unittest.cc */,
				4D7BFA880E9D49A4009A6919 /* page_setup.cc */,
				4D7BFA890E9D49A4009A6919 /* page_setup.h */,
				4D7BFA8A0E9D49A4009A6919 /* page_setup_unittest.cc */,
				4D7BFA8B0E9D49A4009A6919 /* print_job.cc */,
				4D7BFA8C0E9D49A4009A6919 /* print_job.h */,
				4D7BFA8D0E9D49A4009A6919 /* print_job_manager.cc */,
				4D7BFA8E0E9D49A4009A6919 /* print_job_manager.h */,
				4D7BFA8F0E9D49A4009A6919 /* print_job_worker.cc */,
				4D7BFA900E9D49A4009A6919 /* print_job_worker.h */,
				4D7BFA910E9D49A4009A6919 /* print_job_worker_owner.h */,
				4D7BFA920E9D49A4009A6919 /* print_settings.cc */,
				4D7BFA930E9D49A4009A6919 /* print_settings.h */,
				4D7BFA940E9D49A4009A6919 /* print_view_manager.cc */,
				4D7BFA950E9D49A4009A6919 /* print_view_manager.h */,
				4D7BFA960E9D49A4009A6919 /* printed_document.cc */,
				4D7BFA970E9D49A4009A6919 /* printed_document.h */,
				4D7BFA980E9D49A4009A6919 /* printed_page.cc */,
				4D7BFA990E9D49A4009A6919 /* printed_page.h */,
				4D7BFA9A0E9D49A4009A6919 /* printed_pages_source.h */,
				4D7BFA9B0E9D49A4009A6919 /* printer_query.cc */,
				4D7BFA9C0E9D49A4009A6919 /* printer_query.h */,
				4D7BFA9D0E9D49A4009A6919 /* printing_layout_uitest.cc */,
				4D7BFA9E0E9D49A4009A6919 /* printing_test.h */,
				4D7BFA9F0E9D49A4009A6919 /* units.cc */,
				4D7BFAA00E9D49A4009A6919 /* units.h */,
				4D7BFAA10E9D49A4009A6919 /* units_unittest.cc */,
				4D7BFAA20E9D49A4009A6919 /* win_printing_context.cc */,
				4D7BFAA30E9D49A4009A6919 /* win_printing_context.h */,
				4D7BFAA40E9D49A4009A6919 /* win_printing_context_unittest.cc */,
			);
			path = printing;
			sourceTree = "<group>";
		};
		4D7BFACD0E9D49DE009A6919 /* safe_browsing */ = {
			isa = PBXGroup;
			children = (
				4D7BFACE0E9D49DE009A6919 /* bloom_filter.cc */,
				4D7BFACF0E9D49DE009A6919 /* bloom_filter.h */,
				4D7BFAD00E9D49DE009A6919 /* bloom_filter_unittest.cc */,
				4D7BFAD10E9D49DE009A6919 /* chunk_range.cc */,
				4D7BFAD20E9D49DE009A6919 /* chunk_range.h */,
				4D7BFAD30E9D49DE009A6919 /* chunk_range_unittest.cc */,
				4D7BFAD40E9D49DE009A6919 /* database_perftest.cc */,
				4D7BFAD50E9D49DE009A6919 /* protocol_manager.cc */,
				4D7BFAD60E9D49DE009A6919 /* protocol_manager.h */,
				4D7BFAD70E9D49DE009A6919 /* protocol_manager_unittest.cc */,
				4D7BFAD80E9D49DE009A6919 /* protocol_parser.cc */,
				4D7BFAD90E9D49DE009A6919 /* protocol_parser.h */,
				4D7BFADA0E9D49DE009A6919 /* protocol_parser_unittest.cc */,
				4D7BFADB0E9D49DE009A6919 /* safe_browsing_blocking_page.cc */,
				4D7BFADC0E9D49DE009A6919 /* safe_browsing_blocking_page.h */,
				4D7BFADD0E9D49DE009A6919 /* safe_browsing_database.cc */,
				4D7BFADE0E9D49DE009A6919 /* safe_browsing_database.h */,
				4D7BFADF0E9D49DE009A6919 /* safe_browsing_database_bloom.cc */,
				4D7BFAE00E9D49DE009A6919 /* safe_browsing_database_bloom.h */,
				4D7BFAE10E9D49DE009A6919 /* safe_browsing_database_impl.cc */,
				4D7BFAE20E9D49DE009A6919 /* safe_browsing_database_impl.h */,
				4D7BFAE40E9D49DE009A6919 /* safe_browsing_database_unittest.cc */,
				4D7BFAE50E9D49DE009A6919 /* safe_browsing_service.cc */,
				4D7BFAE60E9D49DE009A6919 /* safe_browsing_service.h */,
				4D7BFAE70E9D49DE009A6919 /* safe_browsing_util.cc */,
				4D7BFAE80E9D49DE009A6919 /* safe_browsing_util.h */,
				4D7BFAE90E9D49DE009A6919 /* safe_browsing_util_unittest.cc */,
			);
			path = safe_browsing;
			sourceTree = "<group>";
		};
		4D7BFB090E9D4BA1009A6919 /* Projects */ = {
			isa = PBXGroup;
			children = (
				4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */,
				4D7BFF4C0E9D53C1009A6919 /* bzip2.xcodeproj */,
				4D7BFF5F0E9D540F009A6919 /* googleurl.xcodeproj */,
				4D7BFF3C0E9D538D009A6919 /* gtest.xcodeproj */,
				4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */,
				4D7BFF460E9D53B4009A6919 /* libevent.xcodeproj */,
				4D7BFF2F0E9D5362009A6919 /* libjpeg.xcodeproj */,
				4D7BFB0B0E9D4BBF009A6919 /* libxml.xcodeproj */,
				4D7B00580E9D54AA009A6919 /* modp_b64.xcodeproj */,
				4D7B00340E9D5464009A6919 /* net.xcodeproj */,
				4D7B002E0E9D5459009A6919 /* skia.xcodeproj */,
				4D7B01390E9D56BC009A6919 /* sqlite.xcodeproj */,
				4DDC64500EAE392400FB5EBE /* zlib.xcodeproj */,
			);
			name = Projects;
			path = ..;
			sourceTree = "<group>";
		};
		4D7BFB0C0E9D4BBF009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7BFB230E9D4BBF009A6919 /* libxml.a */,
				4D7BFB250E9D4BBF009A6919 /* xmlcatalog */,
				4D7BFB270E9D4BBF009A6919 /* xmllint */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BFB840E9D4C6F009A6919 /* common */ = {
			isa = PBXGroup;
			children = (
				4D7BFCA80E9D4D5D009A6919 /* gfx */,
				4D7BFCBD0E9D4D6B009A6919 /* net */,
				4D7BFB850E9D4C9F009A6919 /* animation.cc */,
				4D7BFB860E9D4C9F009A6919 /* animation.h */,
				4D7BFB870E9D4C9F009A6919 /* animation_unittest.cc */,
				4D7BFB880E9D4C9F009A6919 /* bzip2_unittest.cc */,
				4D7BFB890E9D4C9F009A6919 /* child_process.cc */,
				4D7BFB8A0E9D4C9F009A6919 /* child_process.h */,
				4D7BFB8B0E9D4C9F009A6919 /* chrome_constants.cc */,
				4D7BFB8C0E9D4C9F009A6919 /* chrome_constants.h */,
				4D7BFB8D0E9D4C9F009A6919 /* chrome_counters.cc */,
				4D7BFB8E0E9D4C9F009A6919 /* chrome_counters.h */,
				4D7BFB8F0E9D4C9F009A6919 /* chrome_paths.cc */,
				4D7BFB900E9D4C9F009A6919 /* chrome_paths.h */,
				4D7BFB910E9D4C9F009A6919 /* chrome_plugin_api.h */,
				4D7BFB920E9D4C9F009A6919 /* chrome_plugin_lib.cc */,
				4D7BFB930E9D4C9F009A6919 /* chrome_plugin_lib.h */,
				4D7BFB940E9D4C9F009A6919 /* chrome_plugin_unittest.cc */,
				4D7BFB950E9D4C9F009A6919 /* chrome_plugin_util.cc */,
				4D7BFB960E9D4C9F009A6919 /* chrome_plugin_util.h */,
				4D7BFB970E9D4C9F009A6919 /* chrome_process_filter.cc */,
				4D7BFB980E9D4C9F009A6919 /* chrome_process_filter.h */,
				4D7BFB990E9D4C9F009A6919 /* chrome_switches.cc */,
				4D7BFB9A0E9D4C9F009A6919 /* chrome_switches.h */,
				4D7BFB9B0E9D4C9F009A6919 /* classfactory.cc */,
				4D7BFB9C0E9D4C9F009A6919 /* classfactory.h */,
				4D7BFB9D0E9D4C9F009A6919 /* clipboard_service.cc */,
				4D7BFB9E0E9D4C9F009A6919 /* clipboard_service.h */,
				4D7BFB9F0E9D4C9F009A6919 /* common_glue.cc */,
				4D7BFBA00E9D4C9F009A6919 /* common_resources.h */,
				4D7BFBA10E9D4C9F009A6919 /* debug_flags.cc */,
				4D7BFBA20E9D4C9F009A6919 /* debug_flags.h */,
				4D7BFBA30E9D4C9F009A6919 /* drag_drop_types.cc */,
				4D7BFBA40E9D4C9F009A6919 /* drag_drop_types.h */,
				4D7BFBA50E9D4C9F009A6919 /* env_vars.cc */,
				4D7BFBA60E9D4C9F009A6919 /* env_vars.h */,
				4D7BFBA70E9D4C9F009A6919 /* filter_policy.h */,
				4D7BFBA80E9D4C9F009A6919 /* gears_api.h */,
				4D7BFBA90E9D4C9F009A6919 /* ipc_channel.cc */,
				4D7BFBAA0E9D4C9F009A6919 /* ipc_channel.h */,
				4D7BFBAB0E9D4C9F009A6919 /* ipc_channel_proxy.cc */,
				4D7BFBAC0E9D4C9F009A6919 /* ipc_channel_proxy.h */,
				4D7BFBAD0E9D4C9F009A6919 /* ipc_fuzzing_tests.cc */,
				4D7BFBAE0E9D4C9F009A6919 /* ipc_logging.cc */,
				4D7BFBAF0E9D4C9F009A6919 /* ipc_logging.h */,
				4D7BFBB00E9D4C9F009A6919 /* ipc_message.cc */,
				4D7BFBB10E9D4C9F009A6919 /* ipc_message.h */,
				4D7BFBB20E9D4C9F009A6919 /* ipc_message_macros.h */,
				4D7BFBB30E9D4C9F009A6919 /* ipc_message_unittest.cc */,
				4D7BFBB40E9D4C9F009A6919 /* ipc_message_utils.cc */,
				4D7BFBB50E9D4C9F009A6919 /* ipc_message_utils.h */,
				4D7BFBB60E9D4C9F009A6919 /* ipc_sync_channel.cc */,
				4D7BFBB70E9D4C9F009A6919 /* ipc_sync_channel.h */,
				4D7BFBB80E9D4C9F009A6919 /* ipc_sync_channel_unittest.cc */,
				4D7BFBB90E9D4C9F009A6919 /* ipc_sync_channel_unittest.h */,
				4D7BFBBA0E9D4C9F009A6919 /* ipc_sync_message.cc */,
				4D7BFBBB0E9D4C9F009A6919 /* ipc_sync_message.h */,
				4D7BFBBC0E9D4C9F009A6919 /* ipc_sync_message_unittest.cc */,
				4D7BFBBD0E9D4C9F009A6919 /* ipc_sync_message_unittest.h */,
				4D7BFBBE0E9D4C9F009A6919 /* ipc_tests.cc */,
				4D7BFBBF0E9D4C9F009A6919 /* ipc_tests.h */,
				4D7BFBC00E9D4C9F009A6919 /* jpeg_codec.cc */,
				4D7BFBC10E9D4C9F009A6919 /* jpeg_codec.h */,
				4D7BFBC20E9D4C9F009A6919 /* jpeg_codec_unittest.cc */,
				4D7BFBC30E9D4C9F009A6919 /* json_value_serializer.cc */,
				4D7BFBC40E9D4C9F009A6919 /* json_value_serializer.h */,
				4D7BFBC50E9D4C9F009A6919 /* json_value_serializer_perftest.cc */,
				4D7BFBC60E9D4C9F009A6919 /* json_value_serializer_unittest.cc */,
				4D7BFBC70E9D4C9F009A6919 /* jstemplate_builder.cc */,
				4D7BFBC80E9D4C9F009A6919 /* jstemplate_builder.h */,
				4D7BFBC90E9D4C9F009A6919 /* l10n_util.cc */,
				4D7BFBCA0E9D4C9F009A6919 /* l10n_util.h */,
				4D7BFBCB0E9D4C9F009A6919 /* l10n_util_unittest.cc */,
				4D7BFBCC0E9D4C9F009A6919 /* libxml_utils.cc */,
				4D7BFBCD0E9D4C9F009A6919 /* libxml_utils.h */,
				4D7BFBCE0E9D4C9F009A6919 /* logging_chrome.cc */,
				4D7BFBCF0E9D4C9F009A6919 /* logging_chrome.h */,
				4D7BFBD00E9D4C9F009A6919 /* logging_chrome_uitest.cc */,
				B562C8410ED49C830077A23F /* mach_ipc_mac.h */,
				B562C8420ED49C830077A23F /* mach_ipc_mac.mm */,
				B54BD8FA0ED622C00093FD54 /* mach_message_source_mac.cc */,
				B54BD8FB0ED622C00093FD54 /* mach_message_source_mac.h */,
				4D7BFBD10E9D4C9F009A6919 /* message_router.cc */,
				4D7BFBD20E9D4C9F009A6919 /* message_router.h */,
				4D7BFBD30E9D4C9F009A6919 /* mru_cache.h */,
				4D7BFBD40E9D4C9F009A6919 /* mru_cache_unittest.cc */,
				4D7BFBD50E9D4C9F009A6919 /* navigation_types.h */,
				4D7BFBD60E9D4C9F009A6919 /* notification_details.h */,
				4D7BFBD70E9D4C9F009A6919 /* notification_registrar.cc */,
				4D7BFBD80E9D4C9F009A6919 /* notification_registrar.h */,
				4D7BFBD90E9D4C9F009A6919 /* notification_service.cc */,
				4D7BFBDA0E9D4C9F009A6919 /* notification_service.h */,
				4D7BFBDB0E9D4C9F009A6919 /* notification_service_unittest.cc */,
				4D7BFBDC0E9D4C9F009A6919 /* notification_source.h */,
				4D7BFBDD0E9D4C9F009A6919 /* notification_types.h */,
				4D7BFBDE0E9D4C9F009A6919 /* os_exchange_data.cc */,
				4D7BFBDF0E9D4C9F009A6919 /* os_exchange_data.h */,
				4D7BFBE00E9D4C9F009A6919 /* os_exchange_data_unittest.cc */,
				4D7BFBE10E9D4C9F009A6919 /* page_transition_types.h */,
				4D640D220EAE885500EBCFC0 /* page_zoom.h */,
				4D7BFBE20E9D4C9F009A6919 /* plugin_messages.cc */,
				4D7BFBE30E9D4C9F009A6919 /* plugin_messages.h */,
				4D7BFBE40E9D4C9F009A6919 /* plugin_messages_internal.h */,
				4D7BFBE50E9D4C9F009A6919 /* pref_member.cc */,
				4D7BFBE60E9D4C9F009A6919 /* pref_member.h */,
				4D7BFBE70E9D4C9F009A6919 /* pref_member_unittest.cc */,
				4D7BFBE80E9D4C9F009A6919 /* pref_names.cc */,
				4D7BFBE90E9D4C9F009A6919 /* pref_names.h */,
				4D7BFBEA0E9D4C9F009A6919 /* pref_service.cc */,
				4D7BFBEB0E9D4C9F009A6919 /* pref_service.h */,
				4D7BFBEC0E9D4C9F009A6919 /* pref_service_uitest.cc */,
				4D7BFBED0E9D4C9F009A6919 /* pref_service_unittest.cc */,
				4D7BFBEE0E9D4C9F009A6919 /* process_watcher.cc */,
				4D7BFBEF0E9D4C9F009A6919 /* process_watcher.h */,
				4D7BFBF00E9D4C9F009A6919 /* ref_counted_util.h */,
				4D7BFBF10E9D4C9F009A6919 /* render_messages.cc */,
				4D7BFBF20E9D4C9F009A6919 /* render_messages.h */,
				4D7BFBF30E9D4C9F009A6919 /* render_messages_internal.h */,
				4D7BFBF40E9D4C9F009A6919 /* resource_bundle.cc */,
				4D7BFBF50E9D4C9F009A6919 /* resource_bundle.h */,
				4D7BFBF60E9D4C9F009A6919 /* resource_dispatcher.cc */,
				4D7BFBF70E9D4C9F009A6919 /* resource_dispatcher.h */,
				4D7BFBF80E9D4C9F009A6919 /* resource_dispatcher_unittest.cc */,
				4D7BFBF90E9D4C9F009A6919 /* scoped_vector.h */,
				4D7BFBFA0E9D4C9F009A6919 /* security_filter_peer.cc */,
				4D7BFBFB0E9D4C9F009A6919 /* security_filter_peer.h */,
				4D7BFBFC0E9D4C9F009A6919 /* slide_animation.cc */,
				4D7BFBFD0E9D4C9F009A6919 /* slide_animation.h */,
				4D7BFBFE0E9D4C9F009A6919 /* sqlite_compiled_statement.cc */,
				4D7BFBFF0E9D4C9F009A6919 /* sqlite_compiled_statement.h */,
				4D7BFC000E9D4C9F009A6919 /* sqlite_utils.cc */,
				4D7BFC010E9D4C9F009A6919 /* sqlite_utils.h */,
				4D7BFC020E9D4C9F009A6919 /* stl_util-inl.h */,
				4D7BFC030E9D4C9F009A6919 /* task_queue.cc */,
				4D7BFC040E9D4C9F009A6919 /* task_queue.h */,
				4D7BFC050E9D4C9F009A6919 /* text_zoom.h */,
				4D7BFC060E9D4C9F009A6919 /* throb_animation.cc */,
				4D7BFC070E9D4C9F009A6919 /* throb_animation.h */,
				4D7BFC080E9D4C9F009A6919 /* thumbnail_score.cc */,
				4D7BFC090E9D4C9F009A6919 /* thumbnail_score.h */,
				4D7BFC0A0E9D4C9F009A6919 /* time_format.cc */,
				4D7BFC0B0E9D4C9F009A6919 /* time_format.h */,
				4D7BFC0C0E9D4C9F009A6919 /* time_format_unittest.cc */,
				4D7BFC0D0E9D4C9F009A6919 /* visitedlink_common.cc */,
				4D7BFC0E0E9D4C9F009A6919 /* visitedlink_common.h */,
				4D7BFC0F0E9D4C9F009A6919 /* win_safe_util.cc */,
				4D7BFC100E9D4C9F009A6919 /* win_safe_util.h */,
				4D7BFC110E9D4C9F009A6919 /* win_util.cc */,
				4D7BFC120E9D4C9F009A6919 /* win_util.h */,
				4D7BFC130E9D4C9F009A6919 /* win_util_unittest.cc */,
				4D7BFC140E9D4C9F009A6919 /* worker_thread_ticker.cc */,
				4D7BFC150E9D4C9F009A6919 /* worker_thread_ticker.h */,
			);
			path = common;
			sourceTree = "<group>";
		};
		4D7BFCA80E9D4D5D009A6919 /* gfx */ = {
			isa = PBXGroup;
			children = (
				4D7BFCA90E9D4D5D009A6919 /* chrome_canvas.cc */,
				4D7BFCAA0E9D4D5D009A6919 /* chrome_canvas.h */,
				4D7BFCAB0E9D4D5D009A6919 /* chrome_font.cc */,
				4D7BFCAC0E9D4D5D009A6919 /* chrome_font.h */,
				4D7BFCAD0E9D4D5D009A6919 /* color_utils.cc */,
				4D7BFCAE0E9D4D5D009A6919 /* color_utils.h */,
				4D7BFCAF0E9D4D5D009A6919 /* emf.cc */,
				4D7BFCB00E9D4D5D009A6919 /* emf.h */,
				4D7BFCB10E9D4D5D009A6919 /* emf_unittest.cc */,
				4D7BFCB20E9D4D5D009A6919 /* favicon_size.h */,
				4D7BFCB30E9D4D5D009A6919 /* icon_util.cc */,
				4D7BFCB40E9D4D5D009A6919 /* icon_util.h */,
				4D7BFCB50E9D4D5D009A6919 /* icon_util_unittest.cc */,
				4D7BFCB60E9D4D5D009A6919 /* insets.h */,
				4D7BFCB70E9D4D5D009A6919 /* path.cc */,
				4D7BFCB80E9D4D5D009A6919 /* path.h */,
				4D7BFCB90E9D4D5D009A6919 /* url_elider.cc */,
				4D7BFCBA0E9D4D5D009A6919 /* url_elider.h */,
				4D7BFCBB0E9D4D5D009A6919 /* url_elider_unittest.cc */,
				4D7BFCBC0E9D4D5D009A6919 /* utils.h */,
			);
			path = gfx;
			sourceTree = "<group>";
		};
		4D7BFCBD0E9D4D6B009A6919 /* net */ = {
			isa = PBXGroup;
			children = (
				4D7BFCBE0E9D4D6B009A6919 /* cache_uitest.cc */,
				4D7BFCBF0E9D4D6B009A6919 /* cookie_monster_sqlite.cc */,
				4D7BFCC00E9D4D6B009A6919 /* cookie_monster_sqlite.h */,
				4D7BFCC10E9D4D6B009A6919 /* dns.h */,
				4D7BFCC20E9D4D6B009A6919 /* url_request_intercept_job.cc */,
				4D7BFCC30E9D4D6B009A6919 /* url_request_intercept_job.h */,
				4D7BFCC40E9D4D6B009A6919 /* url_util_unittest.cc */,
			);
			path = net;
			sourceTree = "<group>";
		};
		4D7BFCEB0E9D4DDA009A6919 /* test */ = {
			isa = PBXGroup;
			children = (
				4D7BFCED0E9D4DFE009A6919 /* unit */,
			);
			path = test;
			sourceTree = "<group>";
		};
		4D7BFCED0E9D4DFE009A6919 /* unit */ = {
			isa = PBXGroup;
			children = (
				4D7BFCEE0E9D4DFE009A6919 /* chrome_test_suite.h */,
				4D7BFCEF0E9D4DFE009A6919 /* run_all_unittests.cc */,
			);
			path = unit;
			sourceTree = "<group>";
		};
		4D7BFDBF0E9D525B009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7BFDC70E9D525B009A6919 /* libbase.a */,
				4D7BFDC90E9D525B009A6919 /* libbase_gfx.a */,
				4D7BFDCB0E9D525B009A6919 /* base_unittests */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BFDD00E9D527E009A6919 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				4D7BFF7A0E9D5449009A6919 /* AppKit.framework */,
				4D7BFDD10E9D5295009A6919 /* CoreFoundation.framework */,
				4D7BFE820E9D532E009A6919 /* Foundation.framework */,
			);
			name = Frameworks;
			sourceTree = SDKROOT;
		};
		4D7BFE5C0E9D52DC009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7BFE670E9D52DC009A6919 /* genccode */,
				4D7BFE690E9D52DC009A6919 /* libicudata.a */,
				4D7BFE6B0E9D52DC009A6919 /* libicudata_stub.a */,
				4D7BFE6D0E9D52DC009A6919 /* libicui18n.a */,
				4D7BFE6F0E9D52DC009A6919 /* libicutu.a */,
				4D7BFE710E9D52DC009A6919 /* libicuuc.a */,
				4D7BFE730E9D52DC009A6919 /* icupkg */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BFF300E9D5362009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7BFF370E9D5362009A6919 /* libjpeg.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BFF3D0E9D538D009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7BFF410E9D538D009A6919 /* libgtest.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BFF470E9D53B4009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7BFF4B0E9D53B4009A6919 /* libevent.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BFF4D0E9D53C1009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7BFF540E9D53C1009A6919 /* libbzip2.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BFF600E9D540F009A6919 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D7BFF6E0E9D540F009A6919 /* libgoogleurl.a */,
				4D7BFF700E9D540F009A6919 /* googleurl_unittests */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4DC6498D0EA92BE10017C876 /* base */ = {
			isa = PBXGroup;
			children = (
				4DC6498E0EA92BF90017C876 /* platform_test_mac.mm */,
			);
			name = base;
			path = ../base;
			sourceTree = "<group>";
		};
		4DDC64510EAE392400FB5EBE /* Products */ = {
			isa = PBXGroup;
			children = (
				4DDC64550EAE392400FB5EBE /* libzlib.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		E48FB9600EC4EA270052B72B /* automation */ = {
			isa = PBXGroup;
			children = (
				E48FB9610EC4EA270052B72B /* automation_autocomplete_edit_tracker.h */,
				E48FB9620EC4EA270052B72B /* automation_browser_tracker.h */,
				E48FB9630EC4EA270052B72B /* automation_constrained_window_tracker.h */,
				E48FB9640EC4EA270052B72B /* automation_provider.cc */,
				E48FB9650EC4EA270052B72B /* automation_provider.h */,
				E48FB9660EC4EA270052B72B /* automation_provider_list.cc */,
				E48FB9670EC4EA270052B72B /* automation_provider_list.h */,
				E48FB9680EC4EA270052B72B /* automation_resource_tracker.cc */,
				E48FB9690EC4EA270052B72B /* automation_resource_tracker.h */,
				E48FB96A0EC4EA270052B72B /* automation_tab_tracker.h */,
				E48FB96B0EC4EA270052B72B /* automation_window_tracker.h */,
				E48FB96C0EC4EA270052B72B /* ui_controls.cc */,
				E48FB96D0EC4EA270052B72B /* ui_controls.h */,
				E48FB96E0EC4EA270052B72B /* url_request_failed_dns_job.cc */,
				E48FB96F0EC4EA270052B72B /* url_request_failed_dns_job.h */,
				E48FB9700EC4EA270052B72B /* url_request_mock_http_job.cc */,
				E48FB9710EC4EA270052B72B /* url_request_mock_http_job.h */,
				E48FB9720EC4EA270052B72B /* url_request_mock_net_error_job.cc */,
				E48FB9730EC4EA270052B72B /* url_request_mock_net_error_job.h */,
				E48FB9740EC4EA270052B72B /* url_request_slow_download_job.cc */,
				E48FB9750EC4EA270052B72B /* url_request_slow_download_job.h */,
			);
			path = automation;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		4D640CE70EAE86BD00EBCFC0 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		4D640CEA0EAE86BD00EBCFC0 /* renderer */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 4D640D110EAE86FC00EBCFC0 /* Build configuration list for PBXNativeTarget "renderer" */;
			buildPhases = (
				4D640CE70EAE86BD00EBCFC0 /* Headers */,
				4D640CE80EAE86BD00EBCFC0 /* Sources */,
				4D640CE90EAE86BD00EBCFC0 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = renderer;
			productName = renderer;
			productReference = 4D640CEB0EAE86BD00EBCFC0 /* librenderer.a */;
			productType = "com.apple.product-type.library.static";
		};
		4D7BF3050E9D477E009A6919 /* browser */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 4D7BF30A0E9D477E009A6919 /* Build configuration list for PBXNativeTarget "browser" */;
			buildPhases = (
				4D7BF3030E9D477E009A6919 /* Sources */,
				4D7BF3040E9D477E009A6919 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				4D7BFB290E9D4BC9009A6919 /* PBXTargetDependency */,
			);
			name = browser;
			productName = browser;
			productReference = 4D7BF3060E9D477E009A6919 /* libbrowser.a */;
			productType = "com.apple.product-type.library.static";
		};
		4D7BFB2C0E9D4BE5009A6919 /* unit_tests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 4D7BFB340E9D4C06009A6919 /* Build configuration list for PBXNativeTarget "unit_tests" */;
			buildPhases = (
				4D7BFB2A0E9D4BE5009A6919 /* Sources */,
				4D7BFB2B0E9D4BE5009A6919 /* Frameworks */,
				4D3D54770EC3A4D800650CA0 /* Strip If Needed */,
			);
			buildRules = (
			);
			dependencies = (
				4D7BFCDA0E9D4DAF009A6919 /* PBXTargetDependency */,
				4D7BFCDC0E9D4DAF009A6919 /* PBXTargetDependency */,
				4D7BFDCD0E9D5262009A6919 /* PBXTargetDependency */,
				4D7BFF5D0E9D53F3009A6919 /* PBXTargetDependency */,
				4D7BFF560E9D53D2009A6919 /* PBXTargetDependency */,
				4D7BFF720E9D5416009A6919 /* PBXTargetDependency */,
				4D7BFF430E9D5394009A6919 /* PBXTargetDependency */,
				4D7B01470E9D56DF009A6919 /* PBXTargetDependency */,
				4D7BFE7F0E9D5310009A6919 /* PBXTargetDependency */,
				4D7BFE780E9D52EB009A6919 /* PBXTargetDependency */,
				4D7BFF580E9D53D2009A6919 /* PBXTargetDependency */,
				4D7BFF390E9D536D009A6919 /* PBXTargetDependency */,
				4DDC644A0EAE38F500FB5EBE /* PBXTargetDependency */,
				4D7B00600E9D54BF009A6919 /* PBXTargetDependency */,
				4D7B00560E9D5487009A6919 /* PBXTargetDependency */,
				4D7B00540E9D5487009A6919 /* PBXTargetDependency */,
				4D7B01440E9D56CC009A6919 /* PBXTargetDependency */,
				4DDC64570EAE393800FB5EBE /* PBXTargetDependency */,
			);
			name = unit_tests;
			productName = unit_tests;
			productReference = 4D7BFB2D0E9D4BE5009A6919 /* unit_tests */;
			productType = "com.apple.product-type.tool";
		};
		4D7BFC190E9D4CB9009A6919 /* common */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 4D7BFC250E9D4CDF009A6919 /* Build configuration list for PBXNativeTarget "common" */;
			buildPhases = (
				4D7BFC170E9D4CB9009A6919 /* Sources */,
				4D7BFC180E9D4CB9009A6919 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				4D7BFC1E0E9D4CCA009A6919 /* PBXTargetDependency */,
			);
			name = common;
			productName = common;
			productReference = 4D7BFC1A0E9D4CB9009A6919 /* libcommon.a */;
			productType = "com.apple.product-type.library.static";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		4D7BF2E90E9D46A4009A6919 /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = 4D7BF2EC0E9D46A4009A6919 /* Build configuration list for PBXProject "chrome" */;
			compatibilityVersion = "Xcode 3.1";
			hasScannedForEncodings = 0;
			mainGroup = 4D7BF2E70E9D46A4009A6919;
			productRefGroup = 4D7BF3070E9D477E009A6919 /* Products */;
			projectDirPath = "";
			projectReferences = (
				{
					ProductGroup = 4D7BFDBF0E9D525B009A6919 /* Products */;
					ProjectRef = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
				},
				{
					ProductGroup = 4D7BFF4D0E9D53C1009A6919 /* Products */;
					ProjectRef = 4D7BFF4C0E9D53C1009A6919 /* bzip2.xcodeproj */;
				},
				{
					ProductGroup = 4D7BFF600E9D540F009A6919 /* Products */;
					ProjectRef = 4D7BFF5F0E9D540F009A6919 /* googleurl.xcodeproj */;
				},
				{
					ProductGroup = 4D7BFF3D0E9D538D009A6919 /* Products */;
					ProjectRef = 4D7BFF3C0E9D538D009A6919 /* gtest.xcodeproj */;
				},
				{
					ProductGroup = 4D7BFE5C0E9D52DC009A6919 /* Products */;
					ProjectRef = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
				},
				{
					ProductGroup = 4D7BFF470E9D53B4009A6919 /* Products */;
					ProjectRef = 4D7BFF460E9D53B4009A6919 /* libevent.xcodeproj */;
				},
				{
					ProductGroup = 4D7BFF300E9D5362009A6919 /* Products */;
					ProjectRef = 4D7BFF2F0E9D5362009A6919 /* libjpeg.xcodeproj */;
				},
				{
					ProductGroup = 4D7BFB0C0E9D4BBF009A6919 /* Products */;
					ProjectRef = 4D7BFB0B0E9D4BBF009A6919 /* libxml.xcodeproj */;
				},
				{
					ProductGroup = 4D7B00590E9D54AA009A6919 /* Products */;
					ProjectRef = 4D7B00580E9D54AA009A6919 /* modp_b64.xcodeproj */;
				},
				{
					ProductGroup = 4D7B00350E9D5464009A6919 /* Products */;
					ProjectRef = 4D7B00340E9D5464009A6919 /* net.xcodeproj */;
				},
				{
					ProductGroup = 4D7B002F0E9D5459009A6919 /* Products */;
					ProjectRef = 4D7B002E0E9D5459009A6919 /* skia.xcodeproj */;
				},
				{
					ProductGroup = 4D7B013A0E9D56BC009A6919 /* Products */;
					ProjectRef = 4D7B01390E9D56BC009A6919 /* sqlite.xcodeproj */;
				},
				{
					ProductGroup = 4DDC64510EAE392400FB5EBE /* Products */;
					ProjectRef = 4DDC64500EAE392400FB5EBE /* zlib.xcodeproj */;
				},
			);
			projectRoot = "";
			targets = (
				4D7BFB040E9D4B8C009A6919 /* All */,
				4D7BF3050E9D477E009A6919 /* browser */,
				4D7BFC190E9D4CB9009A6919 /* common */,
				4D640CEA0EAE86BD00EBCFC0 /* renderer */,
				4D7BFB2C0E9D4BE5009A6919 /* unit_tests */,
				4D7B014C0E9D572C009A6919 /* run_unit_tests */,
			);
		};
/* End PBXProject section */

/* Begin PBXReferenceProxy section */
		4D7B00330E9D5459009A6919 /* libskia.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libskia.a;
			remoteRef = 4D7B00320E9D5459009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7B004E0E9D5464009A6919 /* libnet.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libnet.a;
			remoteRef = 4D7B004D0E9D5464009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7B00500E9D5464009A6919 /* net_unittests */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.executable";
			path = net_unittests;
			remoteRef = 4D7B004F0E9D5464009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7B005D0E9D54AA009A6919 /* libmodp_b64.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libmodp_b64.a;
			remoteRef = 4D7B005C0E9D54AA009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7B01410E9D56BC009A6919 /* libsqlite.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libsqlite.a;
			remoteRef = 4D7B01400E9D56BC009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFB230E9D4BBF009A6919 /* libxml.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libxml.a;
			remoteRef = 4D7BFB220E9D4BBF009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFB250E9D4BBF009A6919 /* xmlcatalog */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.executable";
			path = xmlcatalog;
			remoteRef = 4D7BFB240E9D4BBF009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFB270E9D4BBF009A6919 /* xmllint */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.executable";
			path = xmllint;
			remoteRef = 4D7BFB260E9D4BBF009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFDC70E9D525B009A6919 /* libbase.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libbase.a;
			remoteRef = 4D7BFDC60E9D525B009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFDC90E9D525B009A6919 /* libbase_gfx.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libbase_gfx.a;
			remoteRef = 4D7BFDC80E9D525B009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFDCB0E9D525B009A6919 /* base_unittests */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.executable";
			path = base_unittests;
			remoteRef = 4D7BFDCA0E9D525B009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFE670E9D52DC009A6919 /* genccode */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.executable";
			path = genccode;
			remoteRef = 4D7BFE660E9D52DC009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFE690E9D52DC009A6919 /* libicudata.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicudata.a;
			remoteRef = 4D7BFE680E9D52DC009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFE6B0E9D52DC009A6919 /* libicudata_stub.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicudata_stub.a;
			remoteRef = 4D7BFE6A0E9D52DC009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFE6D0E9D52DC009A6919 /* libicui18n.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicui18n.a;
			remoteRef = 4D7BFE6C0E9D52DC009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFE6F0E9D52DC009A6919 /* libicutu.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicutu.a;
			remoteRef = 4D7BFE6E0E9D52DC009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFE710E9D52DC009A6919 /* libicuuc.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicuuc.a;
			remoteRef = 4D7BFE700E9D52DC009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFE730E9D52DC009A6919 /* icupkg */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.executable";
			path = icupkg;
			remoteRef = 4D7BFE720E9D52DC009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFF370E9D5362009A6919 /* libjpeg.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libjpeg.a;
			remoteRef = 4D7BFF360E9D5362009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFF410E9D538D009A6919 /* libgtest.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libgtest.a;
			remoteRef = 4D7BFF400E9D538D009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFF4B0E9D53B4009A6919 /* libevent.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libevent.a;
			remoteRef = 4D7BFF4A0E9D53B4009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFF540E9D53C1009A6919 /* libbzip2.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libbzip2.a;
			remoteRef = 4D7BFF530E9D53C1009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFF6E0E9D540F009A6919 /* libgoogleurl.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libgoogleurl.a;
			remoteRef = 4D7BFF6D0E9D540F009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4D7BFF700E9D540F009A6919 /* googleurl_unittests */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.executable";
			path = googleurl_unittests;
			remoteRef = 4D7BFF6F0E9D540F009A6919 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		4DDC64550EAE392400FB5EBE /* libzlib.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libzlib.a;
			remoteRef = 4DDC64540EAE392400FB5EBE /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
/* End PBXReferenceProxy section */

/* Begin PBXShellScriptBuildPhase section */
		4D3D54770EC3A4D800650CA0 /* Strip If Needed */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Strip If Needed";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "exec \"${XCODEPROJ_DEPTH}/build/mac/strip_from_xcode\"\n";
			showEnvVarsInLog = 0;
		};
		4D7B014B0E9D572C009A6919 /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "set -ex\nRUNNABLE_PRODUCT=$(echo \"${PRODUCT_NAME}\" | sed -e s/^run_//)\nexec \"${BUILT_PRODUCTS_DIR}/${RUNNABLE_PRODUCT}\"\n";
			showEnvVarsInLog = 0;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		4D640CE80EAE86BD00EBCFC0 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D640CF30EAE86E300EBCFC0 /* about_handler.cc in Sources */,
				4D640CF40EAE86EA00EBCFC0 /* render_dns_queue.cc in Sources */,
				4D640CF50EAE86EF00EBCFC0 /* visitedlink_slave.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D7BF3030E9D477E009A6919 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D7BFA1E0E9D48FD009A6919 /* archived_database.cc in Sources */,
				4D7BFAEE0E9D49E5009A6919 /* bloom_filter.cc in Sources */,
				4D7BF97B0E9D4857009A6919 /* browser_process.cc in Sources */,
				4D7BF98D0E9D485B009A6919 /* cancelable_request.cc in Sources */,
				4D7BF9920E9D485F009A6919 /* chrome_thread.cc in Sources */,
				4D7BFAEF0E9D49E7009A6919 /* chunk_range.cc in Sources */,
				4D7BF9970E9D4863009A6919 /* cross_site_request_manager.cc in Sources */,
				4D7BFA7C0E9D4994009A6919 /* dns_host_info.cc in Sources */,
				4D7BF9990E9D486B009A6919 /* google_url_tracker.cc in Sources */,
				4D7BF99E0E9D486F009A6919 /* google_util.cc in Sources */,
				4D7BFA1F0E9D4901009A6919 /* history_types.cc in Sources */,
				4D7BFA240E9D4905009A6919 /* in_memory_database.cc in Sources */,
				4D7BFA260E9D4908009A6919 /* in_memory_history_backend.cc in Sources */,
				4D7BF9A00E9D4875009A6919 /* meta_table_helper.cc in Sources */,
				4D7BF9A50E9D487B009A6919 /* metrics_response.cc in Sources */,
				4D7BFABB0E9D49C1009A6919 /* page_number.cc in Sources */,
				4D7BFAC60E9D49CB009A6919 /* page_range.cc in Sources */,
				4D7BFAC40E9D49C6009A6919 /* page_setup.cc in Sources */,
				4D7BF9AC0E9D4880009A6919 /* page_state.cc in Sources */,
				4D7BFA280E9D490C009A6919 /* page_usage_data.cc in Sources */,
				4D7BFAF10E9D49EB009A6919 /* protocol_parser.cc in Sources */,
				4D7BF9B10E9D4888009A6919 /* renderer_security_policy.cc in Sources */,
				4D7BFAF30E9D49EF009A6919 /* safe_browsing_database.cc in Sources */,
				E48FB9590EC4E9C10052B72B /* safe_browsing_database_bloom.cc in Sources */,
				E48FB95C0EC4E9DD0052B72B /* safe_browsing_database_impl.cc in Sources */,
				4D7BFAF40E9D49F3009A6919 /* safe_browsing_service.cc in Sources */,
				4D7BFAF60E9D49F6009A6919 /* safe_browsing_util.cc in Sources */,
				4D7BF9E10E9D48D6009A6919 /* save_file.cc in Sources */,
				4D7BF9B60E9D4894009A6919 /* session_startup_pref.cc in Sources */,
				4D7BFA2D0E9D4910009A6919 /* snippet.cc in Sources */,
				4D7BFA320E9D4912009A6919 /* text_database.cc in Sources */,
				4D7BFA370E9D4915009A6919 /* text_database_manager.cc in Sources */,
				4D7BFA390E9D4918009A6919 /* thumbnail_database.cc in Sources */,
				4D7BFAC80E9D49D1009A6919 /* units.cc in Sources */,
				4D7BF9BD0E9D489B009A6919 /* url_fetcher_protect.cc in Sources */,
				E48FB9760EC4EA320052B72B /* url_request_failed_dns_job.cc in Sources */,
				E48FB9790EC4EA410052B72B /* url_request_mock_http_job.cc in Sources */,
				E48FB97A0EC4EA4A0052B72B /* url_request_mock_net_error_job.cc in Sources */,
				E48FB97C0EC4EA540052B72B /* url_request_slow_download_job.cc in Sources */,
				4D7BF9C20E9D489E009A6919 /* user_metrics.cc in Sources */,
				4D7BFA3E0E9D491B009A6919 /* visit_database.cc in Sources */,
				4D7BFA430E9D491E009A6919 /* visit_tracker.cc in Sources */,
				4D7BFA480E9D4922009A6919 /* visitsegment_database.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D7BFB2A0E9D4BE5009A6919 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D7BFCDF0E9D4DC4009A6919 /* animation_unittest.cc in Sources */,
				4D7BFB6D0E9D4C51009A6919 /* bloom_filter_unittest.cc in Sources */,
				4D7BFCE10E9D4DC8009A6919 /* bzip2_unittest.cc in Sources */,
				4D7BFB350E9D4C18009A6919 /* chrome_thread_unittest.cc in Sources */,
				4D7BFB710E9D4C55009A6919 /* chunk_range_unittest.cc in Sources */,
				4D7BFB510E9D4C3E009A6919 /* dns_host_info_unittest.cc in Sources */,
				4D7BFB3C0E9D4C25009A6919 /* history_types_unittest.cc in Sources */,
				4D7BFCE30E9D4DCE009A6919 /* jpeg_codec_unittest.cc in Sources */,
				4D7BFCE70E9D4DD4009A6919 /* json_value_serializer_unittest.cc in Sources */,
				4DDC63E70EAE344300FB5EBE /* metrics_response_unittest.cc in Sources */,
				4D7BFB580E9D4C43009A6919 /* page_range_unittest.cc in Sources */,
				4D7BFB5F0E9D4C46009A6919 /* page_setup_unittest.cc in Sources */,
				4DC6498F0EA92BF90017C876 /* platform_test_mac.mm in Sources */,
				4D7BFB780E9D4C5A009A6919 /* protocol_parser_unittest.cc in Sources */,
				4D7BFCF30E9D4E07009A6919 /* run_all_unittests.cc in Sources */,
				E48FB9870EC4EBA10052B72B /* safe_browsing_database_unittest.cc in Sources */,
				4D7BFB7F0E9D4C63009A6919 /* safe_browsing_util_unittest.cc in Sources */,
				4D7BFB3E0E9D4C2F009A6919 /* text_database_unittest.cc in Sources */,
				4D7BFB610E9D4C4B009A6919 /* units_unittest.cc in Sources */,
				4D7BFB420E9D4C35009A6919 /* visit_tracker_unittest.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D7BFC170E9D4CB9009A6919 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D7BFC260E9D4CE8009A6919 /* animation.cc in Sources */,
				4D7BFC280E9D4CEB009A6919 /* chrome_constants.cc in Sources */,
				4D7BFC2A0E9D4CED009A6919 /* chrome_counters.cc in Sources */,
				4D7BFC2C0E9D4CF1009A6919 /* chrome_switches.cc in Sources */,
				4D7BFCC90E9D4D72009A6919 /* color_utils.cc in Sources */,
				4D7BFCCE0E9D4D7A009A6919 /* cookie_monster_sqlite.cc in Sources */,
				4D7BFC2E0E9D4CF5009A6919 /* debug_flags.cc in Sources */,
				4D7BFC330E9D4CF9009A6919 /* env_vars.cc in Sources */,
				4D7BFC380E9D4CFF009A6919 /* ipc_message.cc in Sources */,
				4D7BFC580E9D4D0E009A6919 /* jpeg_codec.cc in Sources */,
				4D7BFC4B0E9D4D06009A6919 /* json_value_serializer.cc in Sources */,
				4D7BFC540E9D4D09009A6919 /* libxml_utils.cc in Sources */,
				B562C8430ED49C830077A23F /* mach_ipc_mac.mm in Sources */,
				B54BD8FC0ED622C00093FD54 /* mach_message_source_mac.cc in Sources */,
				4D7BFC5C0E9D4D24009A6919 /* notification_service.cc in Sources */,
				4D7BFC710E9D4D28009A6919 /* pref_member.cc in Sources */,
				4D7BFC7A0E9D4D2B009A6919 /* pref_names.cc in Sources */,
				4D7BFC7F0E9D4D2E009A6919 /* slide_animation.cc in Sources */,
				4D7BFC840E9D4D32009A6919 /* sqlite_compiled_statement.cc in Sources */,
				4D7BFC8B0E9D4D35009A6919 /* sqlite_utils.cc in Sources */,
				4D7BFC920E9D4D3A009A6919 /* task_queue.cc in Sources */,
				4D7BFC970E9D4D3E009A6919 /* throb_animation.cc in Sources */,
				4D7BFC9C0E9D4D46009A6919 /* thumbnail_score.cc in Sources */,
				4D7BFCA30E9D4D48009A6919 /* visitedlink_common.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		4D640CF20EAE86D800EBCFC0 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D640CEA0EAE86BD00EBCFC0 /* renderer */;
			targetProxy = 4D640CF10EAE86D800EBCFC0 /* PBXContainerItemProxy */;
		};
		4D7B00540E9D5487009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = skia;
			targetProxy = 4D7B00530E9D5487009A6919 /* PBXContainerItemProxy */;
		};
		4D7B00560E9D5487009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = net;
			targetProxy = 4D7B00550E9D5487009A6919 /* PBXContainerItemProxy */;
		};
		4D7B00600E9D54BF009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = modp_b64;
			targetProxy = 4D7B005F0E9D54BF009A6919 /* PBXContainerItemProxy */;
		};
		4D7B01440E9D56CC009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = sqlite;
			targetProxy = 4D7B01430E9D56CC009A6919 /* PBXContainerItemProxy */;
		};
		4D7B01470E9D56DF009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icudata;
			targetProxy = 4D7B01460E9D56DF009A6919 /* PBXContainerItemProxy */;
		};
		4D7B01500E9D574A009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BFB2C0E9D4BE5009A6919 /* unit_tests */;
			targetProxy = 4D7B014F0E9D574A009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFB080E9D4B98009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BF3050E9D477E009A6919 /* browser */;
			targetProxy = 4D7BFB070E9D4B98009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFB290E9D4BC9009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = libxml_config;
			targetProxy = 4D7BFB280E9D4BC9009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFB320E9D4BFB009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BFB2C0E9D4BE5009A6919 /* unit_tests */;
			targetProxy = 4D7BFB310E9D4BFB009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFC1E0E9D4CCA009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = libxml_config;
			targetProxy = 4D7BFC1D0E9D4CCA009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFC200E9D4CD4009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BFC190E9D4CB9009A6919 /* common */;
			targetProxy = 4D7BFC1F0E9D4CD4009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFCDA0E9D4DAF009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BF3050E9D477E009A6919 /* browser */;
			targetProxy = 4D7BFCD90E9D4DAF009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFCDC0E9D4DAF009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BFC190E9D4CB9009A6919 /* common */;
			targetProxy = 4D7BFCDB0E9D4DAF009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFDCD0E9D5262009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = base;
			targetProxy = 4D7BFDCC0E9D5262009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFE780E9D52EB009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icuuc;
			targetProxy = 4D7BFE770E9D52EB009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFE7F0E9D5310009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icui18n;
			targetProxy = 4D7BFE7E0E9D5310009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFF390E9D536D009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = libjpeg;
			targetProxy = 4D7BFF380E9D536D009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFF430E9D5394009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = gtest;
			targetProxy = 4D7BFF420E9D5394009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFF560E9D53D2009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = bzip2;
			targetProxy = 4D7BFF550E9D53D2009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFF580E9D53D2009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = libevent;
			targetProxy = 4D7BFF570E9D53D2009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFF5D0E9D53F3009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = base_gfx;
			targetProxy = 4D7BFF5C0E9D53F3009A6919 /* PBXContainerItemProxy */;
		};
		4D7BFF720E9D5416009A6919 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = googleurl;
			targetProxy = 4D7BFF710E9D5416009A6919 /* PBXContainerItemProxy */;
		};
		4DDC644A0EAE38F500FB5EBE /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = xml;
			targetProxy = 4DDC64490EAE38F500FB5EBE /* PBXContainerItemProxy */;
		};
		4DDC64570EAE393800FB5EBE /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = zlib;
			targetProxy = 4DDC64560EAE393800FB5EBE /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		4D640CEC0EAE86BD00EBCFC0 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = renderer;
			};
			name = Debug;
		};
		4D640CED0EAE86BD00EBCFC0 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = renderer;
			};
			name = Release;
		};
		4D7B014D0E9D572D009A6919 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = run_unit_tests;
			};
			name = Debug;
		};
		4D7B014E0E9D572D009A6919 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = run_unit_tests;
			};
			name = Release;
		};
		4D7BF2EA0E9D46A4009A6919 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FC0E9D46E6009A6919 /* debug.xcconfig */;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					..,
					../skia/include,
					../skia/include/corecg,
					../third_party/icu38/public/common,
					../third_party/libjpeg,
					../third_party/libxml/include,
					"$(SYMROOT)/libxml.build/$(CONFIGURATION)/generated/include",
				);
				XCODEPROJ_DEPTH = ..;
			};
			name = Debug;
		};
		4D7BF2EB0E9D46A4009A6919 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FE0E9D46E6009A6919 /* release.xcconfig */;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					..,
					../skia/include,
					../skia/include/corecg,
					../third_party/icu38/public/common,
					../third_party/libjpeg,
					../third_party/libxml/include,
					"$(SYMROOT)/libxml.build/$(CONFIGURATION)/generated/include",
				);
				XCODEPROJ_DEPTH = ..;
			};
			name = Release;
		};
		4D7BF3080E9D477E009A6919 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = browser;
			};
			name = Debug;
		};
		4D7BF3090E9D477E009A6919 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = browser;
			};
			name = Release;
		};
		4D7BFB050E9D4B8D009A6919 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = All;
			};
			name = Debug;
		};
		4D7BFB060E9D4B8D009A6919 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = All;
			};
			name = Release;
		};
		4D7BFB2F0E9D4BE6009A6919 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FD0E9D46E6009A6919 /* executable.xcconfig */;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"$(GCC_PREPROCESSOR_DEFINITIONS)",
					UNIT_TEST,
				);
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					../testing/gtest/include,
				);
				PRODUCT_NAME = unit_tests;
			};
			name = Debug;
		};
		4D7BFB300E9D4BE6009A6919 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FD0E9D46E6009A6919 /* executable.xcconfig */;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"$(GCC_PREPROCESSOR_DEFINITIONS)",
					UNIT_TEST,
				);
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					../testing/gtest/include,
				);
				PRODUCT_NAME = unit_tests;
			};
			name = Release;
		};
		4D7BFC1B0E9D4CB9009A6919 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = common;
			};
			name = Debug;
		};
		4D7BFC1C0E9D4CB9009A6919 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = common;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		4D640D110EAE86FC00EBCFC0 /* Build configuration list for PBXNativeTarget "renderer" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D640CEC0EAE86BD00EBCFC0 /* Debug */,
				4D640CED0EAE86BD00EBCFC0 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		4D7B01530E9D5760009A6919 /* Build configuration list for PBXAggregateTarget "run_unit_tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D7B014D0E9D572D009A6919 /* Debug */,
				4D7B014E0E9D572D009A6919 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		4D7BF2EC0E9D46A4009A6919 /* Build configuration list for PBXProject "chrome" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D7BF2EA0E9D46A4009A6919 /* Debug */,
				4D7BF2EB0E9D46A4009A6919 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		4D7BF30A0E9D477E009A6919 /* Build configuration list for PBXNativeTarget "browser" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D7BF3080E9D477E009A6919 /* Debug */,
				4D7BF3090E9D477E009A6919 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		4D7BFB0A0E9D4BA1009A6919 /* Build configuration list for PBXAggregateTarget "All" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D7BFB050E9D4B8D009A6919 /* Debug */,
				4D7BFB060E9D4B8D009A6919 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		4D7BFB340E9D4C06009A6919 /* Build configuration list for PBXNativeTarget "unit_tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D7BFB2F0E9D4BE6009A6919 /* Debug */,
				4D7BFB300E9D4BE6009A6919 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		4D7BFC250E9D4CDF009A6919 /* Build configuration list for PBXNativeTarget "common" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D7BFC1B0E9D4CB9009A6919 /* Debug */,
				4D7BFC1C0E9D4CB9009A6919 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 4D7BF2E90E9D46A4009A6919 /* Project object */;
}