summaryrefslogtreecommitdiffstats
path: root/chrome/chrome.xcodeproj/project.pbxproj
blob: ddc00c10a399bcd5c0ea30ae167e10598dbdf7e1 (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
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
// !$*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 = (
				E450625E0EE88D54003BE099 /* PBXTargetDependency */,
				4D7BFB080E9D4B98009A6919 /* PBXTargetDependency */,
				4D7BFC200E9D4CD4009A6919 /* PBXTargetDependency */,
				4D640CF20EAE86D800EBCFC0 /* PBXTargetDependency */,
				4D1F59EF0F2A6B740040C1E3 /* PBXTargetDependency */,
				4DCE999B0EF060D100682526 /* PBXTargetDependency */,
				4D7FA6260F13CA2F004F1B19 /* PBXTargetDependency */,
				4D7BFB320E9D4BFB009A6919 /* PBXTargetDependency */,
			);
			name = All;
			productName = All;
		};
		4D7FA6280F13CA61004F1B19 /* run_ui_tests */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 4D7FA6360F13CAA9004F1B19 /* Build configuration list for PBXAggregateTarget "run_ui_tests" */;
			buildPhases = (
				4D7FA6270F13CA61004F1B19 /* ShellScript */,
			);
			dependencies = (
				4D7FA62C0F13CA6F004F1B19 /* PBXTargetDependency */,
			);
			name = run_ui_tests;
			productName = run_ui_tests;
		};
		E45076900F1532CE003BE099 /* Generate Headers */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = E45076930F15330D003BE099 /* Build configuration list for PBXAggregateTarget "Generate Headers" */;
			buildPhases = (
				E450768F0F1532CE003BE099 /* Run Shell Script */,
			);
			dependencies = (
			);
			name = "Generate Headers";
			productName = "Generated Headers";
		};
		E4F325930EE837BF002533CE /* run_ipc_tests */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = E4F325970EE837BF002533CE /* Build configuration list for PBXAggregateTarget "run_ipc_tests" */;
			buildPhases = (
				E4F325960EE837BF002533CE /* ShellScript */,
			);
			dependencies = (
				E4F3259B0EE837DD002533CE /* PBXTargetDependency */,
			);
			name = run_ipc_tests;
			productName = run_unit_tests;
		};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
		3380A69B0F2E91AE004EF74F /* child_process.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB890E9D4C9F009A6919 /* child_process.cc */; };
		3380A69D0F2E91D4004EF74F /* render_thread.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CD10EAE868600EBCFC0 /* render_thread.cc */; };
		3380A69F0F2E91E5004EF74F /* chrome_plugin_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB920E9D4C9F009A6919 /* chrome_plugin_lib.cc */; };
		3380A6A00F2E91E7004EF74F /* chrome_plugin_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB920E9D4C9F009A6919 /* chrome_plugin_lib.cc */; };
		3380A6A10F2E91F9004EF74F /* render_process.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CCF0EAE868600EBCFC0 /* render_process.cc */; };
		3380A6A30F2E9207004EF74F /* ipc_sync_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBB60E9D4C9F009A6919 /* ipc_sync_channel.cc */; };
		3380A6B60F2E9252004EF74F /* render_thread_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3380A6B50F2E9252004EF74F /* render_thread_unittest.cc */; };
		3380A9AB0F2FC3BF004EF74F /* mock_webkit_glue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3380A9AA0F2FC3BF004EF74F /* mock_webkit_glue.cc */; };
		3380A9C00F2FC61E004EF74F /* render_process_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3380A9BF0F2FC61E004EF74F /* render_process_unittest.cc */; };
		3380A9D60F2FC8F6004EF74F /* render_dns_master.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CE10EAE86A500EBCFC0 /* render_dns_master.cc */; };
		3380A9D70F2FC8F9004EF74F /* render_dns_master.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CE10EAE86A500EBCFC0 /* render_dns_master.cc */; };
		3AEA44DB19C9D93B63D7A2E4 /* url_fetcher_protect.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B7CC9C105E90E0665852528 /* url_fetcher_protect.cc */; };
		4D1F59FE0F2A6BBB0040C1E3 /* image_diff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D1F59FD0F2A6BBB0040C1E3 /* image_diff.cc */; };
		4D1F5A060F2A6D170040C1E3 /* libbase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDC70E9D525B009A6919 /* libbase.a */; };
		4D1F5AAE0F2A6ECB0040C1E3 /* libbase_gfx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDC90E9D525B009A6919 /* libbase_gfx.a */; };
		4D1F5AB70F2A6EF40040C1E3 /* libpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D1F5AB60F2A6EE90040C1E3 /* libpng.a */; };
		4D1F5ABD0F2A6F100040C1E3 /* libzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DDC64550EAE392400FB5EBE /* libzlib.a */; };
		4D1F5AC30F2A6F3B0040C1E3 /* libicuuc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE710E9D52DC009A6919 /* libicuuc.a */; };
		4D1F5AC90F2A6FBF0040C1E3 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDD10E9D5295009A6919 /* CoreFoundation.framework */; };
		4D1F5AF80F2A6FE00040C1E3 /* libskia.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7B00330E9D5459009A6919 /* libskia.a */; };
		4D1F5AFC0F2A700B0040C1E3 /* libicui18n.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE6D0E9D52DC009A6919 /* libicui18n.a */; };
		4D1F5B000F2A70210040C1E3 /* libicudata.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE690E9D52DC009A6919 /* libicudata.a */; };
		4D1F5B010F2A70330040C1E3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45065DF0EEEC709003BE099 /* Foundation.framework */; };
		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 */; };
		4D7BF9AC0E9D4880009A6919 /* page_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8D40E9D4839009A6919 /* page_state.cc */; };
		4D7BF9B60E9D4894009A6919 /* session_startup_pref.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF91A0E9D4839009A6919 /* session_startup_pref.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 */; };
		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 */; };
		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 */; };
		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 */; };
		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 */; };
		4D7FA6440F13CB5C004F1B19 /* run_all_unittests.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFCEF0E9D4DFE009A6919 /* run_all_unittests.cc */; };
		4D7FA6490F13CB9D004F1B19 /* libbase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDC70E9D525B009A6919 /* libbase.a */; };
		4D7FA65E0F13CBDD004F1B19 /* libicudata.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE690E9D52DC009A6919 /* libicudata.a */; };
		4D7FA6600F13CBDD004F1B19 /* libicuuc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE710E9D52DC009A6919 /* libicuuc.a */; };
		4D7FA6660F13CBF8004F1B19 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDD10E9D5295009A6919 /* CoreFoundation.framework */; };
		4D7FA6940F13CC01004F1B19 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45065DD0EEEC6FF003BE099 /* AppKit.framework */; };
		4D7FA7490F13CC0D004F1B19 /* libicui18n.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE6D0E9D52DC009A6919 /* libicui18n.a */; };
		4D7FA7540F13CC31004F1B19 /* libgtest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF410E9D538D009A6919 /* libgtest.a */; };
		4D7FA75B0F13CC4B004F1B19 /* libcommon.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFC1A0E9D4CB9009A6919 /* libcommon.a */; };
		4D7FA75F0F13CC58004F1B19 /* libbrowser.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BF3060E9D477E009A6919 /* libbrowser.a */; };
		4DCE9DDF0EF0B73300682526 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45065DD0EEEC6FF003BE099 /* AppKit.framework */; };
		4DCE9DE00EF0B73300682526 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45065DF0EEEC709003BE099 /* Foundation.framework */; };
		4DCE9E2D0EF0B8C000682526 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4DCE9E2B0EF0B8C000682526 /* MainMenu.xib */; };
		4DDC644B0EAE390800FB5EBE /* libxml.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFB230E9D4BBF009A6919 /* libxml.a */; };
		4DDC64580EAE394200FB5EBE /* libzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DDC64550EAE392400FB5EBE /* libzlib.a */; };
		8F51B73AAAF1772ECF9BD180 /* url_fetcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 778D7927798B7E3FAA498D3D /* url_fetcher.cc */; };
		9A1EE0F9187ACE2DCB8512E1 /* template_url.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CCF8AA8A56FF8FE59F0C299 /* template_url.cc */; };
		A54612DC0EE9958600A8EE5D /* extensions_service_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = A54612DB0EE9958600A8EE5D /* extensions_service_unittest.cc */; };
		A54612E20EE995F600A8EE5D /* extensions_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = A54612D90EE9957000A8EE5D /* extensions_service.cc */; };
		A76E43A40F29039C009A7E88 /* browser_render_process_host.cc in Sources */ = {isa = PBXBuildFile; fileRef = A76E43A30F29039C009A7E88 /* browser_render_process_host.cc */; };
		A7C612990F30D63D008CEE5D /* render_process_host.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5D16EC10F2144D500861FAC /* render_process_host.cc */; };
		A7C613C10F30D7E4008CEE5D /* mock_render_process_host.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7C613BF0F30D7E4008CEE5D /* mock_render_process_host.cc */; };
		A7C6146F0F30DA1D008CEE5D /* ipc_test_sink.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7C6146D0F30DA1D008CEE5D /* ipc_test_sink.cc */; };
		B502DA280F098056005BE90C /* visit_database_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA180E9D48F7009A6919 /* visit_database_unittest.cc */; };
		B502DA520F098888005BE90C /* l10n_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBC90E9D4C9F009A6919 /* l10n_util.cc */; };
		B503E0F00F0175FD00547DC6 /* user_script_slave.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CC90EAE868600EBCFC0 /* user_script_slave.cc */; };
		B503E0FC0F01764800547DC6 /* user_script_slave_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = B503E0FB0F01764800547DC6 /* user_script_slave_unittest.cc */; };
		B503E1030F017C1000547DC6 /* librenderer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D640CEB0EAE86BD00EBCFC0 /* librenderer.a */; };
		B507AC1F0F0048E10060FEE8 /* ipc_sync_message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBBA0E9D4C9F009A6919 /* ipc_sync_message.cc */; };
		B507AC440F004B610060FEE8 /* ipc_sync_message_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBBC0E9D4C9F009A6919 /* ipc_sync_message_unittest.cc */; };
		B52E29BE0F0AA333008AD1C8 /* l10n_util_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBCB0E9D4C9F009A6919 /* l10n_util_unittest.cc */; };
		B54BD8FC0ED622C00093FD54 /* mach_message_source_mac.cc in Sources */ = {isa = PBXBuildFile; fileRef = B54BD8FA0ED622C00093FD54 /* mach_message_source_mac.cc */; };
		B555B2230F21506300F751B9 /* metrics_log.cc in Sources */ = {isa = PBXBuildFile; fileRef = B555B2200F21504D00F751B9 /* metrics_log.cc */; };
		B555B2240F21506700F751B9 /* metrics_response.cc in Sources */ = {isa = PBXBuildFile; fileRef = B555B21A0F21504D00F751B9 /* metrics_response.cc */; };
		B555B2250F21506B00F751B9 /* user_metrics.cc in Sources */ = {isa = PBXBuildFile; fileRef = B555B21C0F21504D00F751B9 /* user_metrics.cc */; };
		B562C8430ED49C830077A23F /* mach_ipc_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = B562C8420ED49C830077A23F /* mach_ipc_mac.mm */; };
		B562E2C70F0582F800FB1A4F /* common_glue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB9F0E9D4C9F009A6919 /* common_glue.cc */; };
		B562E2D50F05834500FB1A4F /* chrome_canvas.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFCA90E9D4D5D009A6919 /* chrome_canvas.cc */; };
		B562E2F80F05843C00FB1A4F /* property_bag.cc in Sources */ = {isa = PBXBuildFile; fileRef = B562E2F60F05843C00FB1A4F /* property_bag.cc */; };
		B562E2FC0F05845100FB1A4F /* property_bag_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = B562E2F40F05843C00FB1A4F /* property_bag_unittest.cc */; };
		B56E281B0F057F2800447108 /* message_router.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBD10E9D4C9F009A6919 /* message_router.cc */; };
		B5DBEA900EFC60E200C95176 /* ipc_channel_proxy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBAB0E9D4C9F009A6919 /* ipc_channel_proxy.cc */; };
		B5E98B140F0574A8000A37D6 /* render_messages.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBF10E9D4C9F009A6919 /* render_messages.cc */; };
		B5FCDE5C0F269E9B0099BFAF /* visitedlink_master.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF95F0E9D4839009A6919 /* visitedlink_master.cc */; };
		B5FDC0580EE488E500BEC6E6 /* ipc_channel_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5FDC0570EE488E500BEC6E6 /* ipc_channel_posix.cc */; };
		B5FDC1CA0EE48ADB00BEC6E6 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDD10E9D5295009A6919 /* CoreFoundation.framework */; };
		B5FDC1CC0EE48ADB00BEC6E6 /* libbase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDC70E9D525B009A6919 /* libbase.a */; };
		B5FDC1D00EE48ADB00BEC6E6 /* libcommon.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFC1A0E9D4CB9009A6919 /* libcommon.a */; };
		B5FDC1D10EE48ADB00BEC6E6 /* libevent.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF4B0E9D53B4009A6919 /* libevent.a */; };
		B5FDC1D30EE48ADB00BEC6E6 /* libgtest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF410E9D538D009A6919 /* libgtest.a */; };
		B5FDC1D40EE48ADB00BEC6E6 /* libicudata.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE690E9D52DC009A6919 /* libicudata.a */; };
		B5FDC1D60EE48ADB00BEC6E6 /* libicuuc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE710E9D52DC009A6919 /* libicuuc.a */; };
		B5FDC2180EE48F4100BEC6E6 /* libicui18n.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE6D0E9D52DC009A6919 /* libicui18n.a */; };
		B6CCB9FA0F1EC33100106F0D /* provisional_load_details.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6CCB9DE0F1EC32700106F0D /* provisional_load_details.cc */; };
		B9BF55F87A4BB2FD366B6DDC /* template_url_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28AA584AB2ECFB33C7C7FD8A /* template_url_parser.cc */; };
		C39F08C4FFD9C2F98384F56B /* template_url_model.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA72C084DB3FC0FC595E525E /* template_url_model.cc */; };
		E40CC5E30F2E348900708647 /* history_contents_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = E40CC5E10F2E348900708647 /* history_contents_provider.cc */; };
		E40CC5EE0F2E34C100708647 /* base_history_model.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF82B0E9D4839009A6919 /* base_history_model.cc */; };
		E40CC5F20F2E34EE00708647 /* bookmark_folder_tree_model.cc in Sources */ = {isa = PBXBuildFile; fileRef = E40CC5F00F2E34EE00708647 /* bookmark_folder_tree_model.cc */; };
		E40CC5F70F2E351A00708647 /* bookmark_table_model.cc in Sources */ = {isa = PBXBuildFile; fileRef = E40CC5F60F2E351A00708647 /* bookmark_table_model.cc */; };
		E40CC5FE0F2E35A800708647 /* security_filter_peer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBFA0E9D4C9F009A6919 /* security_filter_peer.cc */; };
		E43A770B0F1660EA00ABD5D1 /* automation_resource_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = E48FB9680EC4EA270052B72B /* automation_resource_tracker.cc */; };
		E43A770D0F16610300ABD5D1 /* chrome_plugin_browsing_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF85B0E9D4839009A6919 /* chrome_plugin_browsing_context.cc */; };
		E43A77110F16613700ABD5D1 /* chrome_url_request_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = E43A77100F16613700ABD5D1 /* chrome_url_request_context.cc */; };
		E43A77170F16616E00ABD5D1 /* download_resource_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = E43A77160F16616E00ABD5D1 /* download_resource_handler.cc */; };
		E43A771C0F1661AF00ABD5D1 /* chrome_url_data_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = E43A771A0F1661AF00ABD5D1 /* chrome_url_data_manager.cc */; };
		E43A78750F17A95400ABD5D1 /* sandbox_init_wrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = E43A78730F17A95400ABD5D1 /* sandbox_init_wrapper.cc */; };
		E43A79F40F1D192000ABD5D1 /* aliasCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79D60F1D192000ABD5D1 /* aliasCursor.png */; };
		E43A79F50F1D192000ABD5D1 /* cellCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79D70F1D192000ABD5D1 /* cellCursor.png */; };
		E43A79F60F1D192000ABD5D1 /* contextMenuCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79D80F1D192000ABD5D1 /* contextMenuCursor.png */; };
		E43A79F70F1D192000ABD5D1 /* copyCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79D90F1D192000ABD5D1 /* copyCursor.png */; };
		E43A79F80F1D192000ABD5D1 /* crossHairCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79DA0F1D192000ABD5D1 /* crossHairCursor.png */; };
		E43A79F90F1D192000ABD5D1 /* eastResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79DB0F1D192000ABD5D1 /* eastResizeCursor.png */; };
		E43A79FA0F1D192000ABD5D1 /* eastWestResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79DC0F1D192000ABD5D1 /* eastWestResizeCursor.png */; };
		E43A79FB0F1D192000ABD5D1 /* helpCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79DD0F1D192000ABD5D1 /* helpCursor.png */; };
		E43A79FC0F1D192000ABD5D1 /* linkCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79DE0F1D192000ABD5D1 /* linkCursor.png */; };
		E43A79FD0F1D192000ABD5D1 /* missingImage.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79DF0F1D192000ABD5D1 /* missingImage.png */; };
		E43A79FE0F1D192000ABD5D1 /* moveCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E00F1D192000ABD5D1 /* moveCursor.png */; };
		E43A79FF0F1D192000ABD5D1 /* noDropCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E10F1D192000ABD5D1 /* noDropCursor.png */; };
		E43A7A000F1D192000ABD5D1 /* noneCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E20F1D192000ABD5D1 /* noneCursor.png */; };
		E43A7A010F1D192000ABD5D1 /* northEastResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E30F1D192000ABD5D1 /* northEastResizeCursor.png */; };
		E43A7A020F1D192000ABD5D1 /* northEastSouthWestResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E40F1D192000ABD5D1 /* northEastSouthWestResizeCursor.png */; };
		E43A7A030F1D192000ABD5D1 /* northResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E50F1D192000ABD5D1 /* northResizeCursor.png */; };
		E43A7A040F1D192000ABD5D1 /* northSouthResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E60F1D192000ABD5D1 /* northSouthResizeCursor.png */; };
		E43A7A050F1D192000ABD5D1 /* northWestResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E70F1D192000ABD5D1 /* northWestResizeCursor.png */; };
		E43A7A060F1D192000ABD5D1 /* northWestSouthEastResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E80F1D192000ABD5D1 /* northWestSouthEastResizeCursor.png */; };
		E43A7A070F1D192000ABD5D1 /* notAllowedCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79E90F1D192000ABD5D1 /* notAllowedCursor.png */; };
		E43A7A080F1D192000ABD5D1 /* progressCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79EA0F1D192000ABD5D1 /* progressCursor.png */; };
		E43A7A090F1D192000ABD5D1 /* southEastResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79EB0F1D192000ABD5D1 /* southEastResizeCursor.png */; };
		E43A7A0A0F1D192000ABD5D1 /* southResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79EC0F1D192000ABD5D1 /* southResizeCursor.png */; };
		E43A7A0B0F1D192000ABD5D1 /* southWestResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79ED0F1D192000ABD5D1 /* southWestResizeCursor.png */; };
		E43A7A0C0F1D192000ABD5D1 /* textAreaResizeCorner.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79EE0F1D192000ABD5D1 /* textAreaResizeCorner.png */; };
		E43A7A0D0F1D192000ABD5D1 /* verticalTextCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79EF0F1D192000ABD5D1 /* verticalTextCursor.png */; };
		E43A7A0E0F1D192000ABD5D1 /* waitCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79F00F1D192000ABD5D1 /* waitCursor.png */; };
		E43A7A0F0F1D192000ABD5D1 /* westResizeCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79F10F1D192000ABD5D1 /* westResizeCursor.png */; };
		E43A7A100F1D192000ABD5D1 /* zoomInCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79F20F1D192000ABD5D1 /* zoomInCursor.png */; };
		E43A7A110F1D192000ABD5D1 /* zoomOutCursor.png in Resources */ = {isa = PBXBuildFile; fileRef = E43A79F30F1D192000ABD5D1 /* zoomOutCursor.png */; };
		E45060F20EE87D41003BE099 /* chrome_exe_main.mm in Sources */ = {isa = PBXBuildFile; fileRef = E45060F10EE87D41003BE099 /* chrome_exe_main.mm */; };
		E45062680EE890C2003BE099 /* libbase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDC70E9D525B009A6919 /* libbase.a */; };
		E45062A70EE89146003BE099 /* libicui18n.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE6D0E9D52DC009A6919 /* libicui18n.a */; };
		E45062A90EE89154003BE099 /* libicudata.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE690E9D52DC009A6919 /* libicudata.a */; };
		E45062AC0EE89154003BE099 /* libicuuc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFE710E9D52DC009A6919 /* libicuuc.a */; };
		E45062C70EE8939A003BE099 /* chromium.icns in Resources */ = {isa = PBXBuildFile; fileRef = E45062C60EE8939A003BE099 /* chromium.icns */; };
		E45062EB0EE9877F003BE099 /* chrome_dll_main.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45062EA0EE9877F003BE099 /* chrome_dll_main.cc */; };
		E45063120EE99096003BE099 /* libcommon.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFC1A0E9D4CB9009A6919 /* libcommon.a */; };
		E45063130EE990A4003BE099 /* libbrowser.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BF3060E9D477E009A6919 /* libbrowser.a */; };
		E45063140EE990AB003BE099 /* librenderer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D640CEB0EAE86BD00EBCFC0 /* librenderer.a */; };
		E450631C0EE990FA003BE099 /* libevent.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF4B0E9D53B4009A6919 /* libevent.a */; };
		E450634F0EE9BE29003BE099 /* browser_main_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = E450634E0EE9BE29003BE099 /* browser_main_mac.mm */; };
		E45063530EE9BF31003BE099 /* browser_main.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF83E0E9D4839009A6919 /* browser_main.cc */; };
		E45065DE0EEEC6FF003BE099 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45065DD0EEEC6FF003BE099 /* AppKit.framework */; };
		E45065E00EEEC709003BE099 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45065DF0EEEC709003BE099 /* Foundation.framework */; };
		E45066CD0EEF1AA7003BE099 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45065DF0EEEC709003BE099 /* Foundation.framework */; };
		E45066CE0EEF1AA7003BE099 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45065DD0EEEC6FF003BE099 /* AppKit.framework */; };
		E45075B20F1505C0003BE099 /* bookmark_codec.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075B10F1505C0003BE099 /* bookmark_codec.cc */; };
		E45075B40F1505C9003BE099 /* bookmark_html_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075B30F1505C9003BE099 /* bookmark_html_writer.cc */; };
		E45075B70F1505DD003BE099 /* keyword_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075AA0F150564003BE099 /* keyword_provider.cc */; };
		E45075B80F15060C003BE099 /* browser_trial.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640D120EAE87BD00EBCFC0 /* browser_trial.cc */; };
		E45075BC0F1506B5003BE099 /* history_model.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF88C0E9D4839009A6919 /* history_model.cc */; };
		E45075C10F1506F2003BE099 /* firefox2_importer.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075C00F1506F2003BE099 /* firefox2_importer.cc */; };
		E45075C40F150701003BE099 /* firefox3_importer.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075C30F150701003BE099 /* firefox3_importer.cc */; };
		E45075C60F15070D003BE099 /* firefox_profile_lock.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075C50F15070D003BE099 /* firefox_profile_lock.cc */; };
		E45075CD0F150741003BE099 /* mork_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075CC0F150741003BE099 /* mork_reader.cc */; };
		E45075DC0F150A53003BE099 /* async_resource_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075DA0F150A53003BE099 /* async_resource_handler.cc */; };
		E45075E20F150A6F003BE099 /* buffered_resource_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075DF0F150A6F003BE099 /* buffered_resource_handler.cc */; };
		E45075E30F150A6F003BE099 /* download_throttling_resource_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075E10F150A6F003BE099 /* download_throttling_resource_handler.cc */; };
		E45075EC0F150ABA003BE099 /* safe_browsing_resource_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075E60F150ABA003BE099 /* safe_browsing_resource_handler.cc */; };
		E45075ED0F150ABA003BE099 /* save_file_resource_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075E80F150ABA003BE099 /* save_file_resource_handler.cc */; };
		E45075EE0F150ABA003BE099 /* sync_resource_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075EA0F150ABA003BE099 /* sync_resource_handler.cc */; };
		E45075F40F150C01003BE099 /* session_command.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075F30F150C01003BE099 /* session_command.cc */; };
		E45075F70F150C0C003BE099 /* session_id.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45075F60F150C0C003BE099 /* session_id.cc */; };
		E45075FA0F150C28003BE099 /* spellcheck_worditerator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9220E9D4839009A6919 /* spellcheck_worditerator.cc */; };
		E45076200F150E0C003BE099 /* web_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = E450761E0F150E0C003BE099 /* web_database.cc */; };
		E45076850F1530CD003BE099 /* pref_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBEA0E9D4C9F009A6919 /* pref_service.cc */; };
		E45076A90F153619003BE099 /* resource_dispatcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBF60E9D4C9F009A6919 /* resource_dispatcher.cc */; };
		E45076AB0F153629003BE099 /* time_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFC0A0E9D4C9F009A6919 /* time_format.cc */; };
		E45076C90F1537F5003BE099 /* dom_ui_bindings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CC30EAE868600EBCFC0 /* dom_ui_bindings.cc */; };
		E45076CB0F15380C003BE099 /* external_host_bindings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CC50EAE868600EBCFC0 /* external_host_bindings.cc */; };
		E45076CF0F153871003BE099 /* localized_error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D640CCB0EAE868600EBCFC0 /* localized_error.cc */; };
		E45076D90F1538E4003BE099 /* dom_automation_controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45076D70F1538E4003BE099 /* dom_automation_controller.cc */; };
		E45076E50F153AB6003BE099 /* unzip.cc in Sources */ = {isa = PBXBuildFile; fileRef = E45076E40F153AB6003BE099 /* unzip.cc */; };
		E450775F0F154036003BE099 /* mru_cache_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBD40E9D4C9F009A6919 /* mru_cache_unittest.cc */; };
		E45077620F15405C003BE099 /* notification_service_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBDB0E9D4C9F009A6919 /* notification_service_unittest.cc */; };
		E46C42130F1D3DD200B393B8 /* user_script_master.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0082A7510F16987A000AA0EF /* user_script_master.cc */; };
		E46C46C50F1F9AE200B393B8 /* temp_scaffolding_stubs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E46C46C40F1F9AE200B393B8 /* temp_scaffolding_stubs.cpp */; };
		E46C4A740F1FE04F00B393B8 /* app_controller_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = E46C45990F1F88D100B393B8 /* app_controller_mac.mm */; };
		E46C4B3F0F21095400B393B8 /* url_request_intercept_job.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFCC20E9D4D6B009A6919 /* url_request_intercept_job.cc */; };
		E46C4B490F21096300B393B8 /* worker_thread_ticker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFC140E9D4C9F009A6919 /* worker_thread_ticker.cc */; };
		E46C4B4C0F21098F00B393B8 /* worker_thread_ticker_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = E46C4B4B0F21098F00B393B8 /* worker_thread_ticker_unittest.cc */; };
		E46C4C2E0F212CAF00B393B8 /* browser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF8300E9D4839009A6919 /* browser.cc */; };
		E46C4D0F0F2138D400B393B8 /* browser_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF83C0E9D4839009A6919 /* browser_list.cc */; };
		E46C4ED40F27A94100B393B8 /* command_updater.cc in Sources */ = {isa = PBXBuildFile; fileRef = E46C4ED30F27A94100B393B8 /* command_updater.cc */; };
		E46C4EF30F27A9B000B393B8 /* command_updater_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = E46C4EF20F27A9B000B393B8 /* command_updater_unittest.cc */; };
		E46C50500F291C0600B393B8 /* star.pdf in Resources */ = {isa = PBXBuildFile; fileRef = E46C504F0F291C0600B393B8 /* star.pdf */; };
		E46C50520F291C0E00B393B8 /* back.pdf in Resources */ = {isa = PBXBuildFile; fileRef = E46C50510F291C0E00B393B8 /* back.pdf */; };
		E46C50550F291C1E00B393B8 /* forward.pdf in Resources */ = {isa = PBXBuildFile; fileRef = E46C50530F291C1E00B393B8 /* forward.pdf */; };
		E46C50560F291C1E00B393B8 /* reload.pdf in Resources */ = {isa = PBXBuildFile; fileRef = E46C50540F291C1E00B393B8 /* reload.pdf */; };
		E46C50580F291C3B00B393B8 /* newtab.pdf in Resources */ = {isa = PBXBuildFile; fileRef = E46C50570F291C3B00B393B8 /* newtab.pdf */; };
		E46C50D90F292EAA00B393B8 /* tab_bar_view.mm in Sources */ = {isa = PBXBuildFile; fileRef = E46C50D60F292EAA00B393B8 /* tab_bar_view.mm */; };
		E46C50DA0F292EAA00B393B8 /* tab_cell.mm in Sources */ = {isa = PBXBuildFile; fileRef = E46C50D80F292EAA00B393B8 /* tab_cell.mm */; };
		E46C50EA0F2A11FC00B393B8 /* tab_contents_controller.mm in Sources */ = {isa = PBXBuildFile; fileRef = E46C50E90F2A11FC00B393B8 /* tab_contents_controller.mm */; };
		E46C50EF0F2A12DC00B393B8 /* TabContents.xib in Resources */ = {isa = PBXBuildFile; fileRef = E46C50ED0F2A12DC00B393B8 /* TabContents.xib */; };
		E46C51240F2A14A300B393B8 /* go.pdf in Resources */ = {isa = PBXBuildFile; fileRef = E46C51230F2A14A300B393B8 /* go.pdf */; };
		E46C51640F2A1DAB00B393B8 /* toolbar_view.mm in Sources */ = {isa = PBXBuildFile; fileRef = E46C51630F2A1DAB00B393B8 /* toolbar_view.mm */; };
		E46C519A0F2A20CC00B393B8 /* toolbar_button_cell.mm in Sources */ = {isa = PBXBuildFile; fileRef = E46C51990F2A20CC00B393B8 /* toolbar_button_cell.mm */; };
		E46C53A40F2F660900B393B8 /* tab_strip_model.cc in Sources */ = {isa = PBXBuildFile; fileRef = E46C53A20F2F660900B393B8 /* tab_strip_model.cc */; };
		E46C53AA0F2F662F00B393B8 /* tab_strip_model_order_controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = E46C53A90F2F662F00B393B8 /* tab_strip_model_order_controller.cc */; };
		E48B66A80F26257E002E47EC /* libnet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7B004E0E9D5464009A6919 /* libnet.a */; };
		E48B67320F2625B8002E47EC /* libgoogleurl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF6E0E9D540F009A6919 /* libgoogleurl.a */; };
		E48B67CB0F262607002E47EC /* libmodp_b64.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7B005D0E9D54AA009A6919 /* libmodp_b64.a */; };
		E48B67CF0F26263C002E47EC /* libskia.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7B00330E9D5459009A6919 /* libskia.a */; };
		E48B67ED0F262823002E47EC /* libbase_gfx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDC90E9D525B009A6919 /* libbase_gfx.a */; };
		E48B684D0F2630D3002E47EC /* browser_window_factory.mm in Sources */ = {isa = PBXBuildFile; fileRef = E48B684C0F2630D3002E47EC /* browser_window_factory.mm */; };
		E48B68570F26330C002E47EC /* browser_window_controller.mm in Sources */ = {isa = PBXBuildFile; fileRef = E48B68560F26330C002E47EC /* browser_window_controller.mm */; };
		E48B68640F2637B6002E47EC /* browser_window_cocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = E48B68630F2637B6002E47EC /* browser_window_cocoa.mm */; };
		E48B689B0F263DF5002E47EC /* BrowserWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = E48B68990F263DF5002E47EC /* BrowserWindow.xib */; };
		E48B6C280F2783E9002E47EC /* extension_protocols.cc in Sources */ = {isa = PBXBuildFile; fileRef = E48B6C270F2783E9002E47EC /* extension_protocols.cc */; };
		E48B6C2C0F27840B002E47EC /* password_form_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5D16EB30F21445600861FAC /* password_form_manager.cc */; };
		E48B6C2E0F278426002E47EC /* safe_browsing_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFAE50E9D49DE009A6919 /* safe_browsing_service.cc */; };
		E48B6C3C0F27844F002E47EC /* web_data_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = E48B6C3B0F27844F002E47EC /* web_data_service.cc */; };
		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 */; };
		E4F3242C0EE5CBBF002533CE /* logging_chrome.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBCE0E9D4C9F009A6919 /* logging_chrome.cc */; };
		E4F324300EE5CBEB002533CE /* notification_registrar.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBD70E9D4C9F009A6919 /* notification_registrar.cc */; };
		E4F324430EE5CE94002533CE /* extension.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4F324400EE5CE94002533CE /* extension.cc */; };
		E4F324470EE5CF1F002533CE /* expire_history_backend.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9E90E9D48F7009A6919 /* expire_history_backend.cc */; };
		E4F3244A0EE5CF3C002533CE /* history_backend.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9EE0E9D48F7009A6919 /* history_backend.cc */; };
		E4F3244D0EE5CF4A002533CE /* history_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9F10E9D48F7009A6919 /* history_database.cc */; };
		E4F324500EE5CF7C002533CE /* query_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA000E9D48F7009A6919 /* query_parser.cc */; };
		E4F324550EE5CFB1002533CE /* download_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BF9E60E9D48F7009A6919 /* download_database.cc */; };
		E4F3245D0EE5CFDF002533CE /* starred_url_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA070E9D48F7009A6919 /* starred_url_database.cc */; };
		E4F324600EE5D011002533CE /* url_database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA130E9D48F7009A6919 /* url_database.cc */; };
		E4F324650EE5D082002533CE /* sdch_dictionary_fetcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA720E9D4981009A6919 /* sdch_dictionary_fetcher.cc */; };
		E4F3247A0EE5D17E002533CE /* referrer.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4F324790EE5D17E002533CE /* referrer.cc */; };
		E4F324950EE5D758002533CE /* extension_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4F324420EE5CE94002533CE /* extension_unittest.cc */; };
		E4F324980EE5D7DE002533CE /* snippet_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFA060E9D48F7009A6919 /* snippet_unittest.cc */; };
		E4F3256E0EE82C83002533CE /* chrome_paths.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFB8F0E9D4C9F009A6919 /* chrome_paths.cc */; };
		E4F3257D0EE83679002533CE /* ipc_message_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBB40E9D4C9F009A6919 /* ipc_message_utils.cc */; };
		E4F325850EE836F2002533CE /* ipc_message_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBB30E9D4C9F009A6919 /* ipc_message_unittest.cc */; };
		E4F325880EE83745002533CE /* libskia.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7B00330E9D5459009A6919 /* libskia.a */; };
		E4F3258A0EE8375A002533CE /* libbase_gfx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFDC90E9D525B009A6919 /* libbase_gfx.a */; };
		E4F3258C0EE83767002533CE /* libgoogleurl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7BFF6E0E9D540F009A6919 /* libgoogleurl.a */; };
		E4F325C80EE83A45002533CE /* ipc_fuzzing_tests.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBAD0E9D4C9F009A6919 /* ipc_fuzzing_tests.cc */; };
		E4F325D10EE83B71002533CE /* ipc_tests.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BFBBE0E9D4C9F009A6919 /* ipc_tests.cc */; };
		F775995035B63E51251B0922 /* ssl_error_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 26D97CE692D919FEB1521E43 /* ssl_error_info.cc */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		4D1F59EE0F2A6B740040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D1F59E90F2A6B590040C1E3;
			remoteInfo = image_diff;
		};
		4D1F5A040F2A6D050040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 825402BA0D92D0FA0006B936;
			remoteInfo = base;
		};
		4D1F5AAC0F2A6EBE0040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 825403B00D92D2E50006B936;
			remoteInfo = base_gfx;
		};
		4D1F5AB50F2A6EE90040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D1F5AB10F2A6EE90040C1E3 /* libpng.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = D2AAC046055464E500DB518D;
			remoteInfo = libpng;
		};
		4D1F5AB80F2A6EF80040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D1F5AB10F2A6EE90040C1E3 /* libpng.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = libpng;
		};
		4D1F5ABB0F2A6F070040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4DDC64500EAE392400FB5EBE /* zlib.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = zlib;
		};
		4D1F5AC10F2A6F2F0040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53AAA0D6F6671003CD41E;
			remoteInfo = icuuc;
		};
		4D1F5AF60F2A6FD50040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B002E0E9D5459009A6919 /* skia.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = E48EE4CE0E34E855009DE966;
			remoteInfo = skia;
		};
		4D1F5AFA0F2A6FF90040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53EA50D6F6FC7003CD41E;
			remoteInfo = icui18n;
		};
		4D1F5AFE0F2A70150040C1E3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 82C262C30DCF9411005CFE91;
			remoteInfo = icudata;
		};
		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;
		};
		4D7FA6250F13CA2F004F1B19 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7FA6200F13CA04004F1B19;
			remoteInfo = ui_tests;
		};
		4D7FA62B0F13CA6F004F1B19 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7FA6200F13CA04004F1B19;
			remoteInfo = ui_tests;
		};
		4D7FA64A0F13CBA4004F1B19 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 825402BA0D92D0FA0006B936;
			remoteInfo = base;
		};
		4D7FA74C0F13CC1F004F1B19 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 82C262C30DCF9411005CFE91;
			remoteInfo = icudata;
		};
		4D7FA74E0F13CC1F004F1B19 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53EA50D6F6FC7003CD41E;
			remoteInfo = icui18n;
		};
		4D7FA7500F13CC1F004F1B19 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53AAA0D6F6671003CD41E;
			remoteInfo = icuuc;
		};
		4D7FA7520F13CC26004F1B19 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF3C0E9D538D009A6919 /* gtest.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = gtest;
		};
		4D7FA7600F13CC5E004F1B19 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BF3050E9D477E009A6919;
			remoteInfo = browser;
		};
		4D7FA7620F13CC5E004F1B19 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BFC190E9D4CB9009A6919;
			remoteInfo = common;
		};
		4DCE999A0EF060D100682526 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = B5FDBFAD0EE4623000BEC6E6;
			remoteInfo = ipc_tests;
		};
		4DCE9E210EF0B79600682526 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF5F0E9D540F009A6919 /* googleurl.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BA018350E5A28DB00044150;
			remoteInfo = googleurl;
		};
		4DCE9E230EF0B7A100682526 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 825403B00D92D2E50006B936;
			remoteInfo = base_gfx;
		};
		4DCE9E250EF0B7C100682526 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B002E0E9D5459009A6919 /* skia.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = E48EE4CE0E34E855009DE966;
			remoteInfo = skia;
		};
		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;
		};
		B503E1010F017BE300547DC6 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D640CEA0EAE86BD00EBCFC0;
			remoteInfo = renderer;
		};
		B5067F5A0EE4936200CC5024 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53EA50D6F6FC7003CD41E;
			remoteInfo = icui18n;
		};
		B5067F5C0EE4936A00CC5024 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 825402BA0D92D0FA0006B936;
			remoteInfo = base;
		};
		B5067F5E0EE4937A00CC5024 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF460E9D53B4009A6919 /* libevent.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7B262E830E82E5D7001CE27F;
			remoteInfo = libevent;
		};
		B5067F600EE4937F00CC5024 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF3C0E9D538D009A6919 /* gtest.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = gtest;
		};
		B5067F620EE4938E00CC5024 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 82C262C30DCF9411005CFE91;
			remoteInfo = icudata;
		};
		B5067F640EE4938E00CC5024 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53AAA0D6F6671003CD41E;
			remoteInfo = icuuc;
		};
		B5FDBFB30EE4625B00BEC6E6 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BFC190E9D4CB9009A6919;
			remoteInfo = common;
		};
		E450625D0EE88D54003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = E45060E30EE87B86003BE099;
			remoteInfo = app;
		};
		E45062660EE890B3003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 825402BA0D92D0FA0006B936;
			remoteInfo = base;
		};
		E450629B0EE8912D003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 82C262C30DCF9411005CFE91;
			remoteInfo = icudata;
		};
		E450629F0EE8912D003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53EA50D6F6FC7003CD41E;
			remoteInfo = icui18n;
		};
		E45062A30EE8912D003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFE5B0E9D52DC009A6919 /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53AAA0D6F6671003CD41E;
			remoteInfo = icuuc;
		};
		E45063150EE990C4003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BF3050E9D477E009A6919;
			remoteInfo = browser;
		};
		E45063170EE990C4003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D7BFC190E9D4CB9009A6919;
			remoteInfo = common;
		};
		E45063190EE990C4003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 4D640CEA0EAE86BD00EBCFC0;
			remoteInfo = renderer;
		};
		E450769C0F1534DD003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = E45076900F1532CE003BE099;
			remoteInfo = "Generate Headers";
		};
		E450769E0F1534E8003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = E45076900F1532CE003BE099;
			remoteInfo = "Generate Headers";
		};
		E45076D10F153891003BE099 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = E45076900F1532CE003BE099;
			remoteInfo = "Generate Headers";
		};
		E46C4EB00F278A3000B393B8 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF5F0E9D540F009A6919 /* googleurl.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BA018350E5A28DB00044150;
			remoteInfo = googleurl;
		};
		E46C4EB20F278A3A00B393B8 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFDBE0E9D525B009A6919 /* base.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 825403B00D92D2E50006B936;
			remoteInfo = base_gfx;
		};
		E46C4EB40F278A4800B393B8 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B00580E9D54AA009A6919 /* modp_b64.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7B8502380E5A384100730B43;
			remoteInfo = modp_b64;
		};
		E46C4EB60F278A5900B393B8 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B002E0E9D5459009A6919 /* skia.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = E48EE4CE0E34E855009DE966;
			remoteInfo = skia;
		};
		E46C4EB80F278A7100B393B8 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7B00340E9D5464009A6919 /* net.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = net;
		};
		E46C4EBA0F278A7100B393B8 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BFF460E9D53B4009A6919 /* libevent.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7B262E830E82E5D7001CE27F;
			remoteInfo = libevent;
		};
		E4F3259A0EE837DD002533CE /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 4D7BF2E90E9D46A4009A6919 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = B5FDBFAD0EE4623000BEC6E6;
			remoteInfo = ipc_tests;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		0082A7510F16987A000AA0EF /* user_script_master.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = user_script_master.cc; sourceTree = "<group>"; };
		0082A7520F16987A000AA0EF /* user_script_master.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_script_master.h; sourceTree = "<group>"; };
		0B7CC9C105E90E0665852528 /* url_fetcher_protect.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fetcher_protect.cc; sourceTree = "<group>"; };
		26D97CE692D919FEB1521E43 /* ssl_error_info.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_error_info.cc; path = ssl/ssl_error_info.cc; sourceTree = "<group>"; };
		28AA584AB2ECFB33C7C7FD8A /* template_url_parser.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_parser.cc; sourceTree = "<group>"; };
		3380A6B50F2E9252004EF74F /* render_thread_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_thread_unittest.cc; sourceTree = "<group>"; };
		3380A6B90F2E9275004EF74F /* render_view_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_view_unittest.cc; sourceTree = "<group>"; };
		3380A9AA0F2FC3BF004EF74F /* mock_webkit_glue.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mock_webkit_glue.cc; path = ../webkit/glue/mock_webkit_glue.cc; sourceTree = SOURCE_ROOT; };
		3380A9BF0F2FC61E004EF74F /* render_process_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render_process_unittest.cc; sourceTree = "<group>"; };
		3CCF8AA8A56FF8FE59F0C299 /* template_url.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url.cc; sourceTree = "<group>"; };
		433B6EFB7A1D931A13C9556F /* url_fetcher_protect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_fetcher_protect.h; sourceTree = "<group>"; };
		4D1F59EA0F2A6B590040C1E3 /* image_diff */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = image_diff; sourceTree = BUILT_PRODUCTS_DIR; };
		4D1F59FD0F2A6BBB0040C1E3 /* image_diff.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = image_diff.cc; sourceTree = "<group>"; };
		4D1F5AB10F2A6EE90040C1E3 /* libpng.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libpng.xcodeproj; path = third_party/libpng/libpng.xcodeproj; sourceTree = "<group>"; };
		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 /* user_script_slave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = user_script_slave.cc; sourceTree = "<group>"; };
		4D640CCA0EAE868600EBCFC0 /* user_script_slave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_script_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>"; };
		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>"; };
		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; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		4D7BF8C00E9D4839009A6919 /* navigation_controller_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = navigation_controller_unittest.cc; sourceTree = "<group>"; };
		4D7BF8D20E9D4839009A6919 /* options_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = options_window.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>"; };
		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>"; };
		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>"; };
		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>"; };
		4D7BF9100E9D4839009A6919 /* session_history_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = session_history_uitest.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>"; };
		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>"; };
		4D7BF93B0E9D4839009A6919 /* tab_restore_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab_restore_uitest.cc; 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>"; };
		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>"; };
		4D7BF95B0E9D4839009A6919 /* view_ids.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = view_ids.h; 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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		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>"; };
		4D7FA6210F13CA04004F1B19 /* ui_tests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ui_tests; sourceTree = BUILT_PRODUCTS_DIR; };
		4DCE9E2C0EF0B8C000682526 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; };
		4DDC64500EAE392400FB5EBE /* zlib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = zlib.xcodeproj; path = third_party/zlib/zlib.xcodeproj; sourceTree = "<group>"; };
		778D7927798B7E3FAA498D3D /* url_fetcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fetcher.cc; sourceTree = "<group>"; };
		A54612D90EE9957000A8EE5D /* extensions_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extensions_service.cc; sourceTree = "<group>"; };
		A54612DA0EE9957000A8EE5D /* extensions_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extensions_service.h; sourceTree = "<group>"; };
		A54612DB0EE9958600A8EE5D /* extensions_service_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extensions_service_unittest.cc; sourceTree = "<group>"; };
		A76E42980F28ECAD009A7E88 /* renderer_security_policy.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = renderer_security_policy.cc; path = renderer_host/renderer_security_policy.cc; sourceTree = "<group>"; };
		A76E42990F28ECAD009A7E88 /* renderer_security_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = renderer_security_policy.h; path = renderer_host/renderer_security_policy.h; sourceTree = "<group>"; };
		A76E429A0F28ECAD009A7E88 /* renderer_security_policy_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = renderer_security_policy_unittest.cc; path = renderer_host/renderer_security_policy_unittest.cc; sourceTree = "<group>"; };
		A76E429D0F28ED73009A7E88 /* render_view_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_view_host.cc; path = renderer_host/render_view_host.cc; sourceTree = "<group>"; };
		A76E429E0F28ED73009A7E88 /* render_view_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_view_host.h; path = renderer_host/render_view_host.h; sourceTree = "<group>"; };
		A76E429F0F28ED73009A7E88 /* render_view_host_delegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_view_host_delegate.h; path = renderer_host/render_view_host_delegate.h; sourceTree = "<group>"; };
		A76E42A00F28ED73009A7E88 /* render_view_host_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_view_host_unittest.cc; path = renderer_host/render_view_host_unittest.cc; sourceTree = "<group>"; };
		A76E42A10F28ED73009A7E88 /* render_widget_helper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_widget_helper.cc; path = renderer_host/render_widget_helper.cc; sourceTree = "<group>"; };
		A76E42A20F28ED73009A7E88 /* render_widget_helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_widget_helper.h; path = renderer_host/render_widget_helper.h; sourceTree = "<group>"; };
		A76E42A30F28ED73009A7E88 /* render_widget_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_widget_host.cc; path = renderer_host/render_widget_host.cc; sourceTree = "<group>"; };
		A76E42A40F28ED73009A7E88 /* render_widget_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_widget_host.h; path = renderer_host/render_widget_host.h; sourceTree = "<group>"; };
		A76E42A50F28ED73009A7E88 /* render_widget_host_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_widget_host_view.h; path = renderer_host/render_widget_host_view.h; sourceTree = "<group>"; };
		A76E42A60F28ED73009A7E88 /* render_widget_host_view_win.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_widget_host_view_win.cc; path = renderer_host/render_widget_host_view_win.cc; sourceTree = "<group>"; };
		A76E42A70F28ED73009A7E88 /* render_widget_host_view_win.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_widget_host_view_win.h; path = renderer_host/render_widget_host_view_win.h; sourceTree = "<group>"; };
		A76E42A90F28EDB5009A7E88 /* render_view_context_menu.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_view_context_menu.cc; path = tab_contents/render_view_context_menu.cc; sourceTree = "<group>"; };
		A76E42AA0F28EDB5009A7E88 /* render_view_context_menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_view_context_menu.h; path = tab_contents/render_view_context_menu.h; sourceTree = "<group>"; };
		A76E42AB0F28EDB5009A7E88 /* render_view_context_menu_controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_view_context_menu_controller.cc; path = tab_contents/render_view_context_menu_controller.cc; sourceTree = "<group>"; };
		A76E42AC0F28EDB5009A7E88 /* render_view_context_menu_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_view_context_menu_controller.h; path = tab_contents/render_view_context_menu_controller.h; sourceTree = "<group>"; };
		A76E42AD0F28EDB5009A7E88 /* render_view_host_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_view_host_manager.cc; path = tab_contents/render_view_host_manager.cc; sourceTree = "<group>"; };
		A76E42AE0F28EDB5009A7E88 /* render_view_host_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_view_host_manager.h; path = tab_contents/render_view_host_manager.h; sourceTree = "<group>"; };
		A76E43970F29022A009A7E88 /* browser_render_process_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = browser_render_process_host.h; path = renderer_host/browser_render_process_host.h; sourceTree = "<group>"; };
		A76E43A30F29039C009A7E88 /* browser_render_process_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = browser_render_process_host.cc; path = renderer_host/browser_render_process_host.cc; sourceTree = "<group>"; };
		A7C613B80F30D779008CEE5D /* security_style.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = security_style.h; path = tab_contents/security_style.h; sourceTree = "<group>"; };
		A7C613BF0F30D7E4008CEE5D /* mock_render_process_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mock_render_process_host.cc; path = renderer_host/mock_render_process_host.cc; sourceTree = "<group>"; };
		A7C613C00F30D7E4008CEE5D /* mock_render_process_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mock_render_process_host.h; path = renderer_host/mock_render_process_host.h; sourceTree = "<group>"; };
		A7C613C40F30D82C008CEE5D /* backing_store.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = backing_store.cc; path = renderer_host/backing_store.cc; sourceTree = "<group>"; };
		A7C613C50F30D82C008CEE5D /* backing_store.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = backing_store.h; path = renderer_host/backing_store.h; sourceTree = "<group>"; };
		A7C613DC0F30D886008CEE5D /* cross_site_resource_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = cross_site_resource_handler.cc; path = renderer_host/cross_site_resource_handler.cc; sourceTree = "<group>"; };
		A7C613DD0F30D886008CEE5D /* cross_site_resource_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cross_site_resource_handler.h; path = renderer_host/cross_site_resource_handler.h; sourceTree = "<group>"; };
		A7C6146D0F30DA1D008CEE5D /* ipc_test_sink.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_test_sink.cc; sourceTree = "<group>"; };
		A7C6146E0F30DA1D008CEE5D /* ipc_test_sink.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_test_sink.h; sourceTree = "<group>"; };
		B503E0FB0F01764800547DC6 /* user_script_slave_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = user_script_slave_unittest.cc; 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>"; };
		B555B2160F21504D00F751B9 /* metrics_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = metrics_service.h; path = metrics/metrics_service.h; sourceTree = "<group>"; };
		B555B2170F21504D00F751B9 /* metrics_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = metrics_service.cc; path = metrics/metrics_service.cc; sourceTree = "<group>"; };
		B555B2180F21504D00F751B9 /* metrics_log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = metrics_log.h; path = metrics/metrics_log.h; sourceTree = "<group>"; };
		B555B2190F21504D00F751B9 /* metrics_response_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = metrics_response_unittest.cc; path = metrics/metrics_response_unittest.cc; sourceTree = "<group>"; };
		B555B21A0F21504D00F751B9 /* metrics_response.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = metrics_response.cc; path = metrics/metrics_response.cc; sourceTree = "<group>"; };
		B555B21B0F21504D00F751B9 /* metrics_service_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = metrics_service_uitest.cc; path = metrics/metrics_service_uitest.cc; sourceTree = "<group>"; };
		B555B21C0F21504D00F751B9 /* user_metrics.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = user_metrics.cc; path = metrics/user_metrics.cc; sourceTree = "<group>"; };
		B555B21D0F21504D00F751B9 /* user_metrics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = user_metrics.h; path = metrics/user_metrics.h; sourceTree = "<group>"; };
		B555B21E0F21504D00F751B9 /* metrics_log_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = metrics_log_unittest.cc; path = metrics/metrics_log_unittest.cc; sourceTree = "<group>"; };
		B555B21F0F21504D00F751B9 /* metrics_response.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = metrics_response.h; path = metrics/metrics_response.h; sourceTree = "<group>"; };
		B555B2200F21504D00F751B9 /* metrics_log.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = metrics_log.cc; path = metrics/metrics_log.cc; 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>"; };
		B562E2F40F05843C00FB1A4F /* property_bag_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = property_bag_unittest.cc; sourceTree = "<group>"; };
		B562E2F50F05843C00FB1A4F /* property_bag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = property_bag.h; sourceTree = "<group>"; };
		B562E2F60F05843C00FB1A4F /* property_bag.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = property_bag.cc; sourceTree = "<group>"; };
		B5D16EAB0F21445600861FAC /* ie7_password.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ie7_password.cc; path = password_manager/ie7_password.cc; sourceTree = "<group>"; };
		B5D16EAC0F21445600861FAC /* encryptor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = encryptor.cc; path = password_manager/encryptor.cc; sourceTree = "<group>"; };
		B5D16EAD0F21445600861FAC /* encryptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = encryptor.h; path = password_manager/encryptor.h; sourceTree = "<group>"; };
		B5D16EAE0F21445600861FAC /* ie7_password.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ie7_password.h; path = password_manager/ie7_password.h; sourceTree = "<group>"; };
		B5D16EAF0F21445600861FAC /* password_form_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = password_form_manager.h; path = password_manager/password_form_manager.h; sourceTree = "<group>"; };
		B5D16EB00F21445600861FAC /* password_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = password_manager.h; path = password_manager/password_manager.h; sourceTree = "<group>"; };
		B5D16EB10F21445600861FAC /* encryptor_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = encryptor_unittest.cc; path = password_manager/encryptor_unittest.cc; sourceTree = "<group>"; };
		B5D16EB20F21445600861FAC /* password_form_manager_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = password_form_manager_unittest.cc; path = password_manager/password_form_manager_unittest.cc; sourceTree = "<group>"; };
		B5D16EB30F21445600861FAC /* password_form_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = password_form_manager.cc; path = password_manager/password_form_manager.cc; sourceTree = "<group>"; };
		B5D16EB40F21445600861FAC /* password_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = password_manager.cc; path = password_manager/password_manager.cc; sourceTree = "<group>"; };
		B5D16EC10F2144D500861FAC /* render_process_host.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_process_host.cc; path = renderer_host/render_process_host.cc; sourceTree = "<group>"; };
		B5D16EC20F2144D500861FAC /* render_process_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_process_host.h; path = renderer_host/render_process_host.h; sourceTree = "<group>"; };
		B5D16EC90F21451600861FAC /* ssl_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssl_policy.h; path = ssl/ssl_policy.h; sourceTree = "<group>"; };
		B5D16ECA0F21451600861FAC /* ssl_error_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssl_error_info.h; path = ssl/ssl_error_info.h; sourceTree = "<group>"; };
		B5D16ECB0F21451600861FAC /* ssl_blocking_page.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_blocking_page.cc; path = ssl/ssl_blocking_page.cc; sourceTree = "<group>"; };
		B5D16ECC0F21451600861FAC /* ssl_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_manager.cc; path = ssl/ssl_manager.cc; sourceTree = "<group>"; };
		B5D16ECD0F21451600861FAC /* ssl_blocking_page.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssl_blocking_page.h; path = ssl/ssl_blocking_page.h; sourceTree = "<group>"; };
		B5D16ECE0F21451600861FAC /* ssl_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssl_manager.h; path = ssl/ssl_manager.h; sourceTree = "<group>"; };
		B5D16ED00F21451600861FAC /* ssl_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_uitest.cc; path = ssl/ssl_uitest.cc; sourceTree = "<group>"; };
		B5D16ED10F21451600861FAC /* ssl_policy.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_policy.cc; path = ssl/ssl_policy.cc; sourceTree = "<group>"; };
		B5D16EDA0F21455600861FAC /* template_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url.h; sourceTree = "<group>"; };
		B5D16EDB0F21455600861FAC /* template_url_fetcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_fetcher.cc; sourceTree = "<group>"; };
		B5D16EDC0F21455600861FAC /* template_url_fetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url_fetcher.h; sourceTree = "<group>"; };
		B5D16EDE0F21455600861FAC /* template_url_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url_model.h; sourceTree = "<group>"; };
		B5D16EDF0F21455600861FAC /* template_url_model_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_model_unittest.cc; sourceTree = "<group>"; };
		B5D16EE10F21455600861FAC /* template_url_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url_parser.h; sourceTree = "<group>"; };
		B5D16EE20F21455600861FAC /* template_url_parser_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_parser_unittest.cc; sourceTree = "<group>"; };
		B5D16EE30F21455600861FAC /* template_url_prepopulate_data.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_prepopulate_data.cc; sourceTree = "<group>"; };
		B5D16EE40F21455600861FAC /* template_url_prepopulate_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_url_prepopulate_data.h; sourceTree = "<group>"; };
		B5D16EE50F21455600861FAC /* template_url_prepopulate_data_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_prepopulate_data_unittest.cc; sourceTree = "<group>"; };
		B5D16EE60F21455600861FAC /* template_url_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_unittest.cc; sourceTree = "<group>"; };
		B5D16EF10F2145B600861FAC /* url_fetcher_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fetcher_unittest.cc; sourceTree = "<group>"; };
		B5D16EF30F2145C600861FAC /* url_fixer_upper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_fixer_upper.h; sourceTree = "<group>"; };
		B5D16EF40F2145C600861FAC /* url_fixer_upper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fixer_upper.cc; sourceTree = "<group>"; };
		B5D16EF50F2145C600861FAC /* url_fixer_upper_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = url_fixer_upper_unittest.cc; sourceTree = "<group>"; };
		B5D7CD350EF0702F00EE645F /* ipc_channel_posix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipc_channel_posix.h; sourceTree = "<group>"; };
		B5FDBFAE0EE4623000BEC6E6 /* ipc_tests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ipc_tests; sourceTree = BUILT_PRODUCTS_DIR; };
		B5FDC0570EE488E500BEC6E6 /* ipc_channel_posix.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipc_channel_posix.cc; sourceTree = "<group>"; };
		B6CCB9CE0F1EC32700106F0D /* constrained_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constrained_window.h; path = tab_contents/constrained_window.h; sourceTree = "<group>"; };
		B6CCB9CF0F1EC32700106F0D /* infobar_delegate.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = infobar_delegate.cc; path = tab_contents/infobar_delegate.cc; sourceTree = "<group>"; };
		B6CCB9D00F1EC32700106F0D /* infobar_delegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = infobar_delegate.h; path = tab_contents/infobar_delegate.h; sourceTree = "<group>"; };
		B6CCB9D10F1EC32700106F0D /* interstitial_page.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = interstitial_page.cc; path = tab_contents/interstitial_page.cc; sourceTree = "<group>"; };
		B6CCB9D20F1EC32700106F0D /* interstitial_page.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = interstitial_page.h; path = tab_contents/interstitial_page.h; sourceTree = "<group>"; };
		B6CCB9D30F1EC32700106F0D /* ipc_status_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ipc_status_view.cc; path = tab_contents/ipc_status_view.cc; sourceTree = "<group>"; };
		B6CCB9D40F1EC32700106F0D /* ipc_status_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ipc_status_view.h; path = tab_contents/ipc_status_view.h; sourceTree = "<group>"; };
		B6CCB9D50F1EC32700106F0D /* native_ui_contents.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = native_ui_contents.cc; path = tab_contents/native_ui_contents.cc; sourceTree = "<group>"; };
		B6CCB9D60F1EC32700106F0D /* native_ui_contents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = native_ui_contents.h; path = tab_contents/native_ui_contents.h; sourceTree = "<group>"; };
		B6CCB9D70F1EC32700106F0D /* navigation_controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = navigation_controller.cc; path = tab_contents/navigation_controller.cc; sourceTree = "<group>"; };
		B6CCB9D80F1EC32700106F0D /* navigation_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = navigation_controller.h; path = tab_contents/navigation_controller.h; sourceTree = "<group>"; };
		B6CCB9D90F1EC32700106F0D /* navigation_entry.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = navigation_entry.cc; path = tab_contents/navigation_entry.cc; sourceTree = "<group>"; };
		B6CCB9DA0F1EC32700106F0D /* navigation_entry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = navigation_entry.h; path = tab_contents/navigation_entry.h; sourceTree = "<group>"; };
		B6CCB9DD0F1EC32700106F0D /* page_navigator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = page_navigator.h; path = tab_contents/page_navigator.h; sourceTree = "<group>"; };
		B6CCB9DE0F1EC32700106F0D /* provisional_load_details.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = provisional_load_details.cc; path = tab_contents/provisional_load_details.cc; sourceTree = "<group>"; };
		B6CCB9DF0F1EC32700106F0D /* provisional_load_details.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = provisional_load_details.h; path = tab_contents/provisional_load_details.h; sourceTree = "<group>"; };
		B6CCB9E00F1EC32700106F0D /* site_instance.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = site_instance.cc; path = tab_contents/site_instance.cc; sourceTree = "<group>"; };
		B6CCB9E10F1EC32700106F0D /* site_instance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = site_instance.h; path = tab_contents/site_instance.h; sourceTree = "<group>"; };
		B6CCB9E20F1EC32700106F0D /* status_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = status_view.cc; path = tab_contents/status_view.cc; sourceTree = "<group>"; };
		B6CCB9E30F1EC32700106F0D /* status_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = status_view.h; path = tab_contents/status_view.h; sourceTree = "<group>"; };
		B6CCB9E40F1EC32700106F0D /* tab_contents.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tab_contents.cc; path = tab_contents/tab_contents.cc; sourceTree = "<group>"; };
		B6CCB9E50F1EC32700106F0D /* tab_contents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_contents.h; path = tab_contents/tab_contents.h; sourceTree = "<group>"; };
		B6CCB9E60F1EC32700106F0D /* tab_contents_delegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_contents_delegate.h; path = tab_contents/tab_contents_delegate.h; sourceTree = "<group>"; };
		B6CCB9E70F1EC32700106F0D /* tab_contents_factory.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tab_contents_factory.cc; path = tab_contents/tab_contents_factory.cc; sourceTree = "<group>"; };
		B6CCB9E80F1EC32700106F0D /* tab_contents_factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_contents_factory.h; path = tab_contents/tab_contents_factory.h; sourceTree = "<group>"; };
		B6CCB9E90F1EC32700106F0D /* tab_contents_type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_contents_type.h; path = tab_contents/tab_contents_type.h; sourceTree = "<group>"; };
		B6CCB9EA0F1EC32700106F0D /* tab_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tab_util.cc; path = tab_contents/tab_util.cc; sourceTree = "<group>"; };
		B6CCB9EB0F1EC32700106F0D /* tab_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_util.h; path = tab_contents/tab_util.h; sourceTree = "<group>"; };
		B6CCB9EC0F1EC32700106F0D /* view_source_contents.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = view_source_contents.cc; path = tab_contents/view_source_contents.cc; sourceTree = "<group>"; };
		B6CCB9ED0F1EC32700106F0D /* view_source_contents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = view_source_contents.h; path = tab_contents/view_source_contents.h; sourceTree = "<group>"; };
		B6CCB9EE0F1EC32700106F0D /* view_source_uitest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = view_source_uitest.cc; path = tab_contents/view_source_uitest.cc; sourceTree = "<group>"; };
		B6CCB9EF0F1EC32700106F0D /* web_contents.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = web_contents.cc; path = tab_contents/web_contents.cc; sourceTree = "<group>"; };
		B6CCB9F00F1EC32700106F0D /* web_contents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = web_contents.h; path = tab_contents/web_contents.h; sourceTree = "<group>"; };
		B6CCB9F10F1EC32700106F0D /* web_contents_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = web_contents_unittest.cc; path = tab_contents/web_contents_unittest.cc; sourceTree = "<group>"; };
		B6CCB9F20F1EC32700106F0D /* web_contents_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = web_contents_view.cc; path = tab_contents/web_contents_view.cc; sourceTree = "<group>"; };
		B6CCB9F30F1EC32700106F0D /* web_contents_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = web_contents_view.h; path = tab_contents/web_contents_view.h; sourceTree = "<group>"; };
		B6CCB9F40F1EC32700106F0D /* web_contents_view_win.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = web_contents_view_win.cc; path = tab_contents/web_contents_view_win.cc; sourceTree = "<group>"; };
		B6CCB9F50F1EC32700106F0D /* web_contents_view_win.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = web_contents_view_win.h; path = tab_contents/web_contents_view_win.h; sourceTree = "<group>"; };
		B6CCB9F60F1EC32700106F0D /* web_drag_source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = web_drag_source.cc; path = tab_contents/web_drag_source.cc; sourceTree = "<group>"; };
		B6CCB9F70F1EC32700106F0D /* web_drag_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = web_drag_source.h; path = tab_contents/web_drag_source.h; sourceTree = "<group>"; };
		B6CCB9F80F1EC32700106F0D /* web_drop_target.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = web_drop_target.cc; path = tab_contents/web_drop_target.cc; sourceTree = "<group>"; };
		B6CCB9F90F1EC32700106F0D /* web_drop_target.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = web_drop_target.h; path = tab_contents/web_drop_target.h; sourceTree = "<group>"; };
		E40CC5E10F2E348900708647 /* history_contents_provider.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = history_contents_provider.cc; path = autocomplete/history_contents_provider.cc; sourceTree = "<group>"; };
		E40CC5E20F2E348900708647 /* history_contents_provider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = history_contents_provider.h; path = autocomplete/history_contents_provider.h; sourceTree = "<group>"; };
		E40CC5E40F2E349000708647 /* history_contents_provider_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = history_contents_provider_unittest.cc; path = autocomplete/history_contents_provider_unittest.cc; sourceTree = "<group>"; };
		E40CC5F00F2E34EE00708647 /* bookmark_folder_tree_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bookmark_folder_tree_model.cc; path = bookmarks/bookmark_folder_tree_model.cc; sourceTree = "<group>"; };
		E40CC5F10F2E34EE00708647 /* bookmark_folder_tree_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bookmark_folder_tree_model.h; path = bookmarks/bookmark_folder_tree_model.h; sourceTree = "<group>"; };
		E40CC5F30F2E34F400708647 /* bookmark_folder_tree_model_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bookmark_folder_tree_model_unittest.cc; path = bookmarks/bookmark_folder_tree_model_unittest.cc; sourceTree = "<group>"; };
		E40CC5F50F2E351A00708647 /* bookmark_table_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bookmark_table_model.h; path = bookmarks/bookmark_table_model.h; sourceTree = "<group>"; };
		E40CC5F60F2E351A00708647 /* bookmark_table_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bookmark_table_model.cc; path = bookmarks/bookmark_table_model.cc; sourceTree = "<group>"; };
		E40CC5F80F2E351F00708647 /* bookmark_table_model_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bookmark_table_model_unittest.cc; path = bookmarks/bookmark_table_model_unittest.cc; sourceTree = "<group>"; };
		E43A770F0F16613700ABD5D1 /* chrome_url_request_context.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chrome_url_request_context.h; sourceTree = "<group>"; };
		E43A77100F16613700ABD5D1 /* chrome_url_request_context.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_url_request_context.cc; sourceTree = "<group>"; };
		E43A77150F16616E00ABD5D1 /* download_resource_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = download_resource_handler.h; path = renderer_host/download_resource_handler.h; sourceTree = "<group>"; };
		E43A77160F16616E00ABD5D1 /* download_resource_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = download_resource_handler.cc; path = renderer_host/download_resource_handler.cc; sourceTree = "<group>"; };
		E43A771A0F1661AF00ABD5D1 /* chrome_url_data_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = chrome_url_data_manager.cc; path = dom_ui/chrome_url_data_manager.cc; sourceTree = "<group>"; };
		E43A771B0F1661AF00ABD5D1 /* chrome_url_data_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chrome_url_data_manager.h; path = dom_ui/chrome_url_data_manager.h; sourceTree = "<group>"; };
		E43A78240F17985E00ABD5D1 /* scoped_ole_initializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scoped_ole_initializer.h; sourceTree = "<group>"; };
		E43A78480F179E7E00ABD5D1 /* main_function_params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = main_function_params.h; sourceTree = "<group>"; };
		E43A78730F17A95400ABD5D1 /* sandbox_init_wrapper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sandbox_init_wrapper.cc; sourceTree = "<group>"; };
		E43A78740F17A95400ABD5D1 /* sandbox_init_wrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sandbox_init_wrapper.h; sourceTree = "<group>"; };
		E43A79D60F1D192000ABD5D1 /* aliasCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = aliasCursor.png; sourceTree = "<group>"; };
		E43A79D70F1D192000ABD5D1 /* cellCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cellCursor.png; sourceTree = "<group>"; };
		E43A79D80F1D192000ABD5D1 /* contextMenuCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = contextMenuCursor.png; sourceTree = "<group>"; };
		E43A79D90F1D192000ABD5D1 /* copyCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = copyCursor.png; sourceTree = "<group>"; };
		E43A79DA0F1D192000ABD5D1 /* crossHairCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = crossHairCursor.png; sourceTree = "<group>"; };
		E43A79DB0F1D192000ABD5D1 /* eastResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = eastResizeCursor.png; sourceTree = "<group>"; };
		E43A79DC0F1D192000ABD5D1 /* eastWestResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = eastWestResizeCursor.png; sourceTree = "<group>"; };
		E43A79DD0F1D192000ABD5D1 /* helpCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = helpCursor.png; sourceTree = "<group>"; };
		E43A79DE0F1D192000ABD5D1 /* linkCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = linkCursor.png; sourceTree = "<group>"; };
		E43A79DF0F1D192000ABD5D1 /* missingImage.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = missingImage.png; sourceTree = "<group>"; };
		E43A79E00F1D192000ABD5D1 /* moveCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = moveCursor.png; sourceTree = "<group>"; };
		E43A79E10F1D192000ABD5D1 /* noDropCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = noDropCursor.png; sourceTree = "<group>"; };
		E43A79E20F1D192000ABD5D1 /* noneCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = noneCursor.png; sourceTree = "<group>"; };
		E43A79E30F1D192000ABD5D1 /* northEastResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = northEastResizeCursor.png; sourceTree = "<group>"; };
		E43A79E40F1D192000ABD5D1 /* northEastSouthWestResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = northEastSouthWestResizeCursor.png; sourceTree = "<group>"; };
		E43A79E50F1D192000ABD5D1 /* northResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = northResizeCursor.png; sourceTree = "<group>"; };
		E43A79E60F1D192000ABD5D1 /* northSouthResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = northSouthResizeCursor.png; sourceTree = "<group>"; };
		E43A79E70F1D192000ABD5D1 /* northWestResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = northWestResizeCursor.png; sourceTree = "<group>"; };
		E43A79E80F1D192000ABD5D1 /* northWestSouthEastResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = northWestSouthEastResizeCursor.png; sourceTree = "<group>"; };
		E43A79E90F1D192000ABD5D1 /* notAllowedCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = notAllowedCursor.png; sourceTree = "<group>"; };
		E43A79EA0F1D192000ABD5D1 /* progressCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progressCursor.png; sourceTree = "<group>"; };
		E43A79EB0F1D192000ABD5D1 /* southEastResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = southEastResizeCursor.png; sourceTree = "<group>"; };
		E43A79EC0F1D192000ABD5D1 /* southResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = southResizeCursor.png; sourceTree = "<group>"; };
		E43A79ED0F1D192000ABD5D1 /* southWestResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = southWestResizeCursor.png; sourceTree = "<group>"; };
		E43A79EE0F1D192000ABD5D1 /* textAreaResizeCorner.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = textAreaResizeCorner.png; sourceTree = "<group>"; };
		E43A79EF0F1D192000ABD5D1 /* verticalTextCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = verticalTextCursor.png; sourceTree = "<group>"; };
		E43A79F00F1D192000ABD5D1 /* waitCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = waitCursor.png; sourceTree = "<group>"; };
		E43A79F10F1D192000ABD5D1 /* westResizeCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = westResizeCursor.png; sourceTree = "<group>"; };
		E43A79F20F1D192000ABD5D1 /* zoomInCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = zoomInCursor.png; sourceTree = "<group>"; };
		E43A79F30F1D192000ABD5D1 /* zoomOutCursor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = zoomOutCursor.png; sourceTree = "<group>"; };
		E45060E40EE87B86003BE099 /* Chromium.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Chromium.app; sourceTree = BUILT_PRODUCTS_DIR; };
		E45060E60EE87B86003BE099 /* app-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "app-Info.plist"; sourceTree = "<group>"; };
		E45060F10EE87D41003BE099 /* chrome_exe_main.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = chrome_exe_main.mm; sourceTree = "<group>"; };
		E45062C60EE8939A003BE099 /* chromium.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = chromium.icns; path = theme/chromium/chromium.icns; sourceTree = "<group>"; };
		E45062EA0EE9877F003BE099 /* chrome_dll_main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chrome_dll_main.cc; sourceTree = "<group>"; };
		E450634E0EE9BE29003BE099 /* browser_main_mac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = browser_main_mac.mm; sourceTree = "<group>"; };
		E45065DD0EEEC6FF003BE099 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
		E45065DF0EEEC709003BE099 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
		E45075AA0F150564003BE099 /* keyword_provider.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = keyword_provider.cc; path = autocomplete/keyword_provider.cc; sourceTree = "<group>"; };
		E45075B10F1505C0003BE099 /* bookmark_codec.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bookmark_codec.cc; path = bookmarks/bookmark_codec.cc; sourceTree = "<group>"; };
		E45075B30F1505C9003BE099 /* bookmark_html_writer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bookmark_html_writer.cc; path = bookmarks/bookmark_html_writer.cc; sourceTree = "<group>"; };
		E45075C00F1506F2003BE099 /* firefox2_importer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = firefox2_importer.cc; path = importer/firefox2_importer.cc; sourceTree = "<group>"; };
		E45075C30F150701003BE099 /* firefox3_importer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = firefox3_importer.cc; path = importer/firefox3_importer.cc; sourceTree = "<group>"; };
		E45075C50F15070D003BE099 /* firefox_profile_lock.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = firefox_profile_lock.cc; path = importer/firefox_profile_lock.cc; sourceTree = "<group>"; };
		E45075C70F15071C003BE099 /* firefox2_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = firefox2_importer.h; path = importer/firefox2_importer.h; sourceTree = "<group>"; };
		E45075C80F150729003BE099 /* firefox3_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = firefox3_importer.h; path = importer/firefox3_importer.h; sourceTree = "<group>"; };
		E45075C90F150731003BE099 /* firefox_profile_lock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = firefox_profile_lock.h; path = importer/firefox_profile_lock.h; sourceTree = "<group>"; };
		E45075CB0F150741003BE099 /* mork_reader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mork_reader.h; path = importer/mork_reader.h; sourceTree = "<group>"; };
		E45075CC0F150741003BE099 /* mork_reader.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mork_reader.cc; path = importer/mork_reader.cc; sourceTree = "<group>"; };
		E45075D00F150764003BE099 /* keyword_provider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = keyword_provider.h; path = autocomplete/keyword_provider.h; sourceTree = "<group>"; };
		E45075D10F150772003BE099 /* bookmark_codec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bookmark_codec.h; path = bookmarks/bookmark_codec.h; sourceTree = "<group>"; };
		E45075D20F150778003BE099 /* bookmark_html_writer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bookmark_html_writer.h; path = bookmarks/bookmark_html_writer.h; sourceTree = "<group>"; };
		E45075DA0F150A53003BE099 /* async_resource_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = async_resource_handler.cc; path = renderer_host/async_resource_handler.cc; sourceTree = "<group>"; };
		E45075DB0F150A53003BE099 /* async_resource_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = async_resource_handler.h; path = renderer_host/async_resource_handler.h; sourceTree = "<group>"; };
		E45075DE0F150A6F003BE099 /* buffered_resource_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buffered_resource_handler.h; path = renderer_host/buffered_resource_handler.h; sourceTree = "<group>"; };
		E45075DF0F150A6F003BE099 /* buffered_resource_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = buffered_resource_handler.cc; path = renderer_host/buffered_resource_handler.cc; sourceTree = "<group>"; };
		E45075E00F150A6F003BE099 /* download_throttling_resource_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = download_throttling_resource_handler.h; path = renderer_host/download_throttling_resource_handler.h; sourceTree = "<group>"; };
		E45075E10F150A6F003BE099 /* download_throttling_resource_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = download_throttling_resource_handler.cc; path = renderer_host/download_throttling_resource_handler.cc; sourceTree = "<group>"; };
		E45075E60F150ABA003BE099 /* safe_browsing_resource_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = safe_browsing_resource_handler.cc; path = renderer_host/safe_browsing_resource_handler.cc; sourceTree = "<group>"; };
		E45075E70F150ABA003BE099 /* safe_browsing_resource_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = safe_browsing_resource_handler.h; path = renderer_host/safe_browsing_resource_handler.h; sourceTree = "<group>"; };
		E45075E80F150ABA003BE099 /* save_file_resource_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = save_file_resource_handler.cc; path = renderer_host/save_file_resource_handler.cc; sourceTree = "<group>"; };
		E45075E90F150ABA003BE099 /* save_file_resource_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = save_file_resource_handler.h; path = renderer_host/save_file_resource_handler.h; sourceTree = "<group>"; };
		E45075EA0F150ABA003BE099 /* sync_resource_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sync_resource_handler.cc; path = renderer_host/sync_resource_handler.cc; sourceTree = "<group>"; };
		E45075EB0F150ABA003BE099 /* sync_resource_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sync_resource_handler.h; path = renderer_host/sync_resource_handler.h; sourceTree = "<group>"; };
		E45075F20F150C01003BE099 /* session_command.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_command.h; path = sessions/session_command.h; sourceTree = "<group>"; };
		E45075F30F150C01003BE099 /* session_command.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_command.cc; path = sessions/session_command.cc; sourceTree = "<group>"; };
		E45075F50F150C0C003BE099 /* session_id.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_id.h; path = sessions/session_id.h; sourceTree = "<group>"; };
		E45075F60F150C0C003BE099 /* session_id.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_id.cc; path = sessions/session_id.cc; sourceTree = "<group>"; };
		E450761E0F150E0C003BE099 /* web_database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = web_database.cc; path = webdata/web_database.cc; sourceTree = "<group>"; };
		E450761F0F150E0C003BE099 /* web_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = web_database.h; path = webdata/web_database.h; sourceTree = "<group>"; };
		E45076D60F1538E4003BE099 /* dom_automation_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dom_automation_controller.h; path = automation/dom_automation_controller.h; sourceTree = "<group>"; };
		E45076D70F1538E4003BE099 /* dom_automation_controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = dom_automation_controller.cc; path = automation/dom_automation_controller.cc; sourceTree = "<group>"; };
		E45076E30F153AB6003BE099 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unzip.h; sourceTree = "<group>"; };
		E45076E40F153AB6003BE099 /* unzip.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unzip.cc; sourceTree = "<group>"; };
		E45076E80F153B06003BE099 /* unzip_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unzip_unittest.cc; sourceTree = "<group>"; };
		E46C45980F1F88D100B393B8 /* app_controller_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = app_controller_mac.h; sourceTree = "<group>"; };
		E46C45990F1F88D100B393B8 /* app_controller_mac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = app_controller_mac.mm; sourceTree = "<group>"; };
		E46C46C30F1F9AE200B393B8 /* temp_scaffolding_stubs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = temp_scaffolding_stubs.h; sourceTree = "<group>"; };
		E46C46C40F1F9AE200B393B8 /* temp_scaffolding_stubs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = temp_scaffolding_stubs.cpp; sourceTree = "<group>"; };
		E46C4B4B0F21098F00B393B8 /* worker_thread_ticker_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = worker_thread_ticker_unittest.cc; sourceTree = "<group>"; };
		E46C4ED20F27A94100B393B8 /* command_updater.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = command_updater.h; sourceTree = "<group>"; };
		E46C4ED30F27A94100B393B8 /* command_updater.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = command_updater.cc; sourceTree = "<group>"; };
		E46C4EF20F27A9B000B393B8 /* command_updater_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = command_updater_unittest.cc; sourceTree = "<group>"; };
		E46C504F0F291C0600B393B8 /* star.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; name = star.pdf; path = theme/star.pdf; sourceTree = "<group>"; };
		E46C50510F291C0E00B393B8 /* back.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; name = back.pdf; path = theme/back.pdf; sourceTree = "<group>"; };
		E46C50530F291C1E00B393B8 /* forward.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; name = forward.pdf; path = theme/forward.pdf; sourceTree = "<group>"; };
		E46C50540F291C1E00B393B8 /* reload.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; name = reload.pdf; path = theme/reload.pdf; sourceTree = "<group>"; };
		E46C50570F291C3B00B393B8 /* newtab.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; name = newtab.pdf; path = theme/newtab.pdf; sourceTree = "<group>"; };
		E46C50D50F292EAA00B393B8 /* tab_bar_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_bar_view.h; path = cocoa/tab_bar_view.h; sourceTree = "<group>"; };
		E46C50D60F292EAA00B393B8 /* tab_bar_view.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = tab_bar_view.mm; path = cocoa/tab_bar_view.mm; sourceTree = "<group>"; };
		E46C50D70F292EAA00B393B8 /* tab_cell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_cell.h; path = cocoa/tab_cell.h; sourceTree = "<group>"; };
		E46C50D80F292EAA00B393B8 /* tab_cell.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = tab_cell.mm; path = cocoa/tab_cell.mm; sourceTree = "<group>"; };
		E46C50E80F2A11FC00B393B8 /* tab_contents_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_contents_controller.h; path = cocoa/tab_contents_controller.h; sourceTree = "<group>"; };
		E46C50E90F2A11FC00B393B8 /* tab_contents_controller.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = tab_contents_controller.mm; path = cocoa/tab_contents_controller.mm; sourceTree = "<group>"; };
		E46C50EE0F2A12DC00B393B8 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/TabContents.xib; sourceTree = "<group>"; };
		E46C51230F2A14A300B393B8 /* go.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; name = go.pdf; path = theme/go.pdf; sourceTree = "<group>"; };
		E46C51620F2A1DAB00B393B8 /* toolbar_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = toolbar_view.h; path = cocoa/toolbar_view.h; sourceTree = "<group>"; };
		E46C51630F2A1DAB00B393B8 /* toolbar_view.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = toolbar_view.mm; path = cocoa/toolbar_view.mm; sourceTree = "<group>"; };
		E46C51980F2A20CC00B393B8 /* toolbar_button_cell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = toolbar_button_cell.h; path = cocoa/toolbar_button_cell.h; sourceTree = "<group>"; };
		E46C51990F2A20CC00B393B8 /* toolbar_button_cell.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = toolbar_button_cell.mm; path = cocoa/toolbar_button_cell.mm; sourceTree = "<group>"; };
		E46C53A20F2F660900B393B8 /* tab_strip_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tab_strip_model.cc; path = tabs/tab_strip_model.cc; sourceTree = "<group>"; };
		E46C53A30F2F660900B393B8 /* tab_strip_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_strip_model.h; path = tabs/tab_strip_model.h; sourceTree = "<group>"; };
		E46C53A80F2F662F00B393B8 /* tab_strip_model_order_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tab_strip_model_order_controller.h; path = tabs/tab_strip_model_order_controller.h; sourceTree = "<group>"; };
		E46C53A90F2F662F00B393B8 /* tab_strip_model_order_controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tab_strip_model_order_controller.cc; path = tabs/tab_strip_model_order_controller.cc; sourceTree = "<group>"; };
		E46C53E70F2F69AD00B393B8 /* tab_strip_model_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tab_strip_model_unittest.cc; path = tabs/tab_strip_model_unittest.cc; sourceTree = "<group>"; };
		E48B684C0F2630D3002E47EC /* browser_window_factory.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = browser_window_factory.mm; sourceTree = "<group>"; };
		E48B68550F26330C002E47EC /* browser_window_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_window_controller.h; sourceTree = "<group>"; };
		E48B68560F26330C002E47EC /* browser_window_controller.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = browser_window_controller.mm; sourceTree = "<group>"; };
		E48B68620F2637B6002E47EC /* browser_window_cocoa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browser_window_cocoa.h; sourceTree = "<group>"; };
		E48B68630F2637B6002E47EC /* browser_window_cocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = browser_window_cocoa.mm; sourceTree = "<group>"; };
		E48B689A0F263DF5002E47EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/BrowserWindow.xib; sourceTree = "<group>"; };
		E48B6C260F2783E9002E47EC /* extension_protocols.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extension_protocols.h; sourceTree = "<group>"; };
		E48B6C270F2783E9002E47EC /* extension_protocols.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extension_protocols.cc; sourceTree = "<group>"; };
		E48B6C3A0F27844F002E47EC /* web_data_service.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = web_data_service.h; path = webdata/web_data_service.h; sourceTree = "<group>"; };
		E48B6C3B0F27844F002E47EC /* web_data_service.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = web_data_service.cc; path = webdata/web_data_service.cc; 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>"; };
		E4F324400EE5CE94002533CE /* extension.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extension.cc; sourceTree = "<group>"; };
		E4F324410EE5CE94002533CE /* extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extension.h; sourceTree = "<group>"; };
		E4F324420EE5CE94002533CE /* extension_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extension_unittest.cc; sourceTree = "<group>"; };
		E4F324780EE5D17E002533CE /* referrer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = referrer.h; sourceTree = "<group>"; };
		E4F324790EE5D17E002533CE /* referrer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = referrer.cc; sourceTree = "<group>"; };
		EA72C084DB3FC0FC595E525E /* template_url_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template_url_model.cc; sourceTree = "<group>"; };
		EA72CF50C0AB4492A644C703 /* url_fetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url_fetcher.h; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		4D1F59E80F2A6B590040C1E3 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D1F5AC90F2A6FBF0040C1E3 /* CoreFoundation.framework in Frameworks */,
				4D1F5B010F2A70330040C1E3 /* Foundation.framework in Frameworks */,
				4D1F5A060F2A6D170040C1E3 /* libbase.a in Frameworks */,
				4D1F5AAE0F2A6ECB0040C1E3 /* libbase_gfx.a in Frameworks */,
				4D1F5B000F2A70210040C1E3 /* libicudata.a in Frameworks */,
				4D1F5AFC0F2A700B0040C1E3 /* libicui18n.a in Frameworks */,
				4D1F5AC30F2A6F3B0040C1E3 /* libicuuc.a in Frameworks */,
				4D1F5AB70F2A6EF40040C1E3 /* libpng.a in Frameworks */,
				4D1F5AF80F2A6FE00040C1E3 /* libskia.a in Frameworks */,
				4D1F5ABD0F2A6F100040C1E3 /* libzlib.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		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 = (
				E45066CE0EEF1AA7003BE099 /* AppKit.framework in Frameworks */,
				4D7BFDD20E9D5295009A6919 /* CoreFoundation.framework in Frameworks */,
				E45066CD0EEF1AA7003BE099 /* 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 */,
				B503E1030F017C1000547DC6 /* librenderer.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;
		};
		4D7FA61F0F13CA04004F1B19 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D7FA6940F13CC01004F1B19 /* AppKit.framework in Frameworks */,
				4D7FA6660F13CBF8004F1B19 /* CoreFoundation.framework in Frameworks */,
				4D7FA6490F13CB9D004F1B19 /* libbase.a in Frameworks */,
				4D7FA75F0F13CC58004F1B19 /* libbrowser.a in Frameworks */,
				4D7FA75B0F13CC4B004F1B19 /* libcommon.a in Frameworks */,
				4D7FA7540F13CC31004F1B19 /* libgtest.a in Frameworks */,
				4D7FA65E0F13CBDD004F1B19 /* libicudata.a in Frameworks */,
				4D7FA7490F13CC0D004F1B19 /* libicui18n.a in Frameworks */,
				4D7FA6600F13CBDD004F1B19 /* libicuuc.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5FDBFAC0EE4623000BEC6E6 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4DCE9DDF0EF0B73300682526 /* AppKit.framework in Frameworks */,
				B5FDC1CA0EE48ADB00BEC6E6 /* CoreFoundation.framework in Frameworks */,
				4DCE9DE00EF0B73300682526 /* Foundation.framework in Frameworks */,
				B5FDC1CC0EE48ADB00BEC6E6 /* libbase.a in Frameworks */,
				E4F3258A0EE8375A002533CE /* libbase_gfx.a in Frameworks */,
				B5FDC1D00EE48ADB00BEC6E6 /* libcommon.a in Frameworks */,
				B5FDC1D10EE48ADB00BEC6E6 /* libevent.a in Frameworks */,
				E4F3258C0EE83767002533CE /* libgoogleurl.a in Frameworks */,
				B5FDC1D30EE48ADB00BEC6E6 /* libgtest.a in Frameworks */,
				B5FDC1D40EE48ADB00BEC6E6 /* libicudata.a in Frameworks */,
				B5FDC2180EE48F4100BEC6E6 /* libicui18n.a in Frameworks */,
				B5FDC1D60EE48ADB00BEC6E6 /* libicuuc.a in Frameworks */,
				E4F325880EE83745002533CE /* libskia.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		E45060E20EE87B86003BE099 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E45065DE0EEEC6FF003BE099 /* AppKit.framework in Frameworks */,
				E45065E00EEEC709003BE099 /* Foundation.framework in Frameworks */,
				E48B67320F2625B8002E47EC /* libgoogleurl.a in Frameworks */,
				E45062680EE890C2003BE099 /* libbase.a in Frameworks */,
				E48B67ED0F262823002E47EC /* libbase_gfx.a in Frameworks */,
				E45063130EE990A4003BE099 /* libbrowser.a in Frameworks */,
				E45063120EE99096003BE099 /* libcommon.a in Frameworks */,
				E450631C0EE990FA003BE099 /* libevent.a in Frameworks */,
				E45062A90EE89154003BE099 /* libicudata.a in Frameworks */,
				E45062A70EE89146003BE099 /* libicui18n.a in Frameworks */,
				E45062AC0EE89154003BE099 /* libicuuc.a in Frameworks */,
				E48B67CB0F262607002E47EC /* libmodp_b64.a in Frameworks */,
				E48B66A80F26257E002E47EC /* libnet.a in Frameworks */,
				E45063140EE990AB003BE099 /* librenderer.a in Frameworks */,
				E48B67CF0F26263C002E47EC /* libskia.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		4D1F59FA0F2A6B8A0040C1E3 /* tools */ = {
			isa = PBXGroup;
			children = (
				4D1F59FB0F2A6B980040C1E3 /* test */,
			);
			path = tools;
			sourceTree = "<group>";
		};
		4D1F59FB0F2A6B980040C1E3 /* test */ = {
			isa = PBXGroup;
			children = (
				4D1F59FC0F2A6BA60040C1E3 /* image_diff */,
			);
			path = test;
			sourceTree = "<group>";
		};
		4D1F59FC0F2A6BA60040C1E3 /* image_diff */ = {
			isa = PBXGroup;
			children = (
				4D1F59FD0F2A6BBB0040C1E3 /* image_diff.cc */,
			);
			path = image_diff;
			sourceTree = "<group>";
		};
		4D1F5AB20F2A6EE90040C1E3 /* Products */ = {
			isa = PBXGroup;
			children = (
				4D1F5AB60F2A6EE90040C1E3 /* libpng.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D640CB90EAE863E00EBCFC0 /* renderer */ = {
			isa = PBXGroup;
			children = (
				E45076D40F1538D2003BE099 /* automation */,
				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 */,
				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 */,
				3380A9BF0F2FC61E004EF74F /* render_process_unittest.cc */,
				3380A9AA0F2FC3BF004EF74F /* mock_webkit_glue.cc */,
				4D640CD10EAE868600EBCFC0 /* render_thread.cc */,
				3380A6B50F2E9252004EF74F /* render_thread_unittest.cc */,
				4D640CD20EAE868600EBCFC0 /* render_thread.h */,
				4D640CD30EAE868600EBCFC0 /* render_view.cc */,
				3380A6B90F2E9275004EF74F /* render_view_unittest.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 */,
				4D640CC90EAE868600EBCFC0 /* user_script_slave.cc */,
				4D640CCA0EAE868600EBCFC0 /* user_script_slave.h */,
				B503E0FB0F01764800547DC6 /* user_script_slave_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 */,
				4D7BF3380E9D479D009A6919 /* Source */,
				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 = (
				E45060E40EE87B86003BE099 /* Chromium.app */,
				4D7BF3060E9D477E009A6919 /* libbrowser.a */,
				4D7BFC1A0E9D4CB9009A6919 /* libcommon.a */,
				4D640CEB0EAE86BD00EBCFC0 /* librenderer.a */,
				4D1F59EA0F2A6B590040C1E3 /* image_diff */,
				B5FDBFAE0EE4623000BEC6E6 /* ipc_tests */,
				4D7FA6210F13CA04004F1B19 /* ui_tests */,
				4D7BFB2D0E9D4BE5009A6919 /* unit_tests */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		4D7BF3380E9D479D009A6919 /* Source */ = {
			isa = PBXGroup;
			children = (
				E45060DE0EE8784C003BE099 /* app */,
				4D7BF8210E9D47FB009A6919 /* browser */,
				4D7BFB840E9D4C6F009A6919 /* common */,
				4D640CB90EAE863E00EBCFC0 /* renderer */,
				4D7BFCEB0E9D4DDA009A6919 /* test */,
				4D1F59FA0F2A6B8A0040C1E3 /* tools */,
			);
			name = Source;
			sourceTree = "<group>";
		};
		4D7BF8210E9D47FB009A6919 /* browser */ = {
			isa = PBXGroup;
			children = (
				E45075A30F150543003BE099 /* autocomplete */,
				E48FB9600EC4EA270052B72B /* automation */,
				E45075AE0F1505A6003BE099 /* bookmarks */,
				E46C50D10F292E9B00B393B8 /* cocoa */,
				E43A77190F16618C00ABD5D1 /* dom_ui */,
				4D7BF9C80E9D48B0009A6919 /* download */,
				E4F3243F0EE5CE94002533CE /* extensions */,
				4D7BF9E30E9D48E0009A6919 /* history */,
				E45075BE0F1506D9003BE099 /* importer */,
				B555B20F0F21503700F751B9 /* metrics */,
				4D7BFA670E9D4981009A6919 /* net */,
				B5D16EA10F21444000861FAC /* password_manager */,
				4D7BFA7E0E9D49A4009A6919 /* printing */,
				E45075D80F150A3B003BE099 /* render_host */,
				4D7BFACD0E9D49DE009A6919 /* safe_browsing */,
				B5D16ED80F21455600861FAC /* search_engines */,
				E45075F00F150BEA003BE099 /* sessions */,
				B5D16EC80F2144F700861FAC /* ssl */,
				B6CCB9BA0F1EC2E100106F0D /* tab_contents */,
				E46C538C0F2F65CA00B393B8 /* tabs */,
				E450761C0F150DF9003BE099 /* webdata */,
				4D7BF8240E9D4839009A6919 /* alternate_nav_url_fetcher.cc */,
				4D7BF8250E9D4839009A6919 /* alternate_nav_url_fetcher.h */,
				E46C45980F1F88D100B393B8 /* app_controller_mac.h */,
				E46C45990F1F88D100B393B8 /* app_controller_mac.mm */,
				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 */,
				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 */,
				E450634E0EE9BE29003BE099 /* browser_main_mac.mm */,
				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 */,
				4D7BF8490E9D4839009A6919 /* browser_uitest.cc */,
				4D7BF84A0E9D4839009A6919 /* browser_url_handler.cc */,
				4D7BF84B0E9D4839009A6919 /* browser_url_handler.h */,
				4D7BF84D0E9D4839009A6919 /* browser_window.h */,
				E48B68620F2637B6002E47EC /* browser_window_cocoa.h */,
				E48B68630F2637B6002E47EC /* browser_window_cocoa.mm */,
				E48B68550F26330C002E47EC /* browser_window_controller.h */,
				E48B68560F26330C002E47EC /* browser_window_controller.mm */,
				E48B684C0F2630D3002E47EC /* browser_window_factory.mm */,
				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 */,
				E46C4EF20F27A9B000B393B8 /* command_updater_unittest.cc */,
				E46C4ED20F27A94100B393B8 /* command_updater.h */,
				E46C4ED30F27A94100B393B8 /* command_updater.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 */,
				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 */,
				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 */,
				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 */,
				4D7BF8990E9D4839009A6919 /* iframe_uitest.cc */,
				4D7BF89A0E9D4839009A6919 /* images_uitest.cc */,
				4D7BF89B0E9D4839009A6919 /* ime_input.cc */,
				4D7BF89C0E9D4839009A6919 /* ime_input.h */,
				4D7BF89E0E9D4839009A6919 /* interstitial_page_uitest.cc */,
				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 */,
				4D7BF8BA0E9D4839009A6919 /* modal_html_dialog_delegate.cc */,
				4D7BF8BB0E9D4839009A6919 /* modal_html_dialog_delegate.h */,
				4D7BF8C00E9D4839009A6919 /* navigation_controller_unittest.cc */,
				4D7BF8D20E9D4839009A6919 /* options_window.h */,
				4D7BF8D40E9D4839009A6919 /* page_state.cc */,
				4D7BF8D50E9D4839009A6919 /* page_state.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 */,
				4D7BF8FE0E9D4839009A6919 /* repost_form_warning_dialog.cc */,
				4D7BF8FF0E9D4839009A6919 /* repost_form_warning_dialog.h */,
				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 */,
				4D7BF9100E9D4839009A6919 /* session_history_uitest.cc */,
				4D7BF91A0E9D4839009A6919 /* session_startup_pref.cc */,
				4D7BF91B0E9D4839009A6919 /* session_startup_pref.h */,
				4D7BF91C0E9D4839009A6919 /* shell_dialogs.h */,
				4D7BF91D0E9D4839009A6919 /* shell_integration.cc */,
				4D7BF91E0E9D4839009A6919 /* shell_integration.h */,
				4D7BF9210E9D4839009A6919 /* site_instance_unittest.cc */,
				4D7BF9220E9D4839009A6919 /* spellcheck_worditerator.cc */,
				4D7BF9230E9D4839009A6919 /* spellcheck_worditerator.h */,
				4D7BF9240E9D4839009A6919 /* spellchecker.cc */,
				4D7BF9250E9D4839009A6919 /* spellchecker.h */,
				4D7BF93B0E9D4839009A6919 /* tab_restore_uitest.cc */,
				4D7BF93E0E9D4839009A6919 /* task_manager.cc */,
				4D7BF93F0E9D4839009A6919 /* task_manager.h */,
				4D7BF9400E9D4839009A6919 /* task_manager_resource_providers.cc */,
				4D7BF9410E9D4839009A6919 /* task_manager_resource_providers.h */,
				4D7BF94F0E9D4839009A6919 /* toolbar_model.cc */,
				4D7BF9500E9D4839009A6919 /* toolbar_model.h */,
				4D7BF95B0E9D4839009A6919 /* view_ids.h */,
				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 */,
				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 = (
				E43A770F0F16613700ABD5D1 /* chrome_url_request_context.h */,
				E43A77100F16613700ABD5D1 /* chrome_url_request_context.cc */,
				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 */,
				E4F324780EE5D17E002533CE /* referrer.h */,
				E4F324790EE5D17E002533CE /* referrer.cc */,
				4D7BFA720E9D4981009A6919 /* sdch_dictionary_fetcher.cc */,
				4D7BFA730E9D4981009A6919 /* sdch_dictionary_fetcher.h */,
				778D7927798B7E3FAA498D3D /* url_fetcher.cc */,
				EA72CF50C0AB4492A644C703 /* url_fetcher.h */,
				0B7CC9C105E90E0665852528 /* url_fetcher_protect.cc */,
				433B6EFB7A1D931A13C9556F /* url_fetcher_protect.h */,
				B5D16EF10F2145B600861FAC /* url_fetcher_unittest.cc */,
				B5D16EF40F2145C600861FAC /* url_fixer_upper.cc */,
				B5D16EF30F2145C600861FAC /* url_fixer_upper.h */,
				B5D16EF50F2145C600861FAC /* url_fixer_upper_unittest.cc */,
			);
			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 */,
				4D1F5AB10F2A6EE90040C1E3 /* libpng.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 */,
				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 */,
				4D7BFBAA0E9D4C9F009A6919 /* ipc_channel.h */,
				B5FDC0570EE488E500BEC6E6 /* ipc_channel_posix.cc */,
				B5D7CD350EF0702F00EE645F /* ipc_channel_posix.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 */,
				A7C6146D0F30DA1D008CEE5D /* ipc_test_sink.cc */,
				A7C6146E0F30DA1D008CEE5D /* ipc_test_sink.h */,
				4D7BFBBE0E9D4C9F009A6919 /* ipc_tests.cc */,
				4D7BFBBF0E9D4C9F009A6919 /* ipc_tests.h */,
				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 */,
				E43A78480F179E7E00ABD5D1 /* main_function_params.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 */,
				B562E2F40F05843C00FB1A4F /* property_bag_unittest.cc */,
				B562E2F50F05843C00FB1A4F /* property_bag.h */,
				B562E2F60F05843C00FB1A4F /* property_bag.cc */,
				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 */,
				E43A78730F17A95400ABD5D1 /* sandbox_init_wrapper.cc */,
				E43A78740F17A95400ABD5D1 /* sandbox_init_wrapper.h */,
				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 */,
				E46C46C30F1F9AE200B393B8 /* temp_scaffolding_stubs.h */,
				E46C46C40F1F9AE200B393B8 /* temp_scaffolding_stubs.cpp */,
				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 */,
				E45076E30F153AB6003BE099 /* unzip.h */,
				E45076E40F153AB6003BE099 /* unzip.cc */,
				E45076E80F153B06003BE099 /* unzip_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 */,
				E46C4B4B0F21098F00B393B8 /* worker_thread_ticker_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 */,
				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 */,
				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 = (
				E45065DF0EEEC709003BE099 /* Foundation.framework */,
				E45065DD0EEEC6FF003BE099 /* AppKit.framework */,
				4D7BFDD10E9D5295009A6919 /* CoreFoundation.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>";
		};
		4DDC64510EAE392400FB5EBE /* Products */ = {
			isa = PBXGroup;
			children = (
				4DDC64550EAE392400FB5EBE /* libzlib.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		B555B20F0F21503700F751B9 /* metrics */ = {
			isa = PBXGroup;
			children = (
				B555B2200F21504D00F751B9 /* metrics_log.cc */,
				B555B2180F21504D00F751B9 /* metrics_log.h */,
				B555B21E0F21504D00F751B9 /* metrics_log_unittest.cc */,
				B555B21A0F21504D00F751B9 /* metrics_response.cc */,
				B555B21F0F21504D00F751B9 /* metrics_response.h */,
				B555B2190F21504D00F751B9 /* metrics_response_unittest.cc */,
				B555B2170F21504D00F751B9 /* metrics_service.cc */,
				B555B2160F21504D00F751B9 /* metrics_service.h */,
				B555B21B0F21504D00F751B9 /* metrics_service_uitest.cc */,
				B555B21C0F21504D00F751B9 /* user_metrics.cc */,
				B555B21D0F21504D00F751B9 /* user_metrics.h */,
			);
			name = metrics;
			sourceTree = "<group>";
		};
		B5D16EA10F21444000861FAC /* password_manager */ = {
			isa = PBXGroup;
			children = (
				B5D16EAC0F21445600861FAC /* encryptor.cc */,
				B5D16EAD0F21445600861FAC /* encryptor.h */,
				B5D16EB10F21445600861FAC /* encryptor_unittest.cc */,
				B5D16EAB0F21445600861FAC /* ie7_password.cc */,
				B5D16EAE0F21445600861FAC /* ie7_password.h */,
				B5D16EB30F21445600861FAC /* password_form_manager.cc */,
				B5D16EAF0F21445600861FAC /* password_form_manager.h */,
				B5D16EB20F21445600861FAC /* password_form_manager_unittest.cc */,
				B5D16EB40F21445600861FAC /* password_manager.cc */,
				B5D16EB00F21445600861FAC /* password_manager.h */,
			);
			name = password_manager;
			sourceTree = "<group>";
		};
		B5D16EC80F2144F700861FAC /* ssl */ = {
			isa = PBXGroup;
			children = (
				B5D16ECB0F21451600861FAC /* ssl_blocking_page.cc */,
				B5D16ECD0F21451600861FAC /* ssl_blocking_page.h */,
				26D97CE692D919FEB1521E43 /* ssl_error_info.cc */,
				B5D16ECA0F21451600861FAC /* ssl_error_info.h */,
				B5D16ECC0F21451600861FAC /* ssl_manager.cc */,
				B5D16ECE0F21451600861FAC /* ssl_manager.h */,
				B5D16ED10F21451600861FAC /* ssl_policy.cc */,
				B5D16EC90F21451600861FAC /* ssl_policy.h */,
				B5D16ED00F21451600861FAC /* ssl_uitest.cc */,
			);
			name = ssl;
			sourceTree = "<group>";
		};
		B5D16ED80F21455600861FAC /* search_engines */ = {
			isa = PBXGroup;
			children = (
				3CCF8AA8A56FF8FE59F0C299 /* template_url.cc */,
				B5D16EDA0F21455600861FAC /* template_url.h */,
				B5D16EDB0F21455600861FAC /* template_url_fetcher.cc */,
				B5D16EDC0F21455600861FAC /* template_url_fetcher.h */,
				EA72C084DB3FC0FC595E525E /* template_url_model.cc */,
				B5D16EDE0F21455600861FAC /* template_url_model.h */,
				B5D16EDF0F21455600861FAC /* template_url_model_unittest.cc */,
				28AA584AB2ECFB33C7C7FD8A /* template_url_parser.cc */,
				B5D16EE10F21455600861FAC /* template_url_parser.h */,
				B5D16EE20F21455600861FAC /* template_url_parser_unittest.cc */,
				B5D16EE30F21455600861FAC /* template_url_prepopulate_data.cc */,
				B5D16EE40F21455600861FAC /* template_url_prepopulate_data.h */,
				B5D16EE50F21455600861FAC /* template_url_prepopulate_data_unittest.cc */,
				B5D16EE60F21455600861FAC /* template_url_unittest.cc */,
			);
			path = search_engines;
			sourceTree = "<group>";
		};
		B6CCB9BA0F1EC2E100106F0D /* tab_contents */ = {
			isa = PBXGroup;
			children = (
				B6CCB9CE0F1EC32700106F0D /* constrained_window.h */,
				B6CCB9CF0F1EC32700106F0D /* infobar_delegate.cc */,
				B6CCB9D00F1EC32700106F0D /* infobar_delegate.h */,
				B6CCB9D10F1EC32700106F0D /* interstitial_page.cc */,
				B6CCB9D20F1EC32700106F0D /* interstitial_page.h */,
				B6CCB9D30F1EC32700106F0D /* ipc_status_view.cc */,
				B6CCB9D40F1EC32700106F0D /* ipc_status_view.h */,
				B6CCB9D50F1EC32700106F0D /* native_ui_contents.cc */,
				B6CCB9D60F1EC32700106F0D /* native_ui_contents.h */,
				B6CCB9D70F1EC32700106F0D /* navigation_controller.cc */,
				B6CCB9D80F1EC32700106F0D /* navigation_controller.h */,
				B6CCB9D90F1EC32700106F0D /* navigation_entry.cc */,
				B6CCB9DA0F1EC32700106F0D /* navigation_entry.h */,
				B6CCB9DD0F1EC32700106F0D /* page_navigator.h */,
				B6CCB9DE0F1EC32700106F0D /* provisional_load_details.cc */,
				B6CCB9DF0F1EC32700106F0D /* provisional_load_details.h */,
				A76E42A90F28EDB5009A7E88 /* render_view_context_menu.cc */,
				A76E42AA0F28EDB5009A7E88 /* render_view_context_menu.h */,
				A76E42AB0F28EDB5009A7E88 /* render_view_context_menu_controller.cc */,
				A76E42AC0F28EDB5009A7E88 /* render_view_context_menu_controller.h */,
				A76E42AD0F28EDB5009A7E88 /* render_view_host_manager.cc */,
				A76E42AE0F28EDB5009A7E88 /* render_view_host_manager.h */,
				A7C613B80F30D779008CEE5D /* security_style.h */,
				B6CCB9E00F1EC32700106F0D /* site_instance.cc */,
				B6CCB9E10F1EC32700106F0D /* site_instance.h */,
				B6CCB9E20F1EC32700106F0D /* status_view.cc */,
				B6CCB9E30F1EC32700106F0D /* status_view.h */,
				B6CCB9E40F1EC32700106F0D /* tab_contents.cc */,
				B6CCB9E50F1EC32700106F0D /* tab_contents.h */,
				B6CCB9E60F1EC32700106F0D /* tab_contents_delegate.h */,
				B6CCB9E70F1EC32700106F0D /* tab_contents_factory.cc */,
				B6CCB9E80F1EC32700106F0D /* tab_contents_factory.h */,
				B6CCB9E90F1EC32700106F0D /* tab_contents_type.h */,
				B6CCB9EA0F1EC32700106F0D /* tab_util.cc */,
				B6CCB9EB0F1EC32700106F0D /* tab_util.h */,
				B6CCB9EC0F1EC32700106F0D /* view_source_contents.cc */,
				B6CCB9ED0F1EC32700106F0D /* view_source_contents.h */,
				B6CCB9EE0F1EC32700106F0D /* view_source_uitest.cc */,
				B6CCB9EF0F1EC32700106F0D /* web_contents.cc */,
				B6CCB9F00F1EC32700106F0D /* web_contents.h */,
				B6CCB9F10F1EC32700106F0D /* web_contents_unittest.cc */,
				B6CCB9F20F1EC32700106F0D /* web_contents_view.cc */,
				B6CCB9F30F1EC32700106F0D /* web_contents_view.h */,
				B6CCB9F40F1EC32700106F0D /* web_contents_view_win.cc */,
				B6CCB9F50F1EC32700106F0D /* web_contents_view_win.h */,
				B6CCB9F60F1EC32700106F0D /* web_drag_source.cc */,
				B6CCB9F70F1EC32700106F0D /* web_drag_source.h */,
				B6CCB9F80F1EC32700106F0D /* web_drop_target.cc */,
				B6CCB9F90F1EC32700106F0D /* web_drop_target.h */,
			);
			name = tab_contents;
			sourceTree = "<group>";
		};
		E43A77190F16618C00ABD5D1 /* dom_ui */ = {
			isa = PBXGroup;
			children = (
				E43A771A0F1661AF00ABD5D1 /* chrome_url_data_manager.cc */,
				E43A771B0F1661AF00ABD5D1 /* chrome_url_data_manager.h */,
			);
			name = dom_ui;
			sourceTree = "<group>";
		};
		E43A79D50F1D192000ABD5D1 /* WebCore */ = {
			isa = PBXGroup;
			children = (
				E43A79D60F1D192000ABD5D1 /* aliasCursor.png */,
				E43A79D70F1D192000ABD5D1 /* cellCursor.png */,
				E43A79D80F1D192000ABD5D1 /* contextMenuCursor.png */,
				E43A79D90F1D192000ABD5D1 /* copyCursor.png */,
				E43A79DA0F1D192000ABD5D1 /* crossHairCursor.png */,
				E43A79DB0F1D192000ABD5D1 /* eastResizeCursor.png */,
				E43A79DC0F1D192000ABD5D1 /* eastWestResizeCursor.png */,
				E43A79DD0F1D192000ABD5D1 /* helpCursor.png */,
				E43A79DE0F1D192000ABD5D1 /* linkCursor.png */,
				E43A79DF0F1D192000ABD5D1 /* missingImage.png */,
				E43A79E00F1D192000ABD5D1 /* moveCursor.png */,
				E43A79E10F1D192000ABD5D1 /* noDropCursor.png */,
				E43A79E20F1D192000ABD5D1 /* noneCursor.png */,
				E43A79E30F1D192000ABD5D1 /* northEastResizeCursor.png */,
				E43A79E40F1D192000ABD5D1 /* northEastSouthWestResizeCursor.png */,
				E43A79E50F1D192000ABD5D1 /* northResizeCursor.png */,
				E43A79E60F1D192000ABD5D1 /* northSouthResizeCursor.png */,
				E43A79E70F1D192000ABD5D1 /* northWestResizeCursor.png */,
				E43A79E80F1D192000ABD5D1 /* northWestSouthEastResizeCursor.png */,
				E43A79E90F1D192000ABD5D1 /* notAllowedCursor.png */,
				E43A79EA0F1D192000ABD5D1 /* progressCursor.png */,
				E43A79EB0F1D192000ABD5D1 /* southEastResizeCursor.png */,
				E43A79EC0F1D192000ABD5D1 /* southResizeCursor.png */,
				E43A79ED0F1D192000ABD5D1 /* southWestResizeCursor.png */,
				E43A79EE0F1D192000ABD5D1 /* textAreaResizeCorner.png */,
				E43A79EF0F1D192000ABD5D1 /* verticalTextCursor.png */,
				E43A79F00F1D192000ABD5D1 /* waitCursor.png */,
				E43A79F10F1D192000ABD5D1 /* westResizeCursor.png */,
				E43A79F20F1D192000ABD5D1 /* zoomInCursor.png */,
				E43A79F30F1D192000ABD5D1 /* zoomOutCursor.png */,
			);
			name = WebCore;
			path = ../third_party/WebKit/WebCore/Resources;
			sourceTree = SOURCE_ROOT;
		};
		E45060DE0EE8784C003BE099 /* app */ = {
			isa = PBXGroup;
			children = (
				E45060E60EE87B86003BE099 /* app-Info.plist */,
				E45062EA0EE9877F003BE099 /* chrome_dll_main.cc */,
				E45060F10EE87D41003BE099 /* chrome_exe_main.mm */,
				E450610A0EE87FB6003BE099 /* nibs */,
				E45062D40EE89659003BE099 /* resources */,
				E43A78240F17985E00ABD5D1 /* scoped_ole_initializer.h */,
				E46C50360F2917E900B393B8 /* theme */,
			);
			path = app;
			sourceTree = "<group>";
		};
		E450610A0EE87FB6003BE099 /* nibs */ = {
			isa = PBXGroup;
			children = (
				E48B68990F263DF5002E47EC /* BrowserWindow.xib */,
				4DCE9E2B0EF0B8C000682526 /* MainMenu.xib */,
				E46C50ED0F2A12DC00B393B8 /* TabContents.xib */,
			);
			path = nibs;
			sourceTree = "<group>";
		};
		E45062D40EE89659003BE099 /* resources */ = {
			isa = PBXGroup;
			children = (
				E45062C60EE8939A003BE099 /* chromium.icns */,
				E43A79D50F1D192000ABD5D1 /* WebCore */,
			);
			name = resources;
			sourceTree = "<group>";
		};
		E45075A30F150543003BE099 /* autocomplete */ = {
			isa = PBXGroup;
			children = (
				E40CC5E40F2E349000708647 /* history_contents_provider_unittest.cc */,
				E40CC5E10F2E348900708647 /* history_contents_provider.cc */,
				E40CC5E20F2E348900708647 /* history_contents_provider.h */,
				E45075AA0F150564003BE099 /* keyword_provider.cc */,
				E45075D00F150764003BE099 /* keyword_provider.h */,
			);
			name = autocomplete;
			sourceTree = "<group>";
		};
		E45075AE0F1505A6003BE099 /* bookmarks */ = {
			isa = PBXGroup;
			children = (
				E45075B10F1505C0003BE099 /* bookmark_codec.cc */,
				E45075D10F150772003BE099 /* bookmark_codec.h */,
				E40CC5F30F2E34F400708647 /* bookmark_folder_tree_model_unittest.cc */,
				E40CC5F00F2E34EE00708647 /* bookmark_folder_tree_model.cc */,
				E40CC5F10F2E34EE00708647 /* bookmark_folder_tree_model.h */,
				E45075B30F1505C9003BE099 /* bookmark_html_writer.cc */,
				E45075D20F150778003BE099 /* bookmark_html_writer.h */,
				E40CC5F80F2E351F00708647 /* bookmark_table_model_unittest.cc */,
				E40CC5F50F2E351A00708647 /* bookmark_table_model.h */,
				E40CC5F60F2E351A00708647 /* bookmark_table_model.cc */,
			);
			name = bookmarks;
			sourceTree = "<group>";
		};
		E45075BE0F1506D9003BE099 /* importer */ = {
			isa = PBXGroup;
			children = (
				E45075C00F1506F2003BE099 /* firefox2_importer.cc */,
				E45075C70F15071C003BE099 /* firefox2_importer.h */,
				E45075C30F150701003BE099 /* firefox3_importer.cc */,
				E45075C80F150729003BE099 /* firefox3_importer.h */,
				E45075C50F15070D003BE099 /* firefox_profile_lock.cc */,
				E45075C90F150731003BE099 /* firefox_profile_lock.h */,
				E45075CB0F150741003BE099 /* mork_reader.h */,
				E45075CC0F150741003BE099 /* mork_reader.cc */,
			);
			name = importer;
			sourceTree = "<group>";
		};
		E45075D80F150A3B003BE099 /* render_host */ = {
			isa = PBXGroup;
			children = (
				E45075DA0F150A53003BE099 /* async_resource_handler.cc */,
				E45075DB0F150A53003BE099 /* async_resource_handler.h */,
				A7C613C40F30D82C008CEE5D /* backing_store.cc */,
				A7C613C50F30D82C008CEE5D /* backing_store.h */,
				A76E43A30F29039C009A7E88 /* browser_render_process_host.cc */,
				A76E43970F29022A009A7E88 /* browser_render_process_host.h */,
				E45075DE0F150A6F003BE099 /* buffered_resource_handler.h */,
				E45075DF0F150A6F003BE099 /* buffered_resource_handler.cc */,
				A7C613DC0F30D886008CEE5D /* cross_site_resource_handler.cc */,
				A7C613DD0F30D886008CEE5D /* cross_site_resource_handler.h */,
				E43A77150F16616E00ABD5D1 /* download_resource_handler.h */,
				E43A77160F16616E00ABD5D1 /* download_resource_handler.cc */,
				E45075E00F150A6F003BE099 /* download_throttling_resource_handler.h */,
				E45075E10F150A6F003BE099 /* download_throttling_resource_handler.cc */,
				A7C613BF0F30D7E4008CEE5D /* mock_render_process_host.cc */,
				A7C613C00F30D7E4008CEE5D /* mock_render_process_host.h */,
				B5D16EC10F2144D500861FAC /* render_process_host.cc */,
				B5D16EC20F2144D500861FAC /* render_process_host.h */,
				A76E429D0F28ED73009A7E88 /* render_view_host.cc */,
				A76E429E0F28ED73009A7E88 /* render_view_host.h */,
				A76E429F0F28ED73009A7E88 /* render_view_host_delegate.h */,
				A76E42A00F28ED73009A7E88 /* render_view_host_unittest.cc */,
				A76E42A10F28ED73009A7E88 /* render_widget_helper.cc */,
				A76E42A20F28ED73009A7E88 /* render_widget_helper.h */,
				A76E42A30F28ED73009A7E88 /* render_widget_host.cc */,
				A76E42A40F28ED73009A7E88 /* render_widget_host.h */,
				A76E42A50F28ED73009A7E88 /* render_widget_host_view.h */,
				A76E42A60F28ED73009A7E88 /* render_widget_host_view_win.cc */,
				A76E42A70F28ED73009A7E88 /* render_widget_host_view_win.h */,
				A76E42980F28ECAD009A7E88 /* renderer_security_policy.cc */,
				A76E42990F28ECAD009A7E88 /* renderer_security_policy.h */,
				A76E429A0F28ECAD009A7E88 /* renderer_security_policy_unittest.cc */,
				E45075E60F150ABA003BE099 /* safe_browsing_resource_handler.cc */,
				E45075E70F150ABA003BE099 /* safe_browsing_resource_handler.h */,
				E45075E80F150ABA003BE099 /* save_file_resource_handler.cc */,
				E45075E90F150ABA003BE099 /* save_file_resource_handler.h */,
				E45075EA0F150ABA003BE099 /* sync_resource_handler.cc */,
				E45075EB0F150ABA003BE099 /* sync_resource_handler.h */,
			);
			name = render_host;
			sourceTree = "<group>";
		};
		E45075F00F150BEA003BE099 /* sessions */ = {
			isa = PBXGroup;
			children = (
				E45075F20F150C01003BE099 /* session_command.h */,
				E45075F30F150C01003BE099 /* session_command.cc */,
				E45075F50F150C0C003BE099 /* session_id.h */,
				E45075F60F150C0C003BE099 /* session_id.cc */,
			);
			name = sessions;
			sourceTree = "<group>";
		};
		E450761C0F150DF9003BE099 /* webdata */ = {
			isa = PBXGroup;
			children = (
				E450761E0F150E0C003BE099 /* web_database.cc */,
				E450761F0F150E0C003BE099 /* web_database.h */,
				E48B6C3A0F27844F002E47EC /* web_data_service.h */,
				E48B6C3B0F27844F002E47EC /* web_data_service.cc */,
			);
			name = webdata;
			sourceTree = "<group>";
		};
		E45076D40F1538D2003BE099 /* automation */ = {
			isa = PBXGroup;
			children = (
				E45076D60F1538E4003BE099 /* dom_automation_controller.h */,
				E45076D70F1538E4003BE099 /* dom_automation_controller.cc */,
			);
			name = automation;
			sourceTree = "<group>";
		};
		E46C50360F2917E900B393B8 /* theme */ = {
			isa = PBXGroup;
			children = (
				E46C50510F291C0E00B393B8 /* back.pdf */,
				E46C50530F291C1E00B393B8 /* forward.pdf */,
				E46C51230F2A14A300B393B8 /* go.pdf */,
				E46C50570F291C3B00B393B8 /* newtab.pdf */,
				E46C50540F291C1E00B393B8 /* reload.pdf */,
				E46C504F0F291C0600B393B8 /* star.pdf */,
			);
			name = theme;
			sourceTree = "<group>";
		};
		E46C50D10F292E9B00B393B8 /* cocoa */ = {
			isa = PBXGroup;
			children = (
				E46C50D50F292EAA00B393B8 /* tab_bar_view.h */,
				E46C50D60F292EAA00B393B8 /* tab_bar_view.mm */,
				E46C50D70F292EAA00B393B8 /* tab_cell.h */,
				E46C50D80F292EAA00B393B8 /* tab_cell.mm */,
				E46C50E80F2A11FC00B393B8 /* tab_contents_controller.h */,
				E46C50E90F2A11FC00B393B8 /* tab_contents_controller.mm */,
				E46C51980F2A20CC00B393B8 /* toolbar_button_cell.h */,
				E46C51990F2A20CC00B393B8 /* toolbar_button_cell.mm */,
				E46C51620F2A1DAB00B393B8 /* toolbar_view.h */,
				E46C51630F2A1DAB00B393B8 /* toolbar_view.mm */,
			);
			name = cocoa;
			sourceTree = "<group>";
		};
		E46C538C0F2F65CA00B393B8 /* tabs */ = {
			isa = PBXGroup;
			children = (
				E46C53A80F2F662F00B393B8 /* tab_strip_model_order_controller.h */,
				E46C53A90F2F662F00B393B8 /* tab_strip_model_order_controller.cc */,
				E46C53E70F2F69AD00B393B8 /* tab_strip_model_unittest.cc */,
				E46C53A20F2F660900B393B8 /* tab_strip_model.cc */,
				E46C53A30F2F660900B393B8 /* tab_strip_model.h */,
			);
			name = tabs;
			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>";
		};
		E4F3243F0EE5CE94002533CE /* extensions */ = {
			isa = PBXGroup;
			children = (
				0082A7510F16987A000AA0EF /* user_script_master.cc */,
				0082A7520F16987A000AA0EF /* user_script_master.h */,
				E4F324400EE5CE94002533CE /* extension.cc */,
				E4F324410EE5CE94002533CE /* extension.h */,
				E48B6C260F2783E9002E47EC /* extension_protocols.h */,
				E48B6C270F2783E9002E47EC /* extension_protocols.cc */,
				E4F324420EE5CE94002533CE /* extension_unittest.cc */,
				A54612D90EE9957000A8EE5D /* extensions_service.cc */,
				A54612DA0EE9957000A8EE5D /* extensions_service.h */,
				A54612DB0EE9958600A8EE5D /* extensions_service_unittest.cc */,
			);
			path = extensions;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		4D1F59E90F2A6B590040C1E3 /* image_diff */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 4D1F59F90F2A6B840040C1E3 /* Build configuration list for PBXNativeTarget "image_diff" */;
			buildPhases = (
				4D1F59E70F2A6B590040C1E3 /* Sources */,
				4D1F59E80F2A6B590040C1E3 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				4D1F5A050F2A6D050040C1E3 /* PBXTargetDependency */,
				4D1F5AAD0F2A6EBE0040C1E3 /* PBXTargetDependency */,
				4D1F5AFF0F2A70150040C1E3 /* PBXTargetDependency */,
				4D1F5AFB0F2A6FF90040C1E3 /* PBXTargetDependency */,
				4D1F5AC20F2A6F2F0040C1E3 /* PBXTargetDependency */,
				4D1F5AB90F2A6EF80040C1E3 /* PBXTargetDependency */,
				4D1F5AF70F2A6FD50040C1E3 /* PBXTargetDependency */,
				4D1F5ABC0F2A6F070040C1E3 /* PBXTargetDependency */,
			);
			name = image_diff;
			productName = image_diff;
			productReference = 4D1F59EA0F2A6B590040C1E3 /* image_diff */;
			productType = "com.apple.product-type.tool";
		};
		4D640CEA0EAE86BD00EBCFC0 /* renderer */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 4D640D110EAE86FC00EBCFC0 /* Build configuration list for PBXNativeTarget "renderer" */;
			buildPhases = (
				4D640CE80EAE86BD00EBCFC0 /* Sources */,
				4D640CE90EAE86BD00EBCFC0 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				E45076D20F153891003BE099 /* PBXTargetDependency */,
			);
			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 */,
				E450769D0F1534DD003BE099 /* 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 */,
				4D7B00600E9D54BF009A6919 /* PBXTargetDependency */,
				4D7B00560E9D5487009A6919 /* PBXTargetDependency */,
				B503E1020F017BE300547DC6 /* PBXTargetDependency */,
				4D7B00540E9D5487009A6919 /* PBXTargetDependency */,
				4D7B01440E9D56CC009A6919 /* PBXTargetDependency */,
				4DDC644A0EAE38F500FB5EBE /* 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 */,
				E450769F0F1534E8003BE099 /* PBXTargetDependency */,
			);
			name = common;
			productName = common;
			productReference = 4D7BFC1A0E9D4CB9009A6919 /* libcommon.a */;
			productType = "com.apple.product-type.library.static";
		};
		4D7FA6200F13CA04004F1B19 /* ui_tests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 4D7FA6350F13CAA9004F1B19 /* Build configuration list for PBXNativeTarget "ui_tests" */;
			buildPhases = (
				4D7FA61E0F13CA04004F1B19 /* Sources */,
				4D7FA61F0F13CA04004F1B19 /* Frameworks */,
				4D7FA62E0F13CA89004F1B19 /* Strip If Needed */,
			);
			buildRules = (
			);
			dependencies = (
				4D7FA7610F13CC5E004F1B19 /* PBXTargetDependency */,
				4D7FA7630F13CC5E004F1B19 /* PBXTargetDependency */,
				4D7FA64B0F13CBA4004F1B19 /* PBXTargetDependency */,
				4D7FA7530F13CC26004F1B19 /* PBXTargetDependency */,
				4D7FA74D0F13CC1F004F1B19 /* PBXTargetDependency */,
				4D7FA74F0F13CC1F004F1B19 /* PBXTargetDependency */,
				4D7FA7510F13CC1F004F1B19 /* PBXTargetDependency */,
			);
			name = ui_tests;
			productName = ui_tests;
			productReference = 4D7FA6210F13CA04004F1B19 /* ui_tests */;
			productType = "com.apple.product-type.tool";
		};
		B5FDBFAD0EE4623000BEC6E6 /* ipc_tests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = B5FDBFB20EE4625600BEC6E6 /* Build configuration list for PBXNativeTarget "ipc_tests" */;
			buildPhases = (
				B5FDBFAB0EE4623000BEC6E6 /* Sources */,
				B5FDBFAC0EE4623000BEC6E6 /* Frameworks */,
				4DCE999E0EF0611100682526 /* Strip If Needed */,
			);
			buildRules = (
			);
			dependencies = (
				B5FDBFB40EE4625B00BEC6E6 /* PBXTargetDependency */,
				B5067F5D0EE4936A00CC5024 /* PBXTargetDependency */,
				4DCE9E240EF0B7A100682526 /* PBXTargetDependency */,
				4DCE9E220EF0B79600682526 /* PBXTargetDependency */,
				B5067F610EE4937F00CC5024 /* PBXTargetDependency */,
				B5067F630EE4938E00CC5024 /* PBXTargetDependency */,
				B5067F5B0EE4936200CC5024 /* PBXTargetDependency */,
				B5067F650EE4938E00CC5024 /* PBXTargetDependency */,
				B5067F5F0EE4937A00CC5024 /* PBXTargetDependency */,
				4DCE9E260EF0B7C100682526 /* PBXTargetDependency */,
			);
			name = ipc_tests;
			productName = ipc_tests;
			productReference = B5FDBFAE0EE4623000BEC6E6 /* ipc_tests */;
			productType = "com.apple.product-type.tool";
		};
		E45060E30EE87B86003BE099 /* app */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = E45060E90EE87B86003BE099 /* Build configuration list for PBXNativeTarget "app" */;
			buildPhases = (
				E45060E00EE87B86003BE099 /* Resources */,
				E45060E10EE87B86003BE099 /* Sources */,
				E45060E20EE87B86003BE099 /* Frameworks */,
				4DCEA14B0EF0BC0E00682526 /* Strip If Needed */,
			);
			buildRules = (
			);
			dependencies = (
				E45062670EE890B3003BE099 /* PBXTargetDependency */,
				E46C4EB30F278A3A00B393B8 /* PBXTargetDependency */,
				E45063160EE990C4003BE099 /* PBXTargetDependency */,
				E45063180EE990C4003BE099 /* PBXTargetDependency */,
				E450629C0EE8912D003BE099 /* PBXTargetDependency */,
				E45062A00EE8912D003BE099 /* PBXTargetDependency */,
				E45062A40EE8912D003BE099 /* PBXTargetDependency */,
				E46C4EB10F278A3000B393B8 /* PBXTargetDependency */,
				E46C4EB50F278A4800B393B8 /* PBXTargetDependency */,
				E46C4EB90F278A7100B393B8 /* PBXTargetDependency */,
				E450631A0EE990C4003BE099 /* PBXTargetDependency */,
				E46C4EB70F278A5900B393B8 /* PBXTargetDependency */,
				E46C4EBB0F278A7100B393B8 /* PBXTargetDependency */,
			);
			name = app;
			productName = app;
			productReference = E45060E40EE87B86003BE099 /* Chromium.app */;
			productType = "com.apple.product-type.application";
		};
/* 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 = 4D1F5AB20F2A6EE90040C1E3 /* Products */;
					ProjectRef = 4D1F5AB10F2A6EE90040C1E3 /* libpng.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 */,
				E45076900F1532CE003BE099 /* Generate Headers */,
				E45060E30EE87B86003BE099 /* app */,
				4D7BF3050E9D477E009A6919 /* browser */,
				4D7BFC190E9D4CB9009A6919 /* common */,
				4D640CEA0EAE86BD00EBCFC0 /* renderer */,
				4D1F59E90F2A6B590040C1E3 /* image_diff */,
				B5FDBFAD0EE4623000BEC6E6 /* ipc_tests */,
				E4F325930EE837BF002533CE /* run_ipc_tests */,
				4D7FA6200F13CA04004F1B19 /* ui_tests */,
				4D7FA6280F13CA61004F1B19 /* run_ui_tests */,
				4D7BFB2C0E9D4BE5009A6919 /* unit_tests */,
				4D7B014C0E9D572C009A6919 /* run_unit_tests */,
			);
		};
/* End PBXProject section */

/* Begin PBXReferenceProxy section */
		4D1F5AB60F2A6EE90040C1E3 /* libpng.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libpng.a;
			remoteRef = 4D1F5AB50F2A6EE90040C1E3 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		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 PBXResourcesBuildPhase section */
		E45060E00EE87B86003BE099 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E43A79F40F1D192000ABD5D1 /* aliasCursor.png in Resources */,
				E46C50520F291C0E00B393B8 /* back.pdf in Resources */,
				E48B689B0F263DF5002E47EC /* BrowserWindow.xib in Resources */,
				E43A79F50F1D192000ABD5D1 /* cellCursor.png in Resources */,
				E45062C70EE8939A003BE099 /* chromium.icns in Resources */,
				E43A79F60F1D192000ABD5D1 /* contextMenuCursor.png in Resources */,
				E43A79F70F1D192000ABD5D1 /* copyCursor.png in Resources */,
				E43A79F80F1D192000ABD5D1 /* crossHairCursor.png in Resources */,
				E43A79F90F1D192000ABD5D1 /* eastResizeCursor.png in Resources */,
				E43A79FA0F1D192000ABD5D1 /* eastWestResizeCursor.png in Resources */,
				E46C50550F291C1E00B393B8 /* forward.pdf in Resources */,
				E46C51240F2A14A300B393B8 /* go.pdf in Resources */,
				E43A79FB0F1D192000ABD5D1 /* helpCursor.png in Resources */,
				E43A79FC0F1D192000ABD5D1 /* linkCursor.png in Resources */,
				4DCE9E2D0EF0B8C000682526 /* MainMenu.xib in Resources */,
				E43A79FD0F1D192000ABD5D1 /* missingImage.png in Resources */,
				E43A79FE0F1D192000ABD5D1 /* moveCursor.png in Resources */,
				E46C50580F291C3B00B393B8 /* newtab.pdf in Resources */,
				E43A79FF0F1D192000ABD5D1 /* noDropCursor.png in Resources */,
				E43A7A000F1D192000ABD5D1 /* noneCursor.png in Resources */,
				E43A7A010F1D192000ABD5D1 /* northEastResizeCursor.png in Resources */,
				E43A7A020F1D192000ABD5D1 /* northEastSouthWestResizeCursor.png in Resources */,
				E43A7A030F1D192000ABD5D1 /* northResizeCursor.png in Resources */,
				E43A7A040F1D192000ABD5D1 /* northSouthResizeCursor.png in Resources */,
				E43A7A050F1D192000ABD5D1 /* northWestResizeCursor.png in Resources */,
				E43A7A060F1D192000ABD5D1 /* northWestSouthEastResizeCursor.png in Resources */,
				E43A7A070F1D192000ABD5D1 /* notAllowedCursor.png in Resources */,
				E43A7A080F1D192000ABD5D1 /* progressCursor.png in Resources */,
				E46C50560F291C1E00B393B8 /* reload.pdf in Resources */,
				E43A7A090F1D192000ABD5D1 /* southEastResizeCursor.png in Resources */,
				E43A7A0A0F1D192000ABD5D1 /* southResizeCursor.png in Resources */,
				E43A7A0B0F1D192000ABD5D1 /* southWestResizeCursor.png in Resources */,
				E46C50500F291C0600B393B8 /* star.pdf in Resources */,
				E46C50EF0F2A12DC00B393B8 /* TabContents.xib in Resources */,
				E43A7A0C0F1D192000ABD5D1 /* textAreaResizeCorner.png in Resources */,
				E43A7A0D0F1D192000ABD5D1 /* verticalTextCursor.png in Resources */,
				E43A7A0E0F1D192000ABD5D1 /* waitCursor.png in Resources */,
				E43A7A0F0F1D192000ABD5D1 /* westResizeCursor.png in Resources */,
				E43A7A100F1D192000ABD5D1 /* zoomInCursor.png in Resources */,
				E43A7A110F1D192000ABD5D1 /* zoomOutCursor.png in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase 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;
		};
		4D7FA6270F13CA61004F1B19 /* 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;
		};
		4D7FA62E0F13CA89004F1B19 /* 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;
		};
		4DCE999E0EF0611100682526 /* 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\"";
			showEnvVarsInLog = 0;
		};
		4DCEA14B0EF0BC0E00682526 /* 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\"";
			showEnvVarsInLog = 0;
		};
		E450768F0F1532CE003BE099 /* Run Shell Script */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Run Shell Script";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "set -ex\nexec \"${PROJECT_FILE_PATH}/${PRODUCT_NAME}.sh\" \"${@}\"";
			showEnvVarsInLog = 0;
		};
		E4F325960EE837BF002533CE /* 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 */
		4D1F59E70F2A6B590040C1E3 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D1F59FE0F2A6BBB0040C1E3 /* image_diff.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D640CE80EAE86BD00EBCFC0 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D640CF30EAE86E300EBCFC0 /* about_handler.cc in Sources */,
				E45076D90F1538E4003BE099 /* dom_automation_controller.cc in Sources */,
				E45076C90F1537F5003BE099 /* dom_ui_bindings.cc in Sources */,
				E45076CB0F15380C003BE099 /* external_host_bindings.cc in Sources */,
				B503E0F00F0175FD00547DC6 /* user_script_slave.cc in Sources */,
				E45076CF0F153871003BE099 /* localized_error.cc in Sources */,
				4D640CF40EAE86EA00EBCFC0 /* render_dns_queue.cc in Sources */,
				4D640CF50EAE86EF00EBCFC0 /* visitedlink_slave.cc in Sources */,
				3380A69B0F2E91AE004EF74F /* child_process.cc in Sources */,
				3380A69D0F2E91D4004EF74F /* render_thread.cc in Sources */,
				3380A69F0F2E91E5004EF74F /* chrome_plugin_lib.cc in Sources */,
				3380A6A10F2E91F9004EF74F /* render_process.cc in Sources */,
				3380A6A30F2E9207004EF74F /* ipc_sync_channel.cc in Sources */,
				3380A9D70F2FC8F9004EF74F /* render_dns_master.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D7BF3030E9D477E009A6919 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D7BFA1E0E9D48FD009A6919 /* archived_database.cc in Sources */,
				E45075DC0F150A53003BE099 /* async_resource_handler.cc in Sources */,
				E43A770B0F1660EA00ABD5D1 /* automation_resource_tracker.cc in Sources */,
				E40CC5EE0F2E34C100708647 /* base_history_model.cc in Sources */,
				4D7BFAEE0E9D49E5009A6919 /* bloom_filter.cc in Sources */,
				E45075B20F1505C0003BE099 /* bookmark_codec.cc in Sources */,
				E40CC5F20F2E34EE00708647 /* bookmark_folder_tree_model.cc in Sources */,
				E45075B40F1505C9003BE099 /* bookmark_html_writer.cc in Sources */,
				E40CC5F70F2E351A00708647 /* bookmark_table_model.cc in Sources */,
				E46C4C2E0F212CAF00B393B8 /* browser.cc in Sources */,
				E46C4D0F0F2138D400B393B8 /* browser_list.cc in Sources */,
				E45063530EE9BF31003BE099 /* browser_main.cc in Sources */,
				E450634F0EE9BE29003BE099 /* browser_main_mac.mm in Sources */,
				4D7BF97B0E9D4857009A6919 /* browser_process.cc in Sources */,
				A76E43A40F29039C009A7E88 /* browser_render_process_host.cc in Sources */,
				E45075B80F15060C003BE099 /* browser_trial.cc in Sources */,
				E48B68640F2637B6002E47EC /* browser_window_cocoa.mm in Sources */,
				E48B68570F26330C002E47EC /* browser_window_controller.mm in Sources */,
				E48B684D0F2630D3002E47EC /* browser_window_factory.mm in Sources */,
				E45075E20F150A6F003BE099 /* buffered_resource_handler.cc in Sources */,
				4D7BF98D0E9D485B009A6919 /* cancelable_request.cc in Sources */,
				E43A770D0F16610300ABD5D1 /* chrome_plugin_browsing_context.cc in Sources */,
				4D7BF9920E9D485F009A6919 /* chrome_thread.cc in Sources */,
				E43A771C0F1661AF00ABD5D1 /* chrome_url_data_manager.cc in Sources */,
				E43A77110F16613700ABD5D1 /* chrome_url_request_context.cc in Sources */,
				4D7BFAEF0E9D49E7009A6919 /* chunk_range.cc in Sources */,
				E46C4ED40F27A94100B393B8 /* command_updater.cc in Sources */,
				4D7BF9970E9D4863009A6919 /* cross_site_request_manager.cc in Sources */,
				4D7BFA7C0E9D4994009A6919 /* dns_host_info.cc in Sources */,
				E4F324550EE5CFB1002533CE /* download_database.cc in Sources */,
				E43A77170F16616E00ABD5D1 /* download_resource_handler.cc in Sources */,
				E45075E30F150A6F003BE099 /* download_throttling_resource_handler.cc in Sources */,
				E4F324470EE5CF1F002533CE /* expire_history_backend.cc in Sources */,
				E4F324430EE5CE94002533CE /* extension.cc in Sources */,
				E48B6C280F2783E9002E47EC /* extension_protocols.cc in Sources */,
				A54612E20EE995F600A8EE5D /* extensions_service.cc in Sources */,
				E45075C10F1506F2003BE099 /* firefox2_importer.cc in Sources */,
				E45075C40F150701003BE099 /* firefox3_importer.cc in Sources */,
				E45075C60F15070D003BE099 /* firefox_profile_lock.cc in Sources */,
				4D7BF9990E9D486B009A6919 /* google_url_tracker.cc in Sources */,
				4D7BF99E0E9D486F009A6919 /* google_util.cc in Sources */,
				E4F3244A0EE5CF3C002533CE /* history_backend.cc in Sources */,
				E40CC5E30F2E348900708647 /* history_contents_provider.cc in Sources */,
				E4F3244D0EE5CF4A002533CE /* history_database.cc in Sources */,
				E45075BC0F1506B5003BE099 /* history_model.cc in Sources */,
				4D7BFA1F0E9D4901009A6919 /* history_types.cc in Sources */,
				4D7BFA240E9D4905009A6919 /* in_memory_database.cc in Sources */,
				4D7BFA260E9D4908009A6919 /* in_memory_history_backend.cc in Sources */,
				E45075B70F1505DD003BE099 /* keyword_provider.cc in Sources */,
				4D7BF9A00E9D4875009A6919 /* meta_table_helper.cc in Sources */,
				B555B2230F21506300F751B9 /* metrics_log.cc in Sources */,
				B555B2240F21506700F751B9 /* metrics_response.cc in Sources */,
				E45075CD0F150741003BE099 /* mork_reader.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 */,
				E48B6C2C0F27840B002E47EC /* password_form_manager.cc in Sources */,
				4D7BFAF10E9D49EB009A6919 /* protocol_parser.cc in Sources */,
				B6CCB9FA0F1EC33100106F0D /* provisional_load_details.cc in Sources */,
				E4F324500EE5CF7C002533CE /* query_parser.cc in Sources */,
				E4F3247A0EE5D17E002533CE /* referrer.cc in Sources */,
				A7C612990F30D63D008CEE5D /* render_process_host.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 */,
				E45075EC0F150ABA003BE099 /* safe_browsing_resource_handler.cc in Sources */,
				E48B6C2E0F278426002E47EC /* safe_browsing_service.cc in Sources */,
				4D7BFAF60E9D49F6009A6919 /* safe_browsing_util.cc in Sources */,
				4D7BF9E10E9D48D6009A6919 /* save_file.cc in Sources */,
				E45075ED0F150ABA003BE099 /* save_file_resource_handler.cc in Sources */,
				E4F324650EE5D082002533CE /* sdch_dictionary_fetcher.cc in Sources */,
				E45075F40F150C01003BE099 /* session_command.cc in Sources */,
				E45075F70F150C0C003BE099 /* session_id.cc in Sources */,
				4D7BF9B60E9D4894009A6919 /* session_startup_pref.cc in Sources */,
				4D7BFA2D0E9D4910009A6919 /* snippet.cc in Sources */,
				E45075FA0F150C28003BE099 /* spellcheck_worditerator.cc in Sources */,
				F775995035B63E51251B0922 /* ssl_error_info.cc in Sources */,
				E4F3245D0EE5CFDF002533CE /* starred_url_database.cc in Sources */,
				E45075EE0F150ABA003BE099 /* sync_resource_handler.cc in Sources */,
				E46C53A40F2F660900B393B8 /* tab_strip_model.cc in Sources */,
				E46C53AA0F2F662F00B393B8 /* tab_strip_model_order_controller.cc in Sources */,
				9A1EE0F9187ACE2DCB8512E1 /* template_url.cc in Sources */,
				C39F08C4FFD9C2F98384F56B /* template_url_model.cc in Sources */,
				B9BF55F87A4BB2FD366B6DDC /* template_url_parser.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 */,
				E4F324600EE5D011002533CE /* url_database.cc in Sources */,
				8F51B73AAAF1772ECF9BD180 /* url_fetcher.cc in Sources */,
				3AEA44DB19C9D93B63D7A2E4 /* 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 */,
				B555B2250F21506B00F751B9 /* user_metrics.cc in Sources */,
				E46C42130F1D3DD200B393B8 /* user_script_master.cc in Sources */,
				4D7BFA3E0E9D491B009A6919 /* visit_database.cc in Sources */,
				4D7BFA430E9D491E009A6919 /* visit_tracker.cc in Sources */,
				4D7BFA480E9D4922009A6919 /* visitsegment_database.cc in Sources */,
				E48B6C3C0F27844F002E47EC /* web_data_service.cc in Sources */,
				E45076200F150E0C003BE099 /* web_database.cc in Sources */,
				B5FCDE5C0F269E9B0099BFAF /* visitedlink_master.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 */,
				3380A6A00F2E91E7004EF74F /* chrome_plugin_lib.cc in Sources */,
				4D7BFB350E9D4C18009A6919 /* chrome_thread_unittest.cc in Sources */,
				4D7BFB710E9D4C55009A6919 /* chunk_range_unittest.cc in Sources */,
				E46C4EF30F27A9B000B393B8 /* command_updater_unittest.cc in Sources */,
				4D7BFB510E9D4C3E009A6919 /* dns_host_info_unittest.cc in Sources */,
				E4F324950EE5D758002533CE /* extension_unittest.cc in Sources */,
				A54612DC0EE9958600A8EE5D /* extensions_service_unittest.cc in Sources */,
				B503E0FC0F01764800547DC6 /* user_script_slave_unittest.cc in Sources */,
				4D7BFB3C0E9D4C25009A6919 /* history_types_unittest.cc in Sources */,
				B507AC440F004B610060FEE8 /* ipc_sync_message_unittest.cc in Sources */,
				A7C6146F0F30DA1D008CEE5D /* ipc_test_sink.cc in Sources */,
				4D7BFCE70E9D4DD4009A6919 /* json_value_serializer_unittest.cc in Sources */,
				B52E29BE0F0AA333008AD1C8 /* l10n_util_unittest.cc in Sources */,
				A7C613C10F30D7E4008CEE5D /* mock_render_process_host.cc in Sources */,
				3380A9AB0F2FC3BF004EF74F /* mock_webkit_glue.cc in Sources */,
				E450775F0F154036003BE099 /* mru_cache_unittest.cc in Sources */,
				E45077620F15405C003BE099 /* notification_service_unittest.cc in Sources */,
				4D7BFB580E9D4C43009A6919 /* page_range_unittest.cc in Sources */,
				4D7BFB5F0E9D4C46009A6919 /* page_setup_unittest.cc in Sources */,
				B562E2FC0F05845100FB1A4F /* property_bag_unittest.cc in Sources */,
				4D7BFB780E9D4C5A009A6919 /* protocol_parser_unittest.cc in Sources */,
				3380A9D60F2FC8F6004EF74F /* render_dns_master.cc in Sources */,
				3380A9C00F2FC61E004EF74F /* render_process_unittest.cc in Sources */,
				3380A6B60F2E9252004EF74F /* render_thread_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 */,
				E4F324980EE5D7DE002533CE /* snippet_unittest.cc in Sources */,
				4D7BFB3E0E9D4C2F009A6919 /* text_database_unittest.cc in Sources */,
				4D7BFB610E9D4C4B009A6919 /* units_unittest.cc in Sources */,
				B502DA280F098056005BE90C /* visit_database_unittest.cc in Sources */,
				4D7BFB420E9D4C35009A6919 /* visit_tracker_unittest.cc in Sources */,
				E46C4B4C0F21098F00B393B8 /* worker_thread_ticker_unittest.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D7BFC170E9D4CB9009A6919 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D7BFC260E9D4CE8009A6919 /* animation.cc in Sources */,
				B562E2D50F05834500FB1A4F /* chrome_canvas.cc in Sources */,
				4D7BFC280E9D4CEB009A6919 /* chrome_constants.cc in Sources */,
				4D7BFC2A0E9D4CED009A6919 /* chrome_counters.cc in Sources */,
				E4F3256E0EE82C83002533CE /* chrome_paths.cc in Sources */,
				4D7BFC2C0E9D4CF1009A6919 /* chrome_switches.cc in Sources */,
				4D7BFCC90E9D4D72009A6919 /* color_utils.cc in Sources */,
				B562E2C70F0582F800FB1A4F /* common_glue.cc in Sources */,
				4D7BFCCE0E9D4D7A009A6919 /* cookie_monster_sqlite.cc in Sources */,
				4D7BFC2E0E9D4CF5009A6919 /* debug_flags.cc in Sources */,
				4D7BFC330E9D4CF9009A6919 /* env_vars.cc in Sources */,
				B5FDC0580EE488E500BEC6E6 /* ipc_channel_posix.cc in Sources */,
				B5DBEA900EFC60E200C95176 /* ipc_channel_proxy.cc in Sources */,
				4D7BFC380E9D4CFF009A6919 /* ipc_message.cc in Sources */,
				E4F3257D0EE83679002533CE /* ipc_message_utils.cc in Sources */,
				B507AC1F0F0048E10060FEE8 /* ipc_sync_message.cc in Sources */,
				4D7BFC4B0E9D4D06009A6919 /* json_value_serializer.cc in Sources */,
				B502DA520F098888005BE90C /* l10n_util.cc in Sources */,
				4D7BFC540E9D4D09009A6919 /* libxml_utils.cc in Sources */,
				E4F3242C0EE5CBBF002533CE /* logging_chrome.cc in Sources */,
				B562C8430ED49C830077A23F /* mach_ipc_mac.mm in Sources */,
				B54BD8FC0ED622C00093FD54 /* mach_message_source_mac.cc in Sources */,
				B56E281B0F057F2800447108 /* message_router.cc in Sources */,
				E4F324300EE5CBEB002533CE /* notification_registrar.cc in Sources */,
				4D7BFC5C0E9D4D24009A6919 /* notification_service.cc in Sources */,
				4D7BFC710E9D4D28009A6919 /* pref_member.cc in Sources */,
				4D7BFC7A0E9D4D2B009A6919 /* pref_names.cc in Sources */,
				E45076850F1530CD003BE099 /* pref_service.cc in Sources */,
				B562E2F80F05843C00FB1A4F /* property_bag.cc in Sources */,
				B5E98B140F0574A8000A37D6 /* render_messages.cc in Sources */,
				E45076A90F153619003BE099 /* resource_dispatcher.cc in Sources */,
				E43A78750F17A95400ABD5D1 /* sandbox_init_wrapper.cc in Sources */,
				E40CC5FE0F2E35A800708647 /* security_filter_peer.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 */,
				E46C46C50F1F9AE200B393B8 /* temp_scaffolding_stubs.cpp in Sources */,
				4D7BFC970E9D4D3E009A6919 /* throb_animation.cc in Sources */,
				4D7BFC9C0E9D4D46009A6919 /* thumbnail_score.cc in Sources */,
				E45076AB0F153629003BE099 /* time_format.cc in Sources */,
				E45076E50F153AB6003BE099 /* unzip.cc in Sources */,
				E46C4B3F0F21095400B393B8 /* url_request_intercept_job.cc in Sources */,
				4D7BFCA30E9D4D48009A6919 /* visitedlink_common.cc in Sources */,
				E46C4B490F21096300B393B8 /* worker_thread_ticker.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		4D7FA61E0F13CA04004F1B19 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4D7FA6440F13CB5C004F1B19 /* run_all_unittests.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5FDBFAB0EE4623000BEC6E6 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E4F325C80EE83A45002533CE /* ipc_fuzzing_tests.cc in Sources */,
				E4F325850EE836F2002533CE /* ipc_message_unittest.cc in Sources */,
				E4F325D10EE83B71002533CE /* ipc_tests.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		E45060E10EE87B86003BE099 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E46C4A740F1FE04F00B393B8 /* app_controller_mac.mm in Sources */,
				E45062EB0EE9877F003BE099 /* chrome_dll_main.cc in Sources */,
				E45060F20EE87D41003BE099 /* chrome_exe_main.mm in Sources */,
				E46C50D90F292EAA00B393B8 /* tab_bar_view.mm in Sources */,
				E46C50DA0F292EAA00B393B8 /* tab_cell.mm in Sources */,
				E46C50EA0F2A11FC00B393B8 /* tab_contents_controller.mm in Sources */,
				E46C519A0F2A20CC00B393B8 /* toolbar_button_cell.mm in Sources */,
				E46C51640F2A1DAB00B393B8 /* toolbar_view.mm in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		4D1F59EF0F2A6B740040C1E3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D1F59E90F2A6B590040C1E3 /* image_diff */;
			targetProxy = 4D1F59EE0F2A6B740040C1E3 /* PBXContainerItemProxy */;
		};
		4D1F5A050F2A6D050040C1E3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = base;
			targetProxy = 4D1F5A040F2A6D050040C1E3 /* PBXContainerItemProxy */;
		};
		4D1F5AAD0F2A6EBE0040C1E3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = base_gfx;
			targetProxy = 4D1F5AAC0F2A6EBE0040C1E3 /* PBXContainerItemProxy */;
		};
		4D1F5AB90F2A6EF80040C1E3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = libpng;
			targetProxy = 4D1F5AB80F2A6EF80040C1E3 /* PBXContainerItemProxy */;
		};
		4D1F5ABC0F2A6F070040C1E3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = zlib;
			targetProxy = 4D1F5ABB0F2A6F070040C1E3 /* PBXContainerItemProxy */;
		};
		4D1F5AC20F2A6F2F0040C1E3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icuuc;
			targetProxy = 4D1F5AC10F2A6F2F0040C1E3 /* PBXContainerItemProxy */;
		};
		4D1F5AF70F2A6FD50040C1E3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = skia;
			targetProxy = 4D1F5AF60F2A6FD50040C1E3 /* PBXContainerItemProxy */;
		};
		4D1F5AFB0F2A6FF90040C1E3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icui18n;
			targetProxy = 4D1F5AFA0F2A6FF90040C1E3 /* PBXContainerItemProxy */;
		};
		4D1F5AFF0F2A70150040C1E3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icudata;
			targetProxy = 4D1F5AFE0F2A70150040C1E3 /* PBXContainerItemProxy */;
		};
		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 */;
		};
		4D7FA6260F13CA2F004F1B19 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7FA6200F13CA04004F1B19 /* ui_tests */;
			targetProxy = 4D7FA6250F13CA2F004F1B19 /* PBXContainerItemProxy */;
		};
		4D7FA62C0F13CA6F004F1B19 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7FA6200F13CA04004F1B19 /* ui_tests */;
			targetProxy = 4D7FA62B0F13CA6F004F1B19 /* PBXContainerItemProxy */;
		};
		4D7FA64B0F13CBA4004F1B19 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = base;
			targetProxy = 4D7FA64A0F13CBA4004F1B19 /* PBXContainerItemProxy */;
		};
		4D7FA74D0F13CC1F004F1B19 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icudata;
			targetProxy = 4D7FA74C0F13CC1F004F1B19 /* PBXContainerItemProxy */;
		};
		4D7FA74F0F13CC1F004F1B19 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icui18n;
			targetProxy = 4D7FA74E0F13CC1F004F1B19 /* PBXContainerItemProxy */;
		};
		4D7FA7510F13CC1F004F1B19 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icuuc;
			targetProxy = 4D7FA7500F13CC1F004F1B19 /* PBXContainerItemProxy */;
		};
		4D7FA7530F13CC26004F1B19 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = gtest;
			targetProxy = 4D7FA7520F13CC26004F1B19 /* PBXContainerItemProxy */;
		};
		4D7FA7610F13CC5E004F1B19 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BF3050E9D477E009A6919 /* browser */;
			targetProxy = 4D7FA7600F13CC5E004F1B19 /* PBXContainerItemProxy */;
		};
		4D7FA7630F13CC5E004F1B19 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BFC190E9D4CB9009A6919 /* common */;
			targetProxy = 4D7FA7620F13CC5E004F1B19 /* PBXContainerItemProxy */;
		};
		4DCE999B0EF060D100682526 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = B5FDBFAD0EE4623000BEC6E6 /* ipc_tests */;
			targetProxy = 4DCE999A0EF060D100682526 /* PBXContainerItemProxy */;
		};
		4DCE9E220EF0B79600682526 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = googleurl;
			targetProxy = 4DCE9E210EF0B79600682526 /* PBXContainerItemProxy */;
		};
		4DCE9E240EF0B7A100682526 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = base_gfx;
			targetProxy = 4DCE9E230EF0B7A100682526 /* PBXContainerItemProxy */;
		};
		4DCE9E260EF0B7C100682526 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = skia;
			targetProxy = 4DCE9E250EF0B7C100682526 /* PBXContainerItemProxy */;
		};
		4DDC644A0EAE38F500FB5EBE /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = xml;
			targetProxy = 4DDC64490EAE38F500FB5EBE /* PBXContainerItemProxy */;
		};
		4DDC64570EAE393800FB5EBE /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = zlib;
			targetProxy = 4DDC64560EAE393800FB5EBE /* PBXContainerItemProxy */;
		};
		B503E1020F017BE300547DC6 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D640CEA0EAE86BD00EBCFC0 /* renderer */;
			targetProxy = B503E1010F017BE300547DC6 /* PBXContainerItemProxy */;
		};
		B5067F5B0EE4936200CC5024 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icui18n;
			targetProxy = B5067F5A0EE4936200CC5024 /* PBXContainerItemProxy */;
		};
		B5067F5D0EE4936A00CC5024 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = base;
			targetProxy = B5067F5C0EE4936A00CC5024 /* PBXContainerItemProxy */;
		};
		B5067F5F0EE4937A00CC5024 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = libevent;
			targetProxy = B5067F5E0EE4937A00CC5024 /* PBXContainerItemProxy */;
		};
		B5067F610EE4937F00CC5024 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = gtest;
			targetProxy = B5067F600EE4937F00CC5024 /* PBXContainerItemProxy */;
		};
		B5067F630EE4938E00CC5024 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icudata;
			targetProxy = B5067F620EE4938E00CC5024 /* PBXContainerItemProxy */;
		};
		B5067F650EE4938E00CC5024 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icuuc;
			targetProxy = B5067F640EE4938E00CC5024 /* PBXContainerItemProxy */;
		};
		B5FDBFB40EE4625B00BEC6E6 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BFC190E9D4CB9009A6919 /* common */;
			targetProxy = B5FDBFB30EE4625B00BEC6E6 /* PBXContainerItemProxy */;
		};
		E450625E0EE88D54003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = E45060E30EE87B86003BE099 /* app */;
			targetProxy = E450625D0EE88D54003BE099 /* PBXContainerItemProxy */;
		};
		E45062670EE890B3003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = base;
			targetProxy = E45062660EE890B3003BE099 /* PBXContainerItemProxy */;
		};
		E450629C0EE8912D003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icudata;
			targetProxy = E450629B0EE8912D003BE099 /* PBXContainerItemProxy */;
		};
		E45062A00EE8912D003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icui18n;
			targetProxy = E450629F0EE8912D003BE099 /* PBXContainerItemProxy */;
		};
		E45062A40EE8912D003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icuuc;
			targetProxy = E45062A30EE8912D003BE099 /* PBXContainerItemProxy */;
		};
		E45063160EE990C4003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BF3050E9D477E009A6919 /* browser */;
			targetProxy = E45063150EE990C4003BE099 /* PBXContainerItemProxy */;
		};
		E45063180EE990C4003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D7BFC190E9D4CB9009A6919 /* common */;
			targetProxy = E45063170EE990C4003BE099 /* PBXContainerItemProxy */;
		};
		E450631A0EE990C4003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 4D640CEA0EAE86BD00EBCFC0 /* renderer */;
			targetProxy = E45063190EE990C4003BE099 /* PBXContainerItemProxy */;
		};
		E450769D0F1534DD003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = E45076900F1532CE003BE099 /* Generate Headers */;
			targetProxy = E450769C0F1534DD003BE099 /* PBXContainerItemProxy */;
		};
		E450769F0F1534E8003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = E45076900F1532CE003BE099 /* Generate Headers */;
			targetProxy = E450769E0F1534E8003BE099 /* PBXContainerItemProxy */;
		};
		E45076D20F153891003BE099 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = E45076900F1532CE003BE099 /* Generate Headers */;
			targetProxy = E45076D10F153891003BE099 /* PBXContainerItemProxy */;
		};
		E46C4EB10F278A3000B393B8 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = googleurl;
			targetProxy = E46C4EB00F278A3000B393B8 /* PBXContainerItemProxy */;
		};
		E46C4EB30F278A3A00B393B8 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = base_gfx;
			targetProxy = E46C4EB20F278A3A00B393B8 /* PBXContainerItemProxy */;
		};
		E46C4EB50F278A4800B393B8 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = modp_b64;
			targetProxy = E46C4EB40F278A4800B393B8 /* PBXContainerItemProxy */;
		};
		E46C4EB70F278A5900B393B8 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = skia;
			targetProxy = E46C4EB60F278A5900B393B8 /* PBXContainerItemProxy */;
		};
		E46C4EB90F278A7100B393B8 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = net;
			targetProxy = E46C4EB80F278A7100B393B8 /* PBXContainerItemProxy */;
		};
		E46C4EBB0F278A7100B393B8 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = libevent;
			targetProxy = E46C4EBA0F278A7100B393B8 /* PBXContainerItemProxy */;
		};
		E4F3259B0EE837DD002533CE /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = B5FDBFAD0EE4623000BEC6E6 /* ipc_tests */;
			targetProxy = E4F3259A0EE837DD002533CE /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		4DCE9E2B0EF0B8C000682526 /* MainMenu.xib */ = {
			isa = PBXVariantGroup;
			children = (
				4DCE9E2C0EF0B8C000682526 /* English */,
			);
			name = MainMenu.xib;
			sourceTree = "<group>";
		};
		E46C50ED0F2A12DC00B393B8 /* TabContents.xib */ = {
			isa = PBXVariantGroup;
			children = (
				E46C50EE0F2A12DC00B393B8 /* English */,
			);
			name = TabContents.xib;
			sourceTree = "<group>";
		};
		E48B68990F263DF5002E47EC /* BrowserWindow.xib */ = {
			isa = PBXVariantGroup;
			children = (
				E48B689A0F263DF5002E47EC /* English */,
			);
			name = BrowserWindow.xib;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		4D1F59EC0F2A6B590040C1E3 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FD0E9D46E6009A6919 /* executable.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = image_diff;
			};
			name = Debug;
		};
		4D1F59ED0F2A6B590040C1E3 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FD0E9D46E6009A6919 /* executable.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = image_diff;
			};
			name = Release;
		};
		4D640CEC0EAE86BD00EBCFC0 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					"$(CONFIGURATION_TEMP_DIR)/generated/grit",
				);
				PRODUCT_NAME = renderer;
			};
			name = Debug;
		};
		4D640CED0EAE86BD00EBCFC0 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					"$(CONFIGURATION_TEMP_DIR)/generated/grit",
				);
				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/i18n,
					../third_party/icu38/public/common,
					../third_party/libjpeg,
					../third_party/libxml/include,
					../third_party/npapi,
					"$(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/i18n,
					../third_party/icu38/public/common,
					../third_party/libjpeg,
					../third_party/libxml/include,
					../third_party/npapi,
					"$(SYMROOT)/libxml.build/$(CONFIGURATION)/generated/include",
				);
				XCODEPROJ_DEPTH = ..;
			};
			name = Release;
		};
		4D7BF3080E9D477E009A6919 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					"$(CONFIGURATION_TEMP_DIR)/generated/grit",
				);
				PRODUCT_NAME = browser;
			};
			name = Debug;
		};
		4D7BF3090E9D477E009A6919 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					"$(CONFIGURATION_TEMP_DIR)/generated/grit",
				);
				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 = {
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					"$(CONFIGURATION_TEMP_DIR)/generated/grit",
				);
				PRODUCT_NAME = common;
			};
			name = Debug;
		};
		4D7BFC1C0E9D4CB9009A6919 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FF0E9D46E6009A6919 /* staticlib.xcconfig */;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(HEADER_SEARCH_PATHS)",
					"$(CONFIGURATION_TEMP_DIR)/generated/grit",
				);
				PRODUCT_NAME = common;
			};
			name = Release;
		};
		4D7FA6230F13CA05004F1B19 /* 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 = ui_tests;
			};
			name = Debug;
		};
		4D7FA6240F13CA05004F1B19 /* 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 = ui_tests;
			};
			name = Release;
		};
		4D7FA6290F13CA61004F1B19 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = run_ui_tests;
			};
			name = Debug;
		};
		4D7FA62A0F13CA61004F1B19 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = run_ui_tests;
			};
			name = Release;
		};
		B5FDBFB00EE4623000BEC6E6 /* 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 = ipc_tests;
			};
			name = Debug;
		};
		B5FDBFB10EE4623000BEC6E6 /* 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 = ipc_tests;
			};
			name = Release;
		};
		E45060E70EE87B86003BE099 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FD0E9D46E6009A6919 /* executable.xcconfig */;
			buildSettings = {
				INFOPLIST_FILE = "app/app-Info.plist";
				PRODUCT_NAME = Chromium;
			};
			name = Debug;
		};
		E45060E80EE87B86003BE099 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4D7BF2FD0E9D46E6009A6919 /* executable.xcconfig */;
			buildSettings = {
				INFOPLIST_FILE = "app/app-Info.plist";
				PRODUCT_NAME = Chromium;
			};
			name = Release;
		};
		E45076910F1532CF003BE099 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = generate_headers;
			};
			name = Debug;
		};
		E45076920F1532CF003BE099 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = generate_headers;
			};
			name = Release;
		};
		E4F325980EE837BF002533CE /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = run_ipc_tests;
			};
			name = Debug;
		};
		E4F325990EE837BF002533CE /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = run_ipc_tests;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		4D1F59F90F2A6B840040C1E3 /* Build configuration list for PBXNativeTarget "image_diff" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D1F59EC0F2A6B590040C1E3 /* Debug */,
				4D1F59ED0F2A6B590040C1E3 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		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;
		};
		4D7FA6350F13CAA9004F1B19 /* Build configuration list for PBXNativeTarget "ui_tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D7FA6230F13CA05004F1B19 /* Debug */,
				4D7FA6240F13CA05004F1B19 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		4D7FA6360F13CAA9004F1B19 /* Build configuration list for PBXAggregateTarget "run_ui_tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4D7FA6290F13CA61004F1B19 /* Debug */,
				4D7FA62A0F13CA61004F1B19 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		B5FDBFB20EE4625600BEC6E6 /* Build configuration list for PBXNativeTarget "ipc_tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B5FDBFB00EE4623000BEC6E6 /* Debug */,
				B5FDBFB10EE4623000BEC6E6 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		E45060E90EE87B86003BE099 /* Build configuration list for PBXNativeTarget "app" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E45060E70EE87B86003BE099 /* Debug */,
				E45060E80EE87B86003BE099 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		E45076930F15330D003BE099 /* Build configuration list for PBXAggregateTarget "Generate Headers" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E45076910F1532CF003BE099 /* Debug */,
				E45076920F1532CF003BE099 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		E4F325970EE837BF002533CE /* Build configuration list for PBXAggregateTarget "run_ipc_tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E4F325980EE837BF002533CE /* Debug */,
				E4F325990EE837BF002533CE /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 4D7BF2E90E9D46A4009A6919 /* Project object */;
}