diff --git a/.gitignore b/.gitignore index 242ef1393..547b9b3ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ .DS_Store .svn +*.xcodeproj +build diff --git a/AUTHORS.txt b/AUTHORS.txt deleted file mode 100644 index de57b19ec..000000000 --- a/AUTHORS.txt +++ /dev/null @@ -1,26 +0,0 @@ -# This file is an addendum to the Chromium AUTHORS file. -# Names should be added to this file like so: -# Name or Organization - -Marshall Greenblatt -Jamie Kirkpatrick -Johan Lindström -Igor Pavlov -Yanko Yankov -Emerick Rogul -Valve Corporation -Anthony Taranto -Joe Andrieu -Keith Poole -Aviv Rind -Michael Kaminski -ADInstruments Ltd. -Gus Verdun -Joinerysoft Ltd. -Johan Björk -Dmitry Azaraev -David Xue -Russell (Rusty) Richards -Brian Power -Corey Lucier -Mihai Tica diff --git a/CHROMIUM_BUILD_COMPATIBILITY.txt b/CHROMIUM_BUILD_COMPATIBILITY.txt deleted file mode 100644 index 3e6458c5b..000000000 --- a/CHROMIUM_BUILD_COMPATIBILITY.txt +++ /dev/null @@ -1,20 +0,0 @@ -# The Chromium Embedded Framework (CEF) project is built on top of the Chromium -# project source tree. Chromium should be updated to the URL and revision listed -# below before building CEF. Chromium compatibility information for older CEF -# revisions is available by viewing this file's change history. -# -# To configure a specific Chromium URL: -# gclient config chromium_url -# -# To update to a specific Chromium revision: -# gclient sync --revision src@chromium_revision --jobs 8 --force -# -# This file is integrated with the CEF Automation Tool. See the -# tools/automate/automate.README.txt file for more information. -# -# For general gclient usage information visit: -# http://dev.chromium.org/developers/how-tos/get-the-code - -{ - 'release_url': 'http://src.chromium.org/svn/releases/21.0.1180.18', -} diff --git a/DEPS b/DEPS deleted file mode 100644 index 0a7dc22e3..000000000 --- a/DEPS +++ /dev/null @@ -1,7 +0,0 @@ -hooks = [ - { - # A change to a .gyp, .gypi, or to GYP itself should run the generator. - "pattern": ".", - "action": ["python", "src/cef/tools/gclient_hook.py"], - }, -] diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index 52812e171..000000000 --- a/LICENSE.txt +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2008-2012 Marshall A. Greenblatt. Portions Copyright (c) -// 2006-2009 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the name Chromium Embedded -// Framework nor the names of its contributors may be used to endorse -// or promote products derived from this software without specific prior -// written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/apk_test.gypi b/apk_test.gypi deleted file mode 100644 index 83f88b4b0..000000000 --- a/apk_test.gypi +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright (c) 2012 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -# This file is meant to be included into a target to provide a rule -# to build APK based test suites. -# -# To use this, create a gyp target with the following form: -# { -# 'target_name': 'test_suite_name_apk', -# 'type': 'none', -# 'variables': { -# 'test_suite_name': 'test_suite_name', # string -# 'input_shlib_path' : '/path/to/test_suite.so', # string -# 'input_jars_paths': ['/path/to/test_suite.jar', ... ], # list -# }, -# 'includes': ['path/to/this/gypi/file'], -# } -# - -{ - 'target_conditions': [ - ['_toolset == "target"', { - 'conditions': [ - ['OS == "android" and gtest_target_type == "shared_library"', { - 'actions': [{ - 'action_name': 'apk_<(test_suite_name)', - 'message': 'Building <(test_suite_name) test apk.', - 'inputs': [ - '<(DEPTH)/testing/android/AndroidManifest.xml', - '<(DEPTH)/testing/android/generate_native_test.py', - '<(input_shlib_path)', - '<@(input_jars_paths)', - ], - 'outputs': [ - '<(PRODUCT_DIR)/<(test_suite_name)_apk/<(test_suite_name)-debug.apk', - ], - 'action': [ - '<(DEPTH)/testing/android/generate_native_test.py', - '--native_library', - '<(input_shlib_path)', - '--jars', - '"<@(input_jars_paths)"', - '--output', - '<(PRODUCT_DIR)/<(test_suite_name)_apk', - '--app_abi', - '<(android_app_abi)', - '--ant-args', - '-DPRODUCT_DIR=<(ant_build_out)', - '--ant-compile' - ], - }], - }], # 'OS == "android" and gtest_target_type == "shared_library" - ], # conditions - }], - ], # target_conditions -} diff --git a/atom.gyp b/atom.gyp index 1acbe566e..763ede079 100644 --- a/atom.gyp +++ b/atom.gyp @@ -6,9 +6,22 @@ 'variables': { 'pkg-config': 'pkg-config', 'chromium_code': 1, + 'use_aura%': 0, + 'conditions': [ + ['OS=="win"', { + 'os_posix': 0, + }, { + 'os_posix': 1, + }], + # Set toolkit_uses_gtk for the Chromium browser on Linux. + ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_aura==0', { + 'toolkit_uses_gtk%': 1, + }, { + 'toolkit_uses_gtk%': 0, + }], + ], }, 'includes': [ - # Bring in the source file lists. 'cef_paths2.gypi', ], 'targets': [ @@ -25,59 +38,62 @@ ], 'include_dirs': [ '.', + # cefclient includes are relative to the tests directory to make + # creation of binary releases easier. + 'tests', 'atom', ], 'sources': [ '<@(includes_common)', '<@(includes_wrapper)', - 'atom/cefclient/cefclient.cpp', - 'atom/cefclient/cefclient.h', - 'atom/cefclient/binding_test.cpp', - 'atom/cefclient/binding_test.h', - 'atom/cefclient/client_app.cpp', - 'atom/cefclient/client_app.h', - 'atom/cefclient/client_app_delegates.cpp', - 'atom/cefclient/client_handler.cpp', - 'atom/cefclient/client_handler.h', - 'atom/cefclient/client_renderer.cpp', - 'atom/cefclient/client_renderer.h', - 'atom/cefclient/client_switches.cpp', - 'atom/cefclient/client_switches.h', - 'atom/cefclient/dom_test.cpp', - 'atom/cefclient/dom_test.h', - 'atom/cefclient/res/binding.html', - 'atom/cefclient/res/dialogs.html', - 'atom/cefclient/res/domaccess.html', - 'atom/cefclient/res/localstorage.html', - 'atom/cefclient/res/logo.png', - 'atom/cefclient/res/xmlhttprequest.html', - 'atom/cefclient/resource_util.h', - 'atom/cefclient/scheme_test.cpp', - 'atom/cefclient/scheme_test.h', - 'atom/cefclient/string_util.cpp', - 'atom/cefclient/string_util.h', - 'atom/cefclient/util.h', + 'tests/cefclient/cefclient.cpp', + 'tests/cefclient/cefclient.h', + 'tests/cefclient/binding_test.cpp', + 'tests/cefclient/binding_test.h', + 'tests/cefclient/client_app.cpp', + 'tests/cefclient/client_app.h', + 'tests/cefclient/client_app_delegates.cpp', + 'tests/cefclient/client_handler.cpp', + 'tests/cefclient/client_handler.h', + 'tests/cefclient/client_renderer.cpp', + 'tests/cefclient/client_renderer.h', + 'tests/cefclient/client_switches.cpp', + 'tests/cefclient/client_switches.h', + 'tests/cefclient/dom_test.cpp', + 'tests/cefclient/dom_test.h', + 'tests/cefclient/res/binding.html', + 'tests/cefclient/res/dialogs.html', + 'tests/cefclient/res/domaccess.html', + 'tests/cefclient/res/localstorage.html', + 'tests/cefclient/res/logo.png', + 'tests/cefclient/res/xmlhttprequest.html', + 'tests/cefclient/resource_util.h', + 'tests/cefclient/scheme_test.cpp', + 'tests/cefclient/scheme_test.h', + 'tests/cefclient/string_util.cpp', + 'tests/cefclient/string_util.h', + 'tests/cefclient/util.h', ], 'mac_bundle_resources': [ - 'atom/cefclient/mac/Atom.icns', - 'atom/cefclient/mac/English.lproj/InfoPlist.strings', - 'atom/cefclient/mac/English.lproj/MainMenu.xib', - 'atom/cefclient/mac/Info.plist', - 'atom/cefclient/res/binding.html', - 'atom/cefclient/res/dialogs.html', - 'atom/cefclient/res/domaccess.html', - 'atom/cefclient/res/localstorage.html', - 'atom/cefclient/res/logo.png', - 'atom/cefclient/res/xmlhttprequest.html', + 'tests/cefclient/mac/cefclient.icns', + 'tests/cefclient/mac/English.lproj/InfoPlist.strings', + 'tests/cefclient/mac/English.lproj/MainMenu.xib', + 'tests/cefclient/mac/Info.plist', + 'tests/cefclient/res/binding.html', + 'tests/cefclient/res/dialogs.html', + 'tests/cefclient/res/domaccess.html', + 'tests/cefclient/res/localstorage.html', + 'tests/cefclient/res/logo.png', + 'tests/cefclient/res/xmlhttprequest.html', ], 'mac_bundle_resources!': [ # TODO(mark): Come up with a fancier way to do this (mac_info_plist?) # that automatically sets the correct INFOPLIST_FILE setting and adds # the file to a source group. - 'atom/cefclient/mac/Info.plist', + 'tests/cefclient/mac/Info.plist', ], 'xcode_settings': { - 'INFOPLIST_FILE': 'atom/cefclient/mac/Info.plist', + 'INFOPLIST_FILE': 'tests/cefclient/mac/Info.plist', # Necessary to avoid an "install_name_tool: changing install names or # rpaths can't be redone" error. 'OTHER_LDFLAGS': ['-Wl,-headerpad_max_install_names'], @@ -161,37 +177,14 @@ ], }, { - 'postbuild_name': 'Create Resources Directory In Bundle', - 'action': [ - 'mkdir', - '-p', - '${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources' - ], - }, - { - 'postbuild_name': 'Copy Pack File', + 'postbuild_name': 'Copy Framework Resources Directory', 'action': [ 'cp', - '-f', - 'cef/cef.pak', - '${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/cef.pak' + '-r', + 'cef/Resources', + '${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/' ], }, - { - 'postbuild_name': 'Copy WebCore Resources', - 'action': [ - 'cp', - '-Rf', - '${BUILT_PRODUCTS_DIR}/../../third_party/WebKit/Source/WebCore/Resources/', - '${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/' - ], - }, - { - # Modify the Info.plist as needed. - 'postbuild_name': 'Tweak Info.plist', - 'action': ['../build/mac/tweak_info_plist.py', - '--svn=1'], - }, { # This postbuid step is responsible for creating the following # helpers: @@ -203,7 +196,7 @@ # is marked for no PIE (ASLR). 'postbuild_name': 'Make More Helpers', 'action': [ - '../build/mac/make_more_helpers.sh', + 'cef/mac/make_more_helpers.sh', 'Frameworks', 'Atom', ], @@ -218,9 +211,9 @@ 'include/cef_application_mac.h', 'include/internal/cef_mac.h', 'include/internal/cef_types_mac.h', - 'atom/cefclient/cefclient_mac.mm', - 'atom/cefclient/client_handler_mac.mm', - 'atom/cefclient/resource_util_mac.mm', + 'tests/cefclient/cefclient_mac.mm', + 'tests/cefclient/client_handler_mac.mm', + 'tests/cefclient/resource_util_mac.mm', ], }], [ 'OS=="linux" or OS=="freebsd" or OS=="openbsd"', { @@ -243,7 +236,8 @@ 'target_name': 'libcef_dll_wrapper', 'type': 'static_library', 'msvs_guid': 'A9D6DC71-C0DC-4549-AEA0-3B15B44E86A9', - 'dependencies': [ ], + 'dependencies': [ + ], 'defines': [ 'USING_CEF_SHARED', ], @@ -260,7 +254,7 @@ 'libraries': [ 'cef/libcef.dylib', ], - }, + } }, ], 'conditions': [ @@ -287,7 +281,9 @@ ], 'include_dirs': [ '.', - 'atom' + # cefclient includes are relative to the tests directory to make + # creation of binary releases easier. + 'tests' ], 'link_settings': { 'libraries': [ @@ -295,34 +291,34 @@ ], }, 'sources': [ - 'atom/cefclient/binding_test.cpp', - 'atom/cefclient/binding_test.h', - 'atom/cefclient/client_app.cpp', - 'atom/cefclient/client_app.h', - 'atom/cefclient/client_app_delegates.cpp', - 'atom/cefclient/client_handler.cpp', - 'atom/cefclient/client_handler.h', - 'atom/cefclient/client_handler_mac.mm', - 'atom/cefclient/client_renderer.cpp', - 'atom/cefclient/client_renderer.h', - 'atom/cefclient/client_switches.cpp', - 'atom/cefclient/client_switches.h', - 'atom/cefclient/dom_test.cpp', - 'atom/cefclient/dom_test.h', - 'atom/cefclient/process_helper_mac.cpp', - 'atom/cefclient/resource_util.h', - 'atom/cefclient/resource_util_mac.mm', - 'atom/cefclient/scheme_test.cpp', - 'atom/cefclient/scheme_test.h', - 'atom/cefclient/string_util.cpp', - 'atom/cefclient/string_util.h', - 'atom/cefclient/util.h', + 'tests/cefclient/binding_test.cpp', + 'tests/cefclient/binding_test.h', + 'tests/cefclient/client_app.cpp', + 'tests/cefclient/client_app.h', + 'tests/cefclient/client_app_delegates.cpp', + 'tests/cefclient/client_handler.cpp', + 'tests/cefclient/client_handler.h', + 'tests/cefclient/client_handler_mac.mm', + 'tests/cefclient/client_renderer.cpp', + 'tests/cefclient/client_renderer.h', + 'tests/cefclient/client_switches.cpp', + 'tests/cefclient/client_switches.h', + 'tests/cefclient/dom_test.cpp', + 'tests/cefclient/dom_test.h', + 'tests/cefclient/process_helper_mac.cpp', + 'tests/cefclient/resource_util.h', + 'tests/cefclient/resource_util_mac.mm', + 'tests/cefclient/scheme_test.cpp', + 'tests/cefclient/scheme_test.h', + 'tests/cefclient/string_util.cpp', + 'tests/cefclient/string_util.h', + 'tests/cefclient/util.h', ], # TODO(mark): Come up with a fancier way to do this. It should only # be necessary to list helper-Info.plist once, not the three times it # is listed here. 'mac_bundle_resources!': [ - 'atom/cefclient/mac/helper-Info.plist', + 'tests/cefclient/mac/helper-Info.plist', ], # TODO(mark): For now, don't put any resources into this app. Its # resources directory will be a symbolic link to the browser app's @@ -331,7 +327,7 @@ ['exclude', '.*'], ], 'xcode_settings': { - 'INFOPLIST_FILE': 'atom/cefclient/mac/helper-Info.plist', + 'INFOPLIST_FILE': 'tests/cefclient/mac/helper-Info.plist', # Necessary to avoid an "install_name_tool: changing install names or # rpaths can't be redone" error. 'OTHER_LDFLAGS': ['-Wl,-headerpad_max_install_names'], @@ -351,18 +347,6 @@ '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' ], }, - { - # Modify the Info.plist as needed. The script explains why this - # is needed. This is also done in the chrome and chrome_dll - # targets. In this case, --breakpad=0, --keystone=0, and --svn=0 - # are used because Breakpad, Keystone, and Subversion keys are - # never placed into the helper. - 'postbuild_name': 'Tweak Info.plist', - 'action': ['./chromium/build/mac/tweak_info_plist.py', - '--breakpad=0', - '--keystone=0', - '--svn=0'], - }, ], }, # target cefclient_helper_app ], diff --git a/atom.xcodeproj/project.pbxproj b/atom.xcodeproj/project.pbxproj index 6937eebaa..f6c4c8d21 100644 --- a/atom.xcodeproj/project.pbxproj +++ b/atom.xcodeproj/project.pbxproj @@ -23,46 +23,39 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ + 00E94D0D85EA6D610DFAD6ED /* dom_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB4E96D0513420CF278E24FF /* dom_test.cpp */; }; 00E95FD43813F2E09369A617 /* geolocation_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F9D8C500A024D6886EF4B53 /* geolocation_handler_cpptoc.cc */; }; - 02A8A10DE7A3CDA0AC607E61 /* client_renderer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D37851B41429592E37B3A9C8 /* client_renderer.cpp */; }; 0411700BFF66FD0D5DA623A7 /* urlrequest_client_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = B769C4454E88CAE69D8E9BDA /* urlrequest_client_cpptoc.cc */; }; + 04B4B922C86E80C151467BCE /* dialogs.html in Resources */ = {isa = PBXBuildFile; fileRef = 4F9AF0F193868066137BA5A4 /* dialogs.html */; }; + 068819AA0F9AB2F0A6AA5B95 /* client_app_delegates.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7434A5A3A0075AD13C0CC347 /* client_app_delegates.cpp */; }; 09A0D0BBDF01567A72A3FADA /* browser_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD8D830C8B484B028BF3F0B4 /* browser_ctocpp.cc */; }; 09E0B767262945659A9152A5 /* urlrequest_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 569ACE130A89E1EA0BCA08A4 /* urlrequest_ctocpp.cc */; }; 0DBFD3159E4FF78DEA4C431A /* read_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F005091550289905B4B6096C /* read_handler_cpptoc.cc */; }; - 0FA37E812C1B34F007E17193 /* cefclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F611B99AD296ADD51058D742 /* cefclient.cpp */; }; 11C3B98FA9A36B5557ECD732 /* load_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 358E48B5A4F72C9DC84BE229 /* load_handler_cpptoc.cc */; }; 133CAA9CAC2FE868BE693DD7 /* request_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 430255B1D74762D49D56B2EB /* request_ctocpp.cc */; }; 15145332E67F5241AC10DB0F /* domdocument_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB18CE2A00D7F993711EEB5C /* domdocument_ctocpp.cc */; }; 15673286F479E3DD72228B1A /* life_span_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F10AAEDAA9C5C041F45DA56D /* life_span_handler_cpptoc.cc */; }; - 170B1FA5A1142DC30B53984E /* client_app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB7B4779BFA5A28D25157CD /* client_app.cpp */; }; - 18D042626F69B3FA86BD2DCB /* client_switches.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD6704225845420F697A458B /* client_switches.cpp */; }; + 18BFE8E82F51C2D69A6AEDAA /* binding_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B9890C1E003921014B708A6 /* binding_test.cpp */; }; 19A26FF9657D61EB4DFAEF24 /* scheme_handler_factory_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = E324492DA04785C9FE6025E3 /* scheme_handler_factory_cpptoc.cc */; }; - 1AD956029A63FD7FBC5F5632 /* client_renderer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D37851B41429592E37B3A9C8 /* client_renderer.cpp */; }; 1B635AD6DDE5A30ABA0BFBF9 /* cef_zip_archive.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A45DBAD18F986EB8323B132 /* cef_zip_archive.cc */; }; 1B94D97D87C3D4F18B1FD364 /* libcef_dll_wrapper.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FB0A2A624D8FBF3E2ED27E2 /* libcef_dll_wrapper.a */; }; - 1E4F3FE3D3277C8BB8170687 /* client_app_delegates.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD4CBC09BA3E54E2FC80A782 /* client_app_delegates.cpp */; }; - 1EBCB6D242C49767F095AF4F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 709C7A8894CFC53DB4A6904A /* InfoPlist.strings */; }; + 21331B511F1CC05284C17394 /* client_renderer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 022965FFE5517D0702CE8419 /* client_renderer.cpp */; }; 2208650753998BDD85A8065E /* domvisitor_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA6CDBF6F227A0F1049AB0D0 /* domvisitor_cpptoc.cc */; }; 22277E6C4F42801F78F8CBE6 /* callback_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = CCCD14801A9D76CA3A2D5F36 /* callback_ctocpp.cc */; }; 271DA0CAA64B7F04BA9E4B43 /* libcef.dylib in Copy to $(BUILT_PRODUCTS_DIR)/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Libraries/ */ = {isa = PBXBuildFile; fileRef = DB44B0B1D0D1A4A204C4D721 /* libcef.dylib */; }; - 28710911A945A80641BB1E89 /* string_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E864251A0EFEB6D92262433F /* string_util.cpp */; }; - 2B05EA77E07F07EE3DBE61D8 /* xmlhttprequest.html in Resources */ = {isa = PBXBuildFile; fileRef = F18A1AF7B2FFBF8C0B6E03C2 /* xmlhttprequest.html */; }; 2B079CADF001CEF6EA895D7A /* write_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F021D8DC9B5B46E1D2F55B8F /* write_handler_cpptoc.cc */; }; - 2E62CE142B79EAF1AAC74978 /* binding.html in Resources */ = {isa = PBXBuildFile; fileRef = AB158A494CD29727C3ABF79E /* binding.html */; }; - 2FC328FB9CC4E7B01E57F2C3 /* domaccess.html in Resources */ = {isa = PBXBuildFile; fileRef = 5BF839B43E5EB6CE6945DAB3 /* domaccess.html */; }; + 2F839D90B50FF5C1384E9CD4 /* client_app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34E348731F2D104A06524366 /* client_app.cpp */; }; + 307663044A4239E32EE5545E /* string_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 063F3333683443246DC5004B /* string_util.cpp */; }; 3152E6C88B608AF03BCB1246 /* transfer_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9ECB41E85597AC94A57D250 /* transfer_util.cpp */; }; 31FDA34AC3060D049E996FFC /* libcef.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 8D2141D4332C19847EB87AAF /* libcef.dylib */; }; 324201CAE107029E9117596E /* string_visitor_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1907F9480DB53A3F0DF752E0 /* string_visitor_cpptoc.cc */; }; - 33F807F17A3BB533AA71FE3A /* cefclient_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0A395E31D08AFE54DF364BD8 /* cefclient_mac.mm */; }; + 332DE229E5EE6E6FB18B9EA0 /* client_switches.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6E5A5A76BC38B66A746F07C /* client_switches.cpp */; }; 364BBD351E096D832CE3CD3E /* download_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6E5D3276CEA77BB22BAF8E2 /* download_handler_cpptoc.cc */; }; - 3B101F19E46A070BC92A6A2C /* scheme_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBF5A644FD4803A78E68D422 /* scheme_test.cpp */; }; + 3C7D87D98572568463F6CDFB /* cefclient.icns in Resources */ = {isa = PBXBuildFile; fileRef = 5A7734F9C6D407EB7D192E20 /* cefclient.icns */; }; 3CB3F4DBB7E5842B82AA6414 /* v8exception_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0E0A1FD0CC05EFA6D420C91 /* v8exception_ctocpp.cc */; }; - 3F141663B10B4FA301E02078 /* Atom.icns in Resources */ = {isa = PBXBuildFile; fileRef = E28F7B19EBBEAB5154036B43 /* Atom.icns */; }; - 3F6FFF06AD7FFF8429B3F86E /* resource_util_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E810717DC2D77F1B065D6F1 /* resource_util_mac.mm */; }; + 3EF9C3B6F0845D057490D5C2 /* logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 071D58DD1C4352142B923874 /* logo.png */; }; 421E3C2957F2926C67F3BDAF /* resource_bundle_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 486EAD58F64C7354BD9BF7FB /* resource_bundle_handler_cpptoc.cc */; }; 43BB0852EABA2A47EC0D30E0 /* browser_host_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF1CA77DAAAF3D26C1644B16 /* browser_host_ctocpp.cc */; }; - 4687097498D68F7CB4B0C7CE /* client_handler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83366F559D651D3D6F010552 /* client_handler.cpp */; }; - 4AD0A8D32E9E2CD7A0857CBA /* binding_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCE6C330A0416CE0C5AFB966 /* binding_test.cpp */; }; 4F94179933CAB59CD02A8980 /* web_plugin_info_visitor_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 105882DA63C11BAE1FD15912 /* web_plugin_info_visitor_cpptoc.cc */; }; 51DF03C4EB5CEE3E836797E0 /* frame_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB8E59A89E8B84BE29BA7365 /* frame_ctocpp.cc */; }; 529A0E7E66F130A3CB0C644F /* menu_model_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A8CEF7B36A3F4506ACF6472 /* menu_model_ctocpp.cc */; }; @@ -72,47 +65,54 @@ 5A0F54485B7CFAFB74334C25 /* domevent_listener_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC50E1057B487F5AF0A0F7C3 /* domevent_listener_cpptoc.cc */; }; 5CED6B5C63885CCCC95BAC86 /* resource_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 398F992B145AB9252FF50298 /* resource_handler_cpptoc.cc */; }; 5E4105277D71C5C621AF29A5 /* cookie_manager_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9FAD86D0106486D9F6CAB64 /* cookie_manager_ctocpp.cc */; }; - 5E6F00EDF431379070796D90 /* client_handler_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5667E7216525A0A996EC0E21 /* client_handler_mac.mm */; }; 61752187080D3C206DE3E18B /* keyboard_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3635E480B7F9DCC771B002FE /* keyboard_handler_cpptoc.cc */; }; 627C11FA24E1849F26B785E8 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D065F97F8D63F8168D14CB4 /* AppKit.framework */; }; 62A632B5663B48182897B179 /* jsdialog_callback_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9E34E227A6522EE9E6B678B /* jsdialog_callback_ctocpp.cc */; }; 63C64D70146434E02484F8FD /* proxy_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BBE685CEE22005DFB009944 /* proxy_handler_cpptoc.cc */; }; 67AD4BCBE68FFCCD556D15CD /* post_data_element_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5DB23C963556513BD246C81 /* post_data_element_ctocpp.cc */; }; 6842068D6DF732A88809F3F6 /* v8value_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4270EEC8527C3500CD8AEF91 /* v8value_ctocpp.cc */; }; - 6D73CFE9F308026324A40C06 /* client_handler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83366F559D651D3D6F010552 /* client_handler.cpp */; }; 6DBE3711789F0A14747FAC10 /* web_plugin_info_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = F95FCF0F4C19634D3E55434B /* web_plugin_info_ctocpp.cc */; }; 72D17F1E14EC8DA56C960EF1 /* app_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 786557A77F668A536C47DCF0 /* app_cpptoc.cc */; }; 754D3ADCCC459959D2D70FC5 /* browser_process_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2ECC93253B64FA1FDC8657F7 /* browser_process_handler_cpptoc.cc */; }; 7701E6A4EAFA8986B5AF76A2 /* cef_stream_resource_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = B8EAF503154E387DF3DA1E8B /* cef_stream_resource_handler.cc */; }; - 78E03FF294CB4ED999B2CDCB /* client_app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB7B4779BFA5A28D25157CD /* client_app.cpp */; }; - 79886EEA116D709E65484076 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5E8EB8112AD7378AB11B0371 /* MainMenu.xib */; }; + 77A64046292DE3D9AB61EFB7 /* cefclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A094694040D792B0E554693B /* cefclient.cpp */; }; 79A3432EAB7B2EE6553AEFBF /* v8handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B0B8688FBBBD4FB20FF627C /* v8handler_cpptoc.cc */; }; - 7B70944055CD6F3EA2F64445 /* dom_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 698E4D82D5A48BEEF72A0A78 /* dom_test.cpp */; }; 7EA6572C1CFD7CC0992F238F /* cef_xml_object.cc in Sources */ = {isa = PBXBuildFile; fileRef = 068180596E1A7AE276161E91 /* cef_xml_object.cc */; }; + 7FD9F46994A223D211C5050E /* client_handler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 009694F9D936E9349F667B1B /* client_handler.cpp */; }; 816F8353FBE1427B20ECC45C /* request_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 54D1146F7F37B195FF73CC6F /* request_handler_cpptoc.cc */; }; 81735F5DF5FAA9B0E578FF45 /* download_item_callback_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8395F3CBAB1C065B5FC4D68F /* download_item_callback_ctocpp.cc */; }; + 81A6FF34530CA7CFABB13BE6 /* client_handler_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61ECFF0D7456D779EE7F22D8 /* client_handler_mac.mm */; }; 83293B5CD12DEC2D565A0E93 /* stream_writer_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = F253D00D10507AAA89CADA4D /* stream_writer_ctocpp.cc */; }; + 8456A8230A6DDF16C6A74FA8 /* client_app_delegates.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7434A5A3A0075AD13C0CC347 /* client_app_delegates.cpp */; }; 8460BC9DE73453374D3C7924 /* context_menu_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8BCE9ACB05D6D608EDA2EA6 /* context_menu_handler_cpptoc.cc */; }; 8496F057C81E15B08C9A307D /* libcef_dll_wrapper2.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9B9D5EE0AE765BA2CE95E3D /* libcef_dll_wrapper2.cc */; }; - 863A1083DB4E22AEBC66C97F /* string_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E864251A0EFEB6D92262433F /* string_util.cpp */; }; + 87C2425DF288DC77AD2C1631 /* client_handler_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61ECFF0D7456D779EE7F22D8 /* client_handler_mac.mm */; }; 87EBCA5235655B2DCFEF9BEF /* list_value_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 637D5B7F9B843EDCC06D30B6 /* list_value_ctocpp.cc */; }; + 880DC991C1F650B09E535368 /* resource_util_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = D871E71393C8B6DCF29634A7 /* resource_util_mac.mm */; }; + 897A2BA73FFE0FDAFECD7613 /* dom_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB4E96D0513420CF278E24FF /* dom_test.cpp */; }; 8A29BFA8BC7BCA864909F61A /* response_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E1C59AD3074023FEA140CAE /* response_ctocpp.cc */; }; + 8B22E8FB63E4E1174612E47D /* binding.html in Resources */ = {isa = PBXBuildFile; fileRef = EDEA55B8511F9FE4330B965B /* binding.html */; }; 8B34033ECA389CAAE4C21F09 /* libcef_dll_wrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5295DF3ECB3172EF8C45B6AF /* libcef_dll_wrapper.cc */; }; 8C038B7C92E5F83FCD39C22C /* download_item_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6267CFABF3CD48619F3796BA /* download_item_ctocpp.cc */; }; - 8ED45603734FF298D5A86CCB /* process_helper_mac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C64674A62F450A50FBA9A0D /* process_helper_mac.cpp */; }; + 8CAA9C6BA60145A4443776D8 /* client_renderer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 022965FFE5517D0702CE8419 /* client_renderer.cpp */; }; 91AAB6A4FE38F100BC6212A2 /* stream_reader_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 236A9AFABFE62BD05ECA7AC8 /* stream_reader_ctocpp.cc */; }; 96FC4FB613623784F993EB5D /* ffmpegsumo.so in Copy to $(BUILT_PRODUCTS_DIR)/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Libraries/ */ = {isa = PBXBuildFile; fileRef = 7EA912CBF5992E4D8B48341B /* ffmpegsumo.so */; }; + 99471A03CADC4484CD95BEA3 /* scheme_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E9F650F8EBBC79592563A70 /* scheme_test.cpp */; }; + 99AA5F4D6CC7F5CFAF42AC3E /* resource_util_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = D871E71393C8B6DCF29634A7 /* resource_util_mac.mm */; }; 99BD65EC1D299C7A5839878E /* display_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F4C42A3074E03DCFD88F44EC /* display_handler_cpptoc.cc */; }; - 9FC2F3DDA9E97E574DD03D8C /* client_switches.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD6704225845420F697A458B /* client_switches.cpp */; }; - 9FE8A3BB5F2A63163ED1124A /* resource_util_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E810717DC2D77F1B065D6F1 /* resource_util_mac.mm */; }; + 9F18844F744511EF0BA32037 /* binding_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B9890C1E003921014B708A6 /* binding_test.cpp */; }; + 9FB5D856BEBB0231DAA5487A /* client_switches.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6E5A5A76BC38B66A746F07C /* client_switches.cpp */; }; A0DC7D175117A2CAD96FFA95 /* cef_byte_read_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC8B2A92CEC7E64CC3EA346C /* cef_byte_read_handler.cc */; }; A28583954F42BECA67E45F88 /* context_menu_params_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2654257A86558F3BB511B5D7 /* context_menu_params_ctocpp.cc */; }; + A7962BF4E29DEBA26E0815DB /* xmlhttprequest.html in Resources */ = {isa = PBXBuildFile; fileRef = 36581E339B6C636EB3600773 /* xmlhttprequest.html */; }; ACB5998C08FD5B93FF74EFF6 /* v8accessor_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B382AA034A74CA4A0F0ED4C /* v8accessor_cpptoc.cc */; }; AE1BF53099A3BD9A346B6DF5 /* render_process_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 695177EC316540831C8F3F00 /* render_process_handler_cpptoc.cc */; }; + B09CF7184750BF3A418485CA /* client_handler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 009694F9D936E9349F667B1B /* client_handler.cpp */; }; + B1BE84E8A1D1613D3C1FF3DF /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 019626721924D58E07E6E406 /* MainMenu.xib */; }; B433E882FE6B08DE560430A0 /* xml_reader_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = E44783BC61DF5362B9B7D2E3 /* xml_reader_ctocpp.cc */; }; + B968FFD44801F3C49D36E0E1 /* client_app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34E348731F2D104A06524366 /* client_app.cpp */; }; BA39FFA42A6E19E730A5E153 /* libcef_dll_wrapper.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FB0A2A624D8FBF3E2ED27E2 /* libcef_dll_wrapper.a */; }; - C25713D6504475F37B8701C6 /* dialogs.html in Resources */ = {isa = PBXBuildFile; fileRef = 93757D2FC350BDDA2B7DA2AA /* dialogs.html */; }; - C27355E012FD831EFAFD5B33 /* localstorage.html in Resources */ = {isa = PBXBuildFile; fileRef = 270356D0402AF64F58C09A86 /* localstorage.html */; }; + BDB627A7A24279E8576DC651 /* string_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 063F3333683443246DC5004B /* string_util.cpp */; }; C2A11A61A2F7BD60C4A06277 /* jsdialog_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98D2D165BC2E660B7652215F /* jsdialog_handler_cpptoc.cc */; }; C3E86714DDDBFCC30336D587 /* cookie_visitor_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 499F1DDC05B0F3CD78CBF72A /* cookie_visitor_cpptoc.cc */; }; C6AF304B63F791077EC72BCF /* client_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D89FD25CF94866A4852937A /* client_cpptoc.cc */; }; @@ -121,22 +121,22 @@ D4D96F4CFCB979857AFDBB7F /* dictionary_value_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5CD903CA81B3E37C1E1601F4 /* dictionary_value_ctocpp.cc */; }; D6A819E465A0B3E4E171A5C3 /* process_message_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F0353741BADA8DFB2DCE465 /* process_message_ctocpp.cc */; }; D6B1E73FE24E3857FB3DC184 /* domnode_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87C649445F024DF09ABB2872 /* domnode_ctocpp.cc */; }; - D7A75FBB2D0EA6CEC1E0C9F3 /* dom_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 698E4D82D5A48BEEF72A0A78 /* dom_test.cpp */; }; D7DA3B9EB95866126BE6BA10 /* geolocation_callback_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C9690FDEB71C11417E53A4B /* geolocation_callback_ctocpp.cc */; }; + DAB6B37C9E7AE7688D92E9AA /* localstorage.html in Resources */ = {isa = PBXBuildFile; fileRef = 72679F3643B0293CA4831BC5 /* localstorage.html */; }; E0334AD65F9088008666B4CE /* scheme_registrar_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1FB3405663B7FFD60B261B1 /* scheme_registrar_ctocpp.cc */; }; E280513DCC533F1DBCFDE02F /* domevent_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BEAA9DF3DA999ACBC7DD157 /* domevent_ctocpp.cc */; }; + E2C6F71D2604E2BA03E441C0 /* scheme_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E9F650F8EBBC79592563A70 /* scheme_test.cpp */; }; E437E9E330D43D1AD7FDF4A8 /* zip_reader_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71F5EAC5A8C1A4D69A063D85 /* zip_reader_ctocpp.cc */; }; E82153D991127DE8653FCF3E /* auth_callback_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D30B30E682FB390D76925BE /* auth_callback_ctocpp.cc */; }; - ED515C2B0AD945A8722A3E5D /* client_app_delegates.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD4CBC09BA3E54E2FC80A782 /* client_app_delegates.cpp */; }; - EE400221E261BAB5D6B01B49 /* scheme_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBF5A644FD4803A78E68D422 /* scheme_test.cpp */; }; + EECC55A379B6EC27F822A709 /* process_helper_mac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 659E70A5E4FFB5660809950E /* process_helper_mac.cpp */; }; EF735B2D99313921B0ECF8C7 /* libcef.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 8D2141D4332C19847EB87AAF /* libcef.dylib */; }; - F0E8A79713BED0E6BCAAD144 /* logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 906B192A29657F64CA00B012 /* logo.png */; }; - F32730ACB338E2925802F38A /* binding_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCE6C330A0416CE0C5AFB966 /* binding_test.cpp */; }; - F5994138581214A3C847B2EE /* client_handler_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5667E7216525A0A996EC0E21 /* client_handler_mac.mm */; }; F7BA33A02E2FE83494AB1F86 /* binary_value_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC24F09DA2C73A96ACF68EC2 /* binary_value_ctocpp.cc */; }; F9089958C667FA701B60A32E /* command_line_ctocpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = B692459F28B6D01109142B44 /* command_line_ctocpp.cc */; }; + FB47A3BCC05FD2213BCA80EB /* cefclient_mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = A459E73196A93DF43C3BDBCC /* cefclient_mac.mm */; }; + FD73F3C2A4470A40936FAA18 /* domaccess.html in Resources */ = {isa = PBXBuildFile; fileRef = 1B6C334E2897BBE91BCBAE0A /* domaccess.html */; }; FDD6A5248B951968CE69C9C2 /* focus_handler_cpptoc.cc in Sources */ = {isa = PBXBuildFile; fileRef = CDF90D14742F6A20AEFE7EDC /* focus_handler_cpptoc.cc */; }; FEF240AA0E5EC80F59D9C38F /* Atom Helper.app in Copy to $(BUILT_PRODUCTS_DIR)/Atom.app/Contents/Frameworks */ = {isa = PBXBuildFile; fileRef = 00B48B83D4C1A30985ED9D96 /* Atom Helper.app */; }; + FFF8807FABAB64377B1C4380 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6F25FBE2A3B999F7A5F766C6 /* InfoPlist.strings */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -211,22 +211,27 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ + 009694F9D936E9349F667B1B /* client_handler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_handler.cpp; sourceTree = ""; }; 00B48B83D4C1A30985ED9D96 /* Atom Helper.app */ = {isa = PBXFileReference; lastKnownFileType = wrapper.application; path = "Atom Helper.app"; sourceTree = ""; }; 01758CA4E4707A8029D8D828 /* scheme_handler_factory_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scheme_handler_factory_cpptoc.h; sourceTree = ""; }; + 022965FFE5517D0702CE8419 /* client_renderer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_renderer.cpp; sourceTree = ""; }; 052A279D62054B5D4F316669 /* cef_keyboard_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_keyboard_handler.h; sourceTree = ""; }; 0576E6EBDDE217379E2D8079 /* cef_origin_whitelist.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_origin_whitelist.h; sourceTree = ""; }; + 063F3333683443246DC5004B /* string_util.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_util.cpp; sourceTree = ""; }; 068180596E1A7AE276161E91 /* cef_xml_object.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cef_xml_object.cc; sourceTree = ""; }; 068A8887F3A556A03A933AFF /* menu_model_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = menu_model_ctocpp.h; sourceTree = ""; }; + 071D58DD1C4352142B923874 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = ""; }; 07575805286188F831B80447 /* cef_resource_bundle_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_resource_bundle_handler.h; sourceTree = ""; }; + 078E0241BEA879DD4A442CB8 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = ""; }; 0819D447DA2713C09BF050C1 /* cef_jsdialog_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_jsdialog_handler_capi.h; sourceTree = ""; }; 085527C54F2DAA1B70DAA2A7 /* cef_byte_read_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_byte_read_handler.h; sourceTree = ""; }; 090DDA0AEEE9282FDCB8F1CF /* cef_callback.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_callback.h; sourceTree = ""; }; 0A29B87DF8618E540E42B8BD /* cef_proxy_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_proxy_handler.h; sourceTree = ""; }; - 0A395E31D08AFE54DF364BD8 /* cefclient_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = cefclient_mac.mm; sourceTree = ""; }; + 0B0662DB01F384F183BE61CC /* client_switches.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_switches.h; sourceTree = ""; }; 0B3CEEB1D8E5DC4006A547F7 /* cef_browser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_browser.h; sourceTree = ""; }; - 0E810717DC2D77F1B065D6F1 /* resource_util_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = resource_util_mac.mm; sourceTree = ""; }; 0F9D8C500A024D6886EF4B53 /* geolocation_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = geolocation_handler_cpptoc.cc; sourceTree = ""; }; 105882DA63C11BAE1FD15912 /* web_plugin_info_visitor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = web_plugin_info_visitor_cpptoc.cc; sourceTree = ""; }; + 109EA7F18E7BB5D976A75A16 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 10B3AD86DFC4040DA9FA3F93 /* cef_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_types.h; sourceTree = ""; }; 11E9E4AD9813732A4D18CB23 /* cef_display_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_display_handler.h; sourceTree = ""; }; 122633611F6EB2360EFA038F /* v8accessor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8accessor_cpptoc.h; sourceTree = ""; }; @@ -234,6 +239,7 @@ 135FE356E2151DAA229B9959 /* cef_urlrequest_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_urlrequest_capi.h; sourceTree = ""; }; 184AA0143161D3E0BC6B2AB6 /* cef_ptr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_ptr.h; sourceTree = ""; }; 1907F9480DB53A3F0DF752E0 /* string_visitor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_visitor_cpptoc.cc; sourceTree = ""; }; + 1B6C334E2897BBE91BCBAE0A /* domaccess.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = domaccess.html; sourceTree = ""; }; 1BA88A6476B2497181946973 /* cef_life_span_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_life_span_handler_capi.h; sourceTree = ""; }; 1C69A3492889C721A4E547D4 /* response_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = response_ctocpp.h; sourceTree = ""; }; 1C76D781600C6639F7A3D73D /* cef_cookie.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_cookie.h; sourceTree = ""; }; @@ -243,51 +249,47 @@ 1FF63EEEE51B0ECB1033166D /* cef_browser_process_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_browser_process_handler_capi.h; sourceTree = ""; }; 2055BA1BE251D831FE186144 /* cef_string_visitor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_visitor.h; sourceTree = ""; }; 20BA95CD301C4EE963BC00CC /* cef_zip_reader_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_zip_reader_capi.h; sourceTree = ""; }; - 22A91D67B9CE101D31B1C73A /* client_switches.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_switches.h; sourceTree = ""; }; 236A9AFABFE62BD05ECA7AC8 /* stream_reader_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = stream_reader_ctocpp.cc; sourceTree = ""; }; - 24A2D6DCABDA956EBDC193CB /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_util.h; sourceTree = ""; }; 26080C2E868907EFAF033C38 /* cef_resource_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_resource_handler.h; sourceTree = ""; }; - 260F6C59A29DD45FF7CD36DE /* client_app.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_app.h; sourceTree = ""; }; 2654257A86558F3BB511B5D7 /* context_menu_params_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = context_menu_params_ctocpp.cc; sourceTree = ""; }; 26734663172A3B270B5B0879 /* cef_download_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_download_handler.h; sourceTree = ""; }; - 270356D0402AF64F58C09A86 /* localstorage.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = localstorage.html; sourceTree = ""; }; - 279820DCB537D61B9D0F587A /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = ""; }; 28D2DC9B0106AAF4CA4B84F4 /* cef_string_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_map.h; sourceTree = ""; }; 2AD744DD1B85BD8516679128 /* geolocation_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = geolocation_handler_cpptoc.h; sourceTree = ""; }; 2BB5E71FE9C81B2F576744B6 /* cef_url.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_url.h; sourceTree = ""; }; - 2D0723B21B19924B7FA5BEEE /* binding_test.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = binding_test.h; sourceTree = ""; }; 2D83F8CAE45B8B1FB90A23D7 /* focus_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = focus_handler_cpptoc.h; sourceTree = ""; }; 2DFE6F8215B17EFF152F8C1B /* cef_callback_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_callback_capi.h; sourceTree = ""; }; 2E321B166C7FF52B007DB6B2 /* cef_string_visitor_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_visitor_capi.h; sourceTree = ""; }; 2ECC93253B64FA1FDC8657F7 /* browser_process_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_process_handler_cpptoc.cc; sourceTree = ""; }; + 2F2406C32C4529A94CF8FA3B /* binding_test.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = binding_test.h; sourceTree = ""; }; 2FB0A2A624D8FBF3E2ED27E2 /* libcef_dll_wrapper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libcef_dll_wrapper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 30A0A3F4096B60BECEC1D6CE /* client_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_renderer.h; sourceTree = ""; }; 30D1F73815E34D7F64E3C302 /* urlrequest_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = urlrequest_ctocpp.h; sourceTree = ""; }; 31578271D9FD9AE272B4C26D /* cef_dom_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_dom_capi.h; sourceTree = ""; }; 319A2682FFABA5BCC5947828 /* browser_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_ctocpp.h; sourceTree = ""; }; 320061C02736EEAD2E137069 /* cef_task_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_task_capi.h; sourceTree = ""; }; 327CB8AF62FB360E3EF03984 /* request_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = request_handler_cpptoc.h; sourceTree = ""; }; + 34E348731F2D104A06524366 /* client_app.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_app.cpp; sourceTree = ""; }; 357BDAE5839F6609CD06E042 /* post_data_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = post_data_ctocpp.h; sourceTree = ""; }; 358E48B5A4F72C9DC84BE229 /* load_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = load_handler_cpptoc.cc; sourceTree = ""; }; 3635E480B7F9DCC771B002FE /* keyboard_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = keyboard_handler_cpptoc.cc; sourceTree = ""; }; + 36581E339B6C636EB3600773 /* xmlhttprequest.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = xmlhttprequest.html; sourceTree = ""; }; 37FCEDA6FBF91DD9FB19752F /* cef_menu_model_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_menu_model_capi.h; sourceTree = ""; }; 383DCF65D16AF076A1A6D9C3 /* v8exception_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8exception_ctocpp.h; sourceTree = ""; }; 398F992B145AB9252FF50298 /* resource_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = resource_handler_cpptoc.cc; sourceTree = ""; }; 3B292D7A1F0C57AC14BA98C0 /* binary_value_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = binary_value_ctocpp.h; sourceTree = ""; }; + 3B9890C1E003921014B708A6 /* binding_test.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = binding_test.cpp; sourceTree = ""; }; 3BBE685CEE22005DFB009944 /* proxy_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = proxy_handler_cpptoc.cc; sourceTree = ""; }; 3C3FB6A391FA0AADA4CE72D6 /* cef_response_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_response_capi.h; sourceTree = ""; }; 3C92FB9F51FFD31BAFD8A1DF /* cef_stream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_stream.h; sourceTree = ""; }; - 3D587326CCEE28CB243803D9 /* dom_test.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dom_test.h; sourceTree = ""; }; 40E95073528BADA34C926730 /* cef_base_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_base_capi.h; sourceTree = ""; }; 41CE65C927368225FAC99B28 /* cef_context_menu_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_context_menu_handler.h; sourceTree = ""; }; 4270EEC8527C3500CD8AEF91 /* v8value_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8value_ctocpp.cc; sourceTree = ""; }; 430255B1D74762D49D56B2EB /* request_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = request_ctocpp.cc; sourceTree = ""; }; + 434807E8B7B4A2544D970750 /* client_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_handler.h; sourceTree = ""; }; 4420EC4C97F8E9842004EE33 /* cef_request_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_request_handler_capi.h; sourceTree = ""; }; 45C2F15C21F64A758140BA76 /* list_value_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = list_value_ctocpp.h; sourceTree = ""; }; 468287BEF04CAF9D533EA43F /* cef_runnable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_runnable.h; sourceTree = ""; }; 486EAD58F64C7354BD9BF7FB /* resource_bundle_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = resource_bundle_handler_cpptoc.cc; sourceTree = ""; }; 490630812B1F8404E54A4428 /* cookie_manager_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cookie_manager_ctocpp.h; sourceTree = ""; }; - 49301B0EC8CC7BE756FC916E /* release_impl_official.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = release_impl_official.gypi; path = chromium/build/internal/release_impl_official.gypi; sourceTree = ""; }; 499F1DDC05B0F3CD78CBF72A /* cookie_visitor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cookie_visitor_cpptoc.cc; sourceTree = ""; }; 49BE5978F6A9FFB5D54D598C /* cef_time.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_time.h; sourceTree = ""; }; 49F642037524E666E0922E01 /* cef_web_plugin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_web_plugin.h; sourceTree = ""; }; @@ -298,7 +300,7 @@ 4D3C925FBC108873A0BAB6D7 /* cef_download_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_download_handler_capi.h; sourceTree = ""; }; 4EBF1A8A50CC76BCFD2B9815 /* cef_client_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_client_capi.h; sourceTree = ""; }; 4F0353741BADA8DFB2DCE465 /* process_message_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = process_message_ctocpp.cc; sourceTree = ""; }; - 508CF0A2D8680B2081F0FFA2 /* client_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_handler.h; sourceTree = ""; }; + 4F9AF0F193868066137BA5A4 /* dialogs.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = dialogs.html; sourceTree = ""; }; 5295DF3ECB3172EF8C45B6AF /* libcef_dll_wrapper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = libcef_dll_wrapper.cc; sourceTree = ""; }; 52CE80D0037E0804C258764B /* cef_export.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_export.h; sourceTree = ""; }; 52F07ED1649486775E0077B3 /* read_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = read_handler_cpptoc.h; sourceTree = ""; }; @@ -306,18 +308,16 @@ 54CC5E90A8296ECF4F7224A1 /* cef_browser_process_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_browser_process_handler.h; sourceTree = ""; }; 54D1146F7F37B195FF73CC6F /* request_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = request_handler_cpptoc.cc; sourceTree = ""; }; 54D6325E4527C748E4D3E98A /* cef_v8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_v8.h; sourceTree = ""; }; - 5667E7216525A0A996EC0E21 /* client_handler_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = client_handler_mac.mm; sourceTree = ""; }; 569ACE130A89E1EA0BCA08A4 /* urlrequest_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = urlrequest_ctocpp.cc; sourceTree = ""; }; 57106C8999970BFBFF1B3F43 /* resource_bundle_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_bundle_handler_cpptoc.h; sourceTree = ""; }; 5768C5E2156E03BE517890FC /* proxy_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = proxy_handler_cpptoc.h; sourceTree = ""; }; 583D4CCE212AE5487DF70A8D /* cef_download_item.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_download_item.h; sourceTree = ""; }; 58AFC197A969BA55ED1C9C05 /* cef_types_wrappers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_types_wrappers.h; sourceTree = ""; }; + 5A7734F9C6D407EB7D192E20 /* cefclient.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = cefclient.icns; sourceTree = ""; }; 5AA3472CBB09D07756D7DF4D /* download_item_callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_item_callback_ctocpp.h; sourceTree = ""; }; 5AC85876C5B3BD87D9F96217 /* cef_tuple.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_tuple.h; sourceTree = ""; }; 5B60E47B25F43EE43E246051 /* before_download_callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = before_download_callback_ctocpp.h; sourceTree = ""; }; - 5BF839B43E5EB6CE6945DAB3 /* domaccess.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = domaccess.html; sourceTree = ""; }; 5C551292013082C6E9CDC76E /* cef_string_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_types.h; sourceTree = ""; }; - 5C64674A62F450A50FBA9A0D /* process_helper_mac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = process_helper_mac.cpp; sourceTree = ""; }; 5C9574A105E12DCD8645068C /* post_data_element_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = post_data_element_ctocpp.h; sourceTree = ""; }; 5CD903CA81B3E37C1E1601F4 /* dictionary_value_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dictionary_value_ctocpp.cc; sourceTree = ""; }; 5D5A55E9CE0779FAE7B0FADD /* cef_string.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string.h; sourceTree = ""; }; @@ -325,6 +325,8 @@ 5E2BC07C5D4DB0E4F9B48062 /* cef_cookie_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_cookie_capi.h; sourceTree = ""; }; 5EDBC5792F4176E098BAD6D2 /* cef_process_util_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_process_util_capi.h; sourceTree = ""; }; 5FBEC7A3CE8F7311AF34D670 /* download_item_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_item_ctocpp.h; sourceTree = ""; }; + 61ECFF0D7456D779EE7F22D8 /* client_handler_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = client_handler_mac.mm; sourceTree = ""; }; + 6201D11C7FF912DE2195D443 /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_util.h; sourceTree = ""; }; 626591AA7B2232990F6F8ED7 /* browser_host_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_host_ctocpp.h; sourceTree = ""; }; 6267CFABF3CD48619F3796BA /* download_item_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_item_ctocpp.cc; sourceTree = ""; }; 62B07B07B01AED7652F059B7 /* cef_resource_bundle_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_resource_bundle_handler_capi.h; sourceTree = ""; }; @@ -332,25 +334,28 @@ 63494703C086EE8EE25A180D /* cef_proxy_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_proxy_handler_capi.h; sourceTree = ""; }; 637D5B7F9B843EDCC06D30B6 /* list_value_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = list_value_ctocpp.cc; sourceTree = ""; }; 6558ED36C3D4CC4DD65183CE /* cef_paths.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_paths.gypi; sourceTree = ""; }; + 659E70A5E4FFB5660809950E /* process_helper_mac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = process_helper_mac.cpp; sourceTree = ""; }; 689E55F177BB1C6BACBCBD8F /* domdocument_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domdocument_ctocpp.h; sourceTree = ""; }; 695177EC316540831C8F3F00 /* render_process_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = render_process_handler_cpptoc.cc; sourceTree = ""; }; - 698E4D82D5A48BEEF72A0A78 /* dom_test.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dom_test.cpp; sourceTree = ""; }; 69959C2D204F5C6A0E42F702 /* cef_string_multimap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_multimap.h; sourceTree = ""; }; + 6AA7F0EAD50B7E08A81C87BB /* scheme_test.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scheme_test.h; sourceTree = ""; }; 6BEF619FB0C7B8993DE26F3A /* cef_string_wrappers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_wrappers.h; sourceTree = ""; }; 6C9690FDEB71C11417E53A4B /* geolocation_callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = geolocation_callback_ctocpp.cc; sourceTree = ""; }; + 6E9F650F8EBBC79592563A70 /* scheme_test.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_test.cpp; sourceTree = ""; }; 6F92CD2E5C5EBED534D2B058 /* life_span_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = life_span_handler_cpptoc.h; sourceTree = ""; }; 6FDE90CED1D1795F47E60247 /* cef_geolocation_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_geolocation_handler.h; sourceTree = ""; }; 704BC5A8C74FE5EC68D5BBF7 /* cef_zip_reader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_zip_reader.h; sourceTree = ""; }; 708ACC86A347568E7B3823AC /* cef_geolocation_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_geolocation_handler_capi.h; sourceTree = ""; }; 71F5EAC5A8C1A4D69A063D85 /* zip_reader_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = zip_reader_ctocpp.cc; sourceTree = ""; }; 72509FE4DE249832DE53DAE1 /* jsdialog_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = jsdialog_handler_cpptoc.h; sourceTree = ""; }; + 72679F3643B0293CA4831BC5 /* localstorage.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = localstorage.html; sourceTree = ""; }; 729FF19BD6118496803CAECC /* resource_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_handler_cpptoc.h; sourceTree = ""; }; 72D134DE9E5D1F61D9BA5236 /* cef_scheme.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_scheme.h; sourceTree = ""; }; + 7434A5A3A0075AD13C0CC347 /* client_app_delegates.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_app_delegates.cpp; sourceTree = ""; }; 74C2A349C6C5FFC3490EF830 /* cef_application_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_application_mac.h; sourceTree = ""; }; 7536FC15793B4CCA9783B6EF /* cef_life_span_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_life_span_handler.h; sourceTree = ""; }; 75B16F433649BE46EB00E581 /* cef_values.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_values.h; sourceTree = ""; }; 75C95F266AED00470BF37EF4 /* post_data_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = post_data_ctocpp.cc; sourceTree = ""; }; - 7608E47DFBF0AF580C5C7E8F /* release_defaults.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = release_defaults.gypi; path = chromium/build/internal/release_defaults.gypi; sourceTree = ""; }; 773FB3CE83F8665C7ED19FBB /* cookie_visitor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cookie_visitor_cpptoc.h; sourceTree = ""; }; 786557A77F668A536C47DCF0 /* app_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = app_cpptoc.cc; sourceTree = ""; }; 7881DE6BF224EF34BD57ED98 /* client_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_cpptoc.h; sourceTree = ""; }; @@ -366,7 +371,6 @@ 7EA912CBF5992E4D8B48341B /* ffmpegsumo.so */ = {isa = PBXFileReference; lastKnownFileType = text; path = ffmpegsumo.so; sourceTree = ""; }; 7ED28596FFF0D314E403E6A9 /* cef_path_util_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_path_util_capi.h; sourceTree = ""; }; 80E9717C7D5211851C2CE39F /* cef_pack_resources.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_pack_resources.h; sourceTree = ""; }; - 83366F559D651D3D6F010552 /* client_handler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_handler.cpp; sourceTree = ""; }; 8395F3CBAB1C065B5FC4D68F /* download_item_callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_item_callback_ctocpp.cc; sourceTree = ""; }; 842BCCC3D466FC51F95A0474 /* command_line_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = command_line_ctocpp.h; sourceTree = ""; }; 852F0B0FD262BCEDD965AE1D /* domevent_listener_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domevent_listener_cpptoc.h; sourceTree = ""; }; @@ -383,46 +387,41 @@ 8D30B30E682FB390D76925BE /* auth_callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = auth_callback_ctocpp.cc; sourceTree = ""; }; 8D4F75751DD08217C3C03145 /* cef_stream_resource_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_stream_resource_handler.h; sourceTree = ""; }; 8D8551450A19A27CCB161E0C /* cef_render_process_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_render_process_handler.h; sourceTree = ""; }; - 8EC4D647359C00749A0AA03B /* string_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = string_util.h; sourceTree = ""; }; 8F12A500F34D259488C40450 /* jsdialog_callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = jsdialog_callback_ctocpp.h; sourceTree = ""; }; - 8FFFBA46C9B0679311CF9C9B /* cefclient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cefclient.h; sourceTree = ""; }; 9028CC75378531EB6A3F58FA /* cef_process_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_process_util.h; sourceTree = ""; }; - 906B192A29657F64CA00B012 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = ""; }; 90F2FA2FBA8C499723B1EA60 /* frame_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = frame_ctocpp.h; sourceTree = ""; }; 91758947E32C4496EF85035A /* cef_display_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_display_handler_capi.h; sourceTree = ""; }; 927441CD07FFDEB32F5005FE /* cef_client.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_client.h; sourceTree = ""; }; 9311E25B2B10FE02E280BE48 /* cef_jsdialog_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_jsdialog_handler.h; sourceTree = ""; }; 933C345C45AA687EAC2CA1B0 /* atom.gyp */ = {isa = PBXFileReference; lastKnownFileType = text; path = atom.gyp; sourceTree = ""; }; 935918F97E5C224406D12650 /* cef_build.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_build.h; sourceTree = ""; }; - 93757D2FC350BDDA2B7DA2AA /* dialogs.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = dialogs.html; sourceTree = ""; }; 93DE02637357AE14D634C44F /* cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cpptoc.h; sourceTree = ""; }; 9490C082FB5369BA1D8C3A2D /* cef_process_message_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_process_message_capi.h; sourceTree = ""; }; 95E1C61DFA6C0F3A2F186AA5 /* context_menu_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context_menu_handler_cpptoc.h; sourceTree = ""; }; 980F3C74815281AC191F1E57 /* cef_menu_model.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_menu_model.h; sourceTree = ""; }; - 98BD40AA2AFAC0DCEEDC51DE /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; 98D2D165BC2E660B7652215F /* jsdialog_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = jsdialog_handler_cpptoc.cc; sourceTree = ""; }; 9B382AA034A74CA4A0F0ED4C /* v8accessor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8accessor_cpptoc.cc; sourceTree = ""; }; 9C8D32ACB19E824AD0796E73 /* cef_download_item_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_download_item_capi.h; sourceTree = ""; }; 9CA1997A7B8553B2C66A3928 /* web_plugin_info_visitor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = web_plugin_info_visitor_cpptoc.h; sourceTree = ""; }; - 9D34CDF87E6F0B075486B14A /* release.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = release.gypi; path = chromium/build/release.gypi; sourceTree = ""; }; 9D89C747FF4770EA92F9239D /* cef_frame_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_frame_capi.h; sourceTree = ""; }; 9FA3277A78C52DD06F5F4EF5 /* cef_keyboard_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_keyboard_handler_capi.h; sourceTree = ""; }; 9FDF7EEE33DF8E4B5375DC9B /* cef_app.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_app.h; sourceTree = ""; }; 9FE2507F90F280D04E80E322 /* domvisitor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domvisitor_cpptoc.h; sourceTree = ""; }; + A094694040D792B0E554693B /* cefclient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cefclient.cpp; sourceTree = ""; }; + A0E04B3D262E52B5D640D03C /* cefclient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cefclient.h; sourceTree = ""; }; A11A0782DAF4C69891B9E611 /* cef_render_process_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_render_process_handler_capi.h; sourceTree = ""; }; + A1AEE7A3533E8559B9479D3A /* client_app.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_app.h; sourceTree = ""; }; A221A24DAEDF11F34E3AABE5 /* xml_reader_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = xml_reader_ctocpp.h; sourceTree = ""; }; - A2D63CF770ED8E34553DBF6C /* filename_rules.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = filename_rules.gypi; path = chromium/build/filename_rules.gypi; sourceTree = ""; }; + A459E73196A93DF43C3BDBCC /* cefclient_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = cefclient_mac.mm; sourceTree = ""; }; A483AD212B5AB40F2C412200 /* cef_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_mac.h; sourceTree = ""; }; A849982774F76181E7F48FF6 /* cef_frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_frame.h; sourceTree = ""; }; A8BCFE1A06453AF782644C43 /* app_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = app_cpptoc.h; sourceTree = ""; }; A9E34E227A6522EE9E6B678B /* jsdialog_callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = jsdialog_callback_ctocpp.cc; sourceTree = ""; }; AA3C7CE3246813F6A1F1B54F /* cef_stream_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_stream_capi.h; sourceTree = ""; }; AABBEE2898789D96A231F0B1 /* cef_request_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_request_capi.h; sourceTree = ""; }; - AB158A494CD29727C3ABF79E /* binding.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = binding.html; sourceTree = ""; }; AB28CDD02B169844A3228175 /* context_menu_params_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context_menu_params_ctocpp.h; sourceTree = ""; }; AB8891B754FA3202B85CA58D /* cef_xml_object.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_xml_object.h; sourceTree = ""; }; ABC384700091709CE2FF17AA /* v8value_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8value_ctocpp.h; sourceTree = ""; }; - ACF828AB18879B9CDF894195 /* common.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = common.gypi; path = chromium/build/common.gypi; sourceTree = ""; }; AD45453EA501977150108164 /* cef_version.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_version.h; sourceTree = ""; }; AD8D830C8B484B028BF3F0B4 /* browser_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_ctocpp.cc; sourceTree = ""; }; AEF976394C83C300776D3BF6 /* transfer_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = transfer_util.h; sourceTree = ""; }; @@ -434,20 +433,18 @@ B769C4454E88CAE69D8E9BDA /* urlrequest_client_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = urlrequest_client_cpptoc.cc; sourceTree = ""; }; B82B8F1FA5642ADE9FDC58B1 /* cef_context_menu_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_context_menu_handler_capi.h; sourceTree = ""; }; B8EAF503154E387DF3DA1E8B /* cef_stream_resource_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cef_stream_resource_handler.cc; sourceTree = ""; }; - BA7C5FFE957632FC1677C633 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = ""; }; - BBB7B4779BFA5A28D25157CD /* client_app.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_app.cpp; sourceTree = ""; }; + BB4E96D0513420CF278E24FF /* dom_test.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dom_test.cpp; sourceTree = ""; }; BBD5E5A7F8D5A1D0C21032F7 /* cef_app_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_app_capi.h; sourceTree = ""; }; BC50E1057B487F5AF0A0F7C3 /* domevent_listener_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domevent_listener_cpptoc.cc; sourceTree = ""; }; - BCE6C330A0416CE0C5AFB966 /* binding_test.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = binding_test.cpp; sourceTree = ""; }; BDC045223B97CF2E94A14393 /* cef_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_base.h; sourceTree = ""; }; BF1CA77DAAAF3D26C1644B16 /* browser_host_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_host_ctocpp.cc; sourceTree = ""; }; - BF1E18104D3540917EFEFE50 /* release_impl.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = release_impl.gypi; path = chromium/build/internal/release_impl.gypi; sourceTree = ""; }; BFB55C7C3A1B9FBEF86498D1 /* load_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = load_handler_cpptoc.h; sourceTree = ""; }; BFCD51C9A26781C7ED9D74E3 /* base_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = base_ctocpp.h; sourceTree = ""; }; C28296745440EACC2BBC5E77 /* cef_logging.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_logging.h; sourceTree = ""; }; + C2EA47656D9F94ABA0ECBDC3 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; C33FDD6722853DC0ABF83783 /* cef_resource_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_resource_handler_capi.h; sourceTree = ""; }; + C6E5A5A76BC38B66A746F07C /* client_switches.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_switches.cpp; sourceTree = ""; }; C9B9D5EE0AE765BA2CE95E3D /* libcef_dll_wrapper2.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = libcef_dll_wrapper2.cc; sourceTree = ""; }; - C9D386C18404AB8E5F32DB68 /* cef.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef.gypi; sourceTree = ""; }; C9ECB41E85597AC94A57D250 /* transfer_util.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = transfer_util.cpp; sourceTree = ""; }; CACE02D20E88064BE93B074D /* domnode_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domnode_ctocpp.h; sourceTree = ""; }; CBBBD6A779FDD95564640CAE /* domevent_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domevent_ctocpp.h; sourceTree = ""; }; @@ -458,58 +455,54 @@ D19B227DF14576316F9B70FA /* cef_scheme_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_scheme_capi.h; sourceTree = ""; }; D295B1AB379CE7E01B77027B /* cef_dom.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_dom.h; sourceTree = ""; }; D2B60C8EC5D55F9BC60AEE16 /* cef_values_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_values_capi.h; sourceTree = ""; }; - D37851B41429592E37B3A9C8 /* client_renderer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_renderer.cpp; sourceTree = ""; }; D43501ADA833D77B37F619F8 /* write_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = write_handler_cpptoc.h; sourceTree = ""; }; D49975CE7A97C65C314FD66D /* cef_xml_reader_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_xml_reader_capi.h; sourceTree = ""; }; - D4C1A5A51B9F1028A71A88B9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D5255DBEBD397188B233A231 /* scheme_test.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scheme_test.h; sourceTree = ""; }; D57DF37F0571556934A8C97E /* browser_process_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_process_handler_cpptoc.h; sourceTree = ""; }; D5AAF3B20A8154CF656F2B95 /* auth_callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = auth_callback_ctocpp.h; sourceTree = ""; }; + D7AE192FBB325E34EEFAFF3D /* dom_test.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dom_test.h; sourceTree = ""; }; + D871E71393C8B6DCF29634A7 /* resource_util_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = resource_util_mac.mm; sourceTree = ""; }; DAB818E7FCF815438C618284 /* cef_task.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_task.h; sourceTree = ""; }; DAC41BC67FAE62BC392AA9F8 /* keyboard_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = keyboard_handler_cpptoc.h; sourceTree = ""; }; DB44B0B1D0D1A4A204C4D721 /* libcef.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libcef.dylib; sourceTree = ""; }; DB518174682570C6EDD8C8D3 /* cef_url_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_url_capi.h; sourceTree = ""; }; DC8B2A92CEC7E64CC3EA346C /* cef_byte_read_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cef_byte_read_handler.cc; sourceTree = ""; }; - DD6704225845420F697A458B /* client_switches.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_switches.cpp; sourceTree = ""; }; DE68BBE23816C0B20D7AF986 /* ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ctocpp.h; sourceTree = ""; }; DF00ED2CAADFA1AB8A11A9B1 /* download_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_handler_cpptoc.h; sourceTree = ""; }; DF4EBBE541EBF140B56F80A6 /* task_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = task_cpptoc.h; sourceTree = ""; }; E0E0A1FD0CC05EFA6D420C91 /* v8exception_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8exception_ctocpp.cc; sourceTree = ""; }; E1FB3405663B7FFD60B261B1 /* scheme_registrar_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_registrar_ctocpp.cc; sourceTree = ""; }; - E28F7B19EBBEAB5154036B43 /* Atom.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Atom.icns; sourceTree = ""; }; E324492DA04785C9FE6025E3 /* scheme_handler_factory_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_handler_factory_cpptoc.cc; sourceTree = ""; }; E44783BC61DF5362B9B7D2E3 /* xml_reader_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = xml_reader_ctocpp.cc; sourceTree = ""; }; E6E5D3276CEA77BB22BAF8E2 /* download_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_handler_cpptoc.cc; sourceTree = ""; }; E735FC4B9DAD056A2ED1A471 /* cef_load_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_load_handler.h; sourceTree = ""; }; - E864251A0EFEB6D92262433F /* string_util.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_util.cpp; sourceTree = ""; }; E87735D8572F78C83B65A3BE /* base_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = base_cpptoc.h; sourceTree = ""; }; E8BCE9ACB05D6D608EDA2EA6 /* context_menu_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = context_menu_handler_cpptoc.cc; sourceTree = ""; }; E9E5A75B2A0A225244F1297A /* v8handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8handler_cpptoc.h; sourceTree = ""; }; EA6CDBF6F227A0F1049AB0D0 /* domvisitor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domvisitor_cpptoc.cc; sourceTree = ""; }; EB18CE2A00D7F993711EEB5C /* domdocument_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domdocument_ctocpp.cc; sourceTree = ""; }; EB8E59A89E8B84BE29BA7365 /* frame_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = frame_ctocpp.cc; sourceTree = ""; }; - EBF5A644FD4803A78E68D422 /* scheme_test.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_test.cpp; sourceTree = ""; }; EC24F09DA2C73A96ACF68EC2 /* binary_value_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = binary_value_ctocpp.cc; sourceTree = ""; }; + EDEA55B8511F9FE4330B965B /* binding.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = binding.html; sourceTree = ""; }; EFDBBC75060253CABE351E3A /* stream_reader_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stream_reader_ctocpp.h; sourceTree = ""; }; F005091550289905B4B6096C /* read_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = read_handler_cpptoc.cc; sourceTree = ""; }; F021D8DC9B5B46E1D2F55B8F /* write_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = write_handler_cpptoc.cc; sourceTree = ""; }; F076BC5AF6E9D25E8668BFE9 /* string_visitor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = string_visitor_cpptoc.h; sourceTree = ""; }; F10AAEDAA9C5C041F45DA56D /* life_span_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = life_span_handler_cpptoc.cc; sourceTree = ""; }; - F18A1AF7B2FFBF8C0B6E03C2 /* xmlhttprequest.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = xmlhttprequest.html; sourceTree = ""; }; + F2171CB41DAB7C5930B70BDE /* string_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = string_util.h; sourceTree = ""; }; F253D00D10507AAA89CADA4D /* stream_writer_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = stream_writer_ctocpp.cc; sourceTree = ""; }; F3072F2897B0C489C1C07F03 /* task_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = task_cpptoc.cc; sourceTree = ""; }; F3EFAAF395C01B193EC2565B /* cef_focus_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_focus_handler_capi.h; sourceTree = ""; }; + F4A514116B2E9B92B2697715 /* client_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_renderer.h; sourceTree = ""; }; F4C42A3074E03DCFD88F44EC /* display_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = display_handler_cpptoc.cc; sourceTree = ""; }; F5AB8BF20DCFAC72A2C83BC0 /* cef_path_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_path_util.h; sourceTree = ""; }; - F611B99AD296ADD51058D742 /* cefclient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cefclient.cpp; sourceTree = ""; }; F911DFCEF7937FB01ADD7DD4 /* Atom Helper.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Atom Helper.app"; sourceTree = BUILT_PRODUCTS_DIR; }; F955AE763163316A3B7E889F /* request_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = request_ctocpp.h; sourceTree = ""; }; + F9565ED4708D694BE7E26B46 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = ""; }; F95FCF0F4C19634D3E55434B /* web_plugin_info_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = web_plugin_info_ctocpp.cc; sourceTree = ""; }; F9FAD86D0106486D9F6CAB64 /* cookie_manager_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cookie_manager_ctocpp.cc; sourceTree = ""; }; FAF26B72CF0F80FB521FECB8 /* render_process_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = render_process_handler_cpptoc.h; sourceTree = ""; }; FBFC8F31C85032792E803CC8 /* cef_v8_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_v8_capi.h; sourceTree = ""; }; FC00B66B870E48CDE3A076A1 /* cef_process_message.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_process_message.h; sourceTree = ""; }; - FD4CBC09BA3E54E2FC80A782 /* client_app_delegates.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_app_delegates.cpp; sourceTree = ""; }; FD71AEDC4163189833F052FA /* cef_request_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_request_handler.h; sourceTree = ""; }; FE0E005CB8EE8E11C7633B9D /* stream_writer_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stream_writer_ctocpp.h; sourceTree = ""; }; FEC7E23C100568286B6E0E08 /* cef_types_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_types_mac.h; sourceTree = ""; }; @@ -570,53 +563,12 @@ path = cef; sourceTree = ""; }; - 10F626399AF9036C3E8C384D /* atom/cefclient */ = { - isa = PBXGroup; - children = ( - 8F095689F6F93B120398471F /* mac */, - 3BA1D8A9530906C825A5C78B /* res */, - BCE6C330A0416CE0C5AFB966 /* binding_test.cpp */, - 2D0723B21B19924B7FA5BEEE /* binding_test.h */, - F611B99AD296ADD51058D742 /* cefclient.cpp */, - 8FFFBA46C9B0679311CF9C9B /* cefclient.h */, - 0A395E31D08AFE54DF364BD8 /* cefclient_mac.mm */, - BBB7B4779BFA5A28D25157CD /* client_app.cpp */, - 260F6C59A29DD45FF7CD36DE /* client_app.h */, - FD4CBC09BA3E54E2FC80A782 /* client_app_delegates.cpp */, - 83366F559D651D3D6F010552 /* client_handler.cpp */, - 508CF0A2D8680B2081F0FFA2 /* client_handler.h */, - 5667E7216525A0A996EC0E21 /* client_handler_mac.mm */, - D37851B41429592E37B3A9C8 /* client_renderer.cpp */, - 30A0A3F4096B60BECEC1D6CE /* client_renderer.h */, - DD6704225845420F697A458B /* client_switches.cpp */, - 22A91D67B9CE101D31B1C73A /* client_switches.h */, - 698E4D82D5A48BEEF72A0A78 /* dom_test.cpp */, - 3D587326CCEE28CB243803D9 /* dom_test.h */, - 5C64674A62F450A50FBA9A0D /* process_helper_mac.cpp */, - 24A2D6DCABDA956EBDC193CB /* resource_util.h */, - 0E810717DC2D77F1B065D6F1 /* resource_util_mac.mm */, - EBF5A644FD4803A78E68D422 /* scheme_test.cpp */, - D5255DBEBD397188B233A231 /* scheme_test.h */, - E864251A0EFEB6D92262433F /* string_util.cpp */, - 8EC4D647359C00749A0AA03B /* string_util.h */, - BA7C5FFE957632FC1677C633 /* util.h */, - ); - path = atom/cefclient; - sourceTree = ""; - }; 11D0E955790457F7BEAA3C94 /* Build */ = { isa = PBXGroup; children = ( 933C345C45AA687EAC2CA1B0 /* atom.gyp */, - C9D386C18404AB8E5F32DB68 /* cef.gypi */, 6558ED36C3D4CC4DD65183CE /* cef_paths.gypi */, B20195CC59EBF0814C6BB71F /* cef_paths2.gypi */, - ACF828AB18879B9CDF894195 /* common.gypi */, - A2D63CF770ED8E34553DBF6C /* filename_rules.gypi */, - 9D34CDF87E6F0B075486B14A /* release.gypi */, - 7608E47DFBF0AF580C5C7E8F /* release_defaults.gypi */, - BF1E18104D3540917EFEFE50 /* release_impl.gypi */, - 49301B0EC8CC7BE756FC916E /* release_impl_official.gypi */, ); name = Build; sourceTree = ""; @@ -630,19 +582,6 @@ name = Frameworks; sourceTree = ""; }; - 3BA1D8A9530906C825A5C78B /* res */ = { - isa = PBXGroup; - children = ( - AB158A494CD29727C3ABF79E /* binding.html */, - 93757D2FC350BDDA2B7DA2AA /* dialogs.html */, - 5BF839B43E5EB6CE6945DAB3 /* domaccess.html */, - 270356D0402AF64F58C09A86 /* localstorage.html */, - 906B192A29657F64CA00B012 /* logo.png */, - F18A1AF7B2FFBF8C0B6E03C2 /* xmlhttprequest.html */, - ); - path = res; - sourceTree = ""; - }; 43C211543CE85EC76E214B18 = { isa = PBXGroup; children = ( @@ -810,17 +749,6 @@ name = BUILT_PRODUCTS_DIR; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F095689F6F93B120398471F /* mac */ = { - isa = PBXGroup; - children = ( - E28F7B19EBBEAB5154036B43 /* Atom.icns */, - D4C1A5A51B9F1028A71A88B9 /* Info.plist */, - 709C7A8894CFC53DB4A6904A /* InfoPlist.strings */, - 5E8EB8112AD7378AB11B0371 /* MainMenu.xib */, - ); - path = mac; - sourceTree = ""; - }; 974FDA2CF62FBF6A9E5E707B /* internal */ = { isa = PBXGroup; children = ( @@ -976,14 +904,25 @@ isa = PBXGroup; children = ( 6A323577E3B7E40577C3BBF9 /* BUILT_PRODUCTS_DIR */, - 10F626399AF9036C3E8C384D /* atom/cefclient */, 06875A3480F5AF5F56C9049D /* cef */, 51ED0A9864B76144B65C2CAF /* include */, 02555932F78868889BD51AA7 /* libcef_dll */, + F143B6549CB5AF34ACE60B9B /* tests/cefclient */, ); name = Source; sourceTree = ""; }; + DFA68CD2AB828B8AB69A45E1 /* mac */ = { + isa = PBXGroup; + children = ( + 109EA7F18E7BB5D976A75A16 /* Info.plist */, + 6F25FBE2A3B999F7A5F766C6 /* InfoPlist.strings */, + 019626721924D58E07E6E406 /* MainMenu.xib */, + 5A7734F9C6D407EB7D192E20 /* cefclient.icns */, + ); + path = mac; + sourceTree = ""; + }; EAE13C948F9AACF14FE4CEA5 /* Products */ = { isa = PBXGroup; children = ( @@ -994,6 +933,53 @@ name = Products; sourceTree = ""; }; + F143B6549CB5AF34ACE60B9B /* tests/cefclient */ = { + isa = PBXGroup; + children = ( + DFA68CD2AB828B8AB69A45E1 /* mac */, + F57AA856D731EA23C7DF499C /* res */, + 3B9890C1E003921014B708A6 /* binding_test.cpp */, + 2F2406C32C4529A94CF8FA3B /* binding_test.h */, + A094694040D792B0E554693B /* cefclient.cpp */, + A0E04B3D262E52B5D640D03C /* cefclient.h */, + A459E73196A93DF43C3BDBCC /* cefclient_mac.mm */, + 34E348731F2D104A06524366 /* client_app.cpp */, + A1AEE7A3533E8559B9479D3A /* client_app.h */, + 7434A5A3A0075AD13C0CC347 /* client_app_delegates.cpp */, + 009694F9D936E9349F667B1B /* client_handler.cpp */, + 434807E8B7B4A2544D970750 /* client_handler.h */, + 61ECFF0D7456D779EE7F22D8 /* client_handler_mac.mm */, + 022965FFE5517D0702CE8419 /* client_renderer.cpp */, + F4A514116B2E9B92B2697715 /* client_renderer.h */, + C6E5A5A76BC38B66A746F07C /* client_switches.cpp */, + 0B0662DB01F384F183BE61CC /* client_switches.h */, + BB4E96D0513420CF278E24FF /* dom_test.cpp */, + D7AE192FBB325E34EEFAFF3D /* dom_test.h */, + 659E70A5E4FFB5660809950E /* process_helper_mac.cpp */, + 6201D11C7FF912DE2195D443 /* resource_util.h */, + D871E71393C8B6DCF29634A7 /* resource_util_mac.mm */, + 6E9F650F8EBBC79592563A70 /* scheme_test.cpp */, + 6AA7F0EAD50B7E08A81C87BB /* scheme_test.h */, + 063F3333683443246DC5004B /* string_util.cpp */, + F2171CB41DAB7C5930B70BDE /* string_util.h */, + 078E0241BEA879DD4A442CB8 /* util.h */, + ); + path = tests/cefclient; + sourceTree = ""; + }; + F57AA856D731EA23C7DF499C /* res */ = { + isa = PBXGroup; + children = ( + EDEA55B8511F9FE4330B965B /* binding.html */, + 4F9AF0F193868066137BA5A4 /* dialogs.html */, + 1B6C334E2897BBE91BCBAE0A /* domaccess.html */, + 72679F3643B0293CA4831BC5 /* localstorage.html */, + 071D58DD1C4352142B923874 /* logo.png */, + 36581E339B6C636EB3600773 /* xmlhttprequest.html */, + ); + path = res; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -1007,13 +993,8 @@ 0AB53E937FA08F668692794C /* Sources */, FE8FD131D637E2399A2C748C /* Frameworks */, B888ADFDA624AF2312CB8CE8 /* Postbuild "Fix Framework Link" */, - 0CD6EE443F9F1D92E04CE1E7 /* Postbuild "Create Resources Directory In Bundle" */, - 61B260848F264118E2824C1A /* Postbuild "Copy Pack File" */, - 841DE9C40027CDA59A8289E9 /* Postbuild "Copy WebCore Resources" */, - 7BE284A001BB8A27463E9F08 /* Postbuild "Tweak Info.plist" */, + 421D251E164779521AD533DB /* Postbuild "Copy Framework Resources Directory" */, F3B3262ADF34F171A6ABA502 /* Postbuild "Make More Helpers" */, - 9B3BDA26CD623B34622C3BC3 /* Postbuild "Change Mach-O Flags" */, - EB4F858D348472C4DE8EAE75 /* Postbuild "Strip If Needed" */, ); buildRules = ( ); @@ -1049,9 +1030,6 @@ F5AF0F1ABFFCD6D69D78650F /* Sources */, 9BF671516DA8A740B7BC6BC2 /* Frameworks */, 1E8F711365CFA88241E35625 /* Postbuild "Fix Framework Link" */, - D1BB7FBE6C9D9E837C64B48B /* Postbuild "Tweak Info.plist" */, - DF08B3FD33F7C23543C77933 /* Postbuild "Change Mach-O Flags" */, - AC29BFA4F2DEEAAFEC8E4E30 /* Postbuild "Strip If Needed" */, ); buildRules = ( ); @@ -1091,37 +1069,21 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3F141663B10B4FA301E02078 /* Atom.icns in Resources */, - 1EBCB6D242C49767F095AF4F /* InfoPlist.strings in Resources */, - 79886EEA116D709E65484076 /* MainMenu.xib in Resources */, - 2E62CE142B79EAF1AAC74978 /* binding.html in Resources */, - C25713D6504475F37B8701C6 /* dialogs.html in Resources */, - 2FC328FB9CC4E7B01E57F2C3 /* domaccess.html in Resources */, - C27355E012FD831EFAFD5B33 /* localstorage.html in Resources */, - F0E8A79713BED0E6BCAAD144 /* logo.png in Resources */, - 2B05EA77E07F07EE3DBE61D8 /* xmlhttprequest.html in Resources */, + 3C7D87D98572568463F6CDFB /* cefclient.icns in Resources */, + FFF8807FABAB64377B1C4380 /* InfoPlist.strings in Resources */, + B1BE84E8A1D1613D3C1FF3DF /* MainMenu.xib in Resources */, + 8B22E8FB63E4E1174612E47D /* binding.html in Resources */, + 04B4B922C86E80C151467BCE /* dialogs.html in Resources */, + FD73F3C2A4470A40936FAA18 /* domaccess.html in Resources */, + DAB6B37C9E7AE7688D92E9AA /* localstorage.html in Resources */, + 3EF9C3B6F0845D057490D5C2 /* logo.png in Resources */, + A7962BF4E29DEBA26E0815DB /* xmlhttprequest.html in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 0CD6EE443F9F1D92E04CE1E7 /* Postbuild "Create Resources Directory In Bundle" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Create Resources Directory In Bundle\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec mkdir -p \"${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; 1E8F711365CFA88241E35625 /* Postbuild "Fix Framework Link" */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -1138,7 +1100,7 @@ shellScript = "exec install_name_tool -change @executable_path/libcef.dylib \"@executable_path/../../../../Frameworks/Chromium Embedded Framework.framework/Libraries/libcef.dylib\" \"${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}\"\nexit 1\n"; showEnvVarsInLog = 0; }; - 61B260848F264118E2824C1A /* Postbuild "Copy Pack File" */ = { + 421D251E164779521AD533DB /* Postbuild "Copy Framework Resources Directory" */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -1146,76 +1108,12 @@ inputPaths = ( "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", ); - name = "Postbuild \"Copy Pack File\""; + name = "Postbuild \"Copy Framework Resources Directory\""; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "exec cp -f cef/cef.pak \"${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/cef.pak\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 7BE284A001BB8A27463E9F08 /* Postbuild "Tweak Info.plist" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Tweak Info.plist\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/tweak_info_plist.py \"--svn=1\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 841DE9C40027CDA59A8289E9 /* Postbuild "Copy WebCore Resources" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Copy WebCore Resources\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec cp -Rf \"${BUILT_PRODUCTS_DIR}/../../third_party/WebKit/Source/WebCore/Resources/\" \"${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 9B3BDA26CD623B34622C3BC3 /* Postbuild "Change Mach-O Flags" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Change Mach-O Flags\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec chromium/build/mac/change_mach_o_flags_from_xcode.sh\nexit 1\n"; - showEnvVarsInLog = 0; - }; - AC29BFA4F2DEEAAFEC8E4E30 /* Postbuild "Strip If Needed" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Strip If Needed\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec chromium/build/mac/strip_from_xcode\nexit 1\n"; + shellScript = "exec cp -r cef/Resources \"${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/\"\nexit 1\n"; showEnvVarsInLog = 0; }; B888ADFDA624AF2312CB8CE8 /* Postbuild "Fix Framework Link" */ = { @@ -1234,54 +1132,6 @@ shellScript = "exec install_name_tool -change @executable_path/libcef.dylib \"@executable_path/../Frameworks/Chromium Embedded Framework.framework/Libraries/libcef.dylib\" \"${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}\"\nexit 1\n"; showEnvVarsInLog = 0; }; - D1BB7FBE6C9D9E837C64B48B /* Postbuild "Tweak Info.plist" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Tweak Info.plist\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ./chromium/build/mac/tweak_info_plist.py \"--breakpad=0\" \"--keystone=0\" \"--svn=0\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - DF08B3FD33F7C23543C77933 /* Postbuild "Change Mach-O Flags" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Change Mach-O Flags\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec chromium/build/mac/change_mach_o_flags_from_xcode.sh\nexit 1\n"; - showEnvVarsInLog = 0; - }; - EB4F858D348472C4DE8EAE75 /* Postbuild "Strip If Needed" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Strip If Needed\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec chromium/build/mac/strip_from_xcode\nexit 1\n"; - showEnvVarsInLog = 0; - }; F3B3262ADF34F171A6ABA502 /* Postbuild "Make More Helpers" */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -1295,7 +1145,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "exec ../build/mac/make_more_helpers.sh Frameworks Atom\nexit 1\n"; + shellScript = "exec cef/mac/make_more_helpers.sh Frameworks Atom\nexit 1\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ @@ -1305,19 +1155,19 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0FA37E812C1B34F007E17193 /* cefclient.cpp in Sources */, - F32730ACB338E2925802F38A /* binding_test.cpp in Sources */, - 170B1FA5A1142DC30B53984E /* client_app.cpp in Sources */, - ED515C2B0AD945A8722A3E5D /* client_app_delegates.cpp in Sources */, - 4687097498D68F7CB4B0C7CE /* client_handler.cpp in Sources */, - 02A8A10DE7A3CDA0AC607E61 /* client_renderer.cpp in Sources */, - 18D042626F69B3FA86BD2DCB /* client_switches.cpp in Sources */, - 7B70944055CD6F3EA2F64445 /* dom_test.cpp in Sources */, - 3B101F19E46A070BC92A6A2C /* scheme_test.cpp in Sources */, - 28710911A945A80641BB1E89 /* string_util.cpp in Sources */, - 33F807F17A3BB533AA71FE3A /* cefclient_mac.mm in Sources */, - F5994138581214A3C847B2EE /* client_handler_mac.mm in Sources */, - 9FE8A3BB5F2A63163ED1124A /* resource_util_mac.mm in Sources */, + 77A64046292DE3D9AB61EFB7 /* cefclient.cpp in Sources */, + 9F18844F744511EF0BA32037 /* binding_test.cpp in Sources */, + 2F839D90B50FF5C1384E9CD4 /* client_app.cpp in Sources */, + 068819AA0F9AB2F0A6AA5B95 /* client_app_delegates.cpp in Sources */, + 7FD9F46994A223D211C5050E /* client_handler.cpp in Sources */, + 21331B511F1CC05284C17394 /* client_renderer.cpp in Sources */, + 9FB5D856BEBB0231DAA5487A /* client_switches.cpp in Sources */, + 897A2BA73FFE0FDAFECD7613 /* dom_test.cpp in Sources */, + E2C6F71D2604E2BA03E441C0 /* scheme_test.cpp in Sources */, + BDB627A7A24279E8576DC651 /* string_util.cpp in Sources */, + FB47A3BCC05FD2213BCA80EB /* cefclient_mac.mm in Sources */, + 87C2425DF288DC77AD2C1631 /* client_handler_mac.mm in Sources */, + 880DC991C1F650B09E535368 /* resource_util_mac.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1403,18 +1253,18 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4AD0A8D32E9E2CD7A0857CBA /* binding_test.cpp in Sources */, - 78E03FF294CB4ED999B2CDCB /* client_app.cpp in Sources */, - 1E4F3FE3D3277C8BB8170687 /* client_app_delegates.cpp in Sources */, - 6D73CFE9F308026324A40C06 /* client_handler.cpp in Sources */, - 5E6F00EDF431379070796D90 /* client_handler_mac.mm in Sources */, - 1AD956029A63FD7FBC5F5632 /* client_renderer.cpp in Sources */, - 9FC2F3DDA9E97E574DD03D8C /* client_switches.cpp in Sources */, - D7A75FBB2D0EA6CEC1E0C9F3 /* dom_test.cpp in Sources */, - 8ED45603734FF298D5A86CCB /* process_helper_mac.cpp in Sources */, - 3F6FFF06AD7FFF8429B3F86E /* resource_util_mac.mm in Sources */, - EE400221E261BAB5D6B01B49 /* scheme_test.cpp in Sources */, - 863A1083DB4E22AEBC66C97F /* string_util.cpp in Sources */, + 18BFE8E82F51C2D69A6AEDAA /* binding_test.cpp in Sources */, + B968FFD44801F3C49D36E0E1 /* client_app.cpp in Sources */, + 8456A8230A6DDF16C6A74FA8 /* client_app_delegates.cpp in Sources */, + B09CF7184750BF3A418485CA /* client_handler.cpp in Sources */, + 81A6FF34530CA7CFABB13BE6 /* client_handler_mac.mm in Sources */, + 8CAA9C6BA60145A4443776D8 /* client_renderer.cpp in Sources */, + 332DE229E5EE6E6FB18B9EA0 /* client_switches.cpp in Sources */, + 00E94D0D85EA6D610DFAD6ED /* dom_test.cpp in Sources */, + EECC55A379B6EC27F822A709 /* process_helper_mac.cpp in Sources */, + 99AA5F4D6CC7F5CFAF42AC3E /* resource_util_mac.mm in Sources */, + 99471A03CADC4484CD95BEA3 /* scheme_test.cpp in Sources */, + 307663044A4239E32EE5545E /* string_util.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1454,18 +1304,18 @@ /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ - 5E8EB8112AD7378AB11B0371 /* MainMenu.xib */ = { + 019626721924D58E07E6E406 /* MainMenu.xib */ = { isa = PBXVariantGroup; children = ( - 279820DCB537D61B9D0F587A /* English */, + F9565ED4708D694BE7E26B46 /* English */, ); name = MainMenu.xib; sourceTree = ""; }; - 709C7A8894CFC53DB4A6904A /* InfoPlist.strings */ = { + 6F25FBE2A3B999F7A5F766C6 /* InfoPlist.strings */ = { isa = PBXVariantGroup; children = ( - 98BD40AA2AFAC0DCEEDC51DE /* English */, + C2EA47656D9F94ABA0ECBDC3 /* English */, ); name = InfoPlist.strings; sourceTree = ""; @@ -1473,559 +1323,69 @@ /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ - 1ED884F4BDE643552E7077BA /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - atom, - ); - INFOPLIST_FILE = atom/cefclient/mac/Info.plist; - LDPLUSPLUS = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = ( - "$(SDKROOT)/System/Library/Frameworks", - cef, - ); - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = Atom; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - WRAPPER_PREFIX = ""; - }; - name = Release; - }; - 69099531298F379EC871E528 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - EXECUTABLE_PREFIX = lib; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = .; - LDPLUSPLUS = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - PRODUCT_NAME = cef_dll_wrapper; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Debug; - }; - 715F920175957697BA83F006 /* Debug */ = { + 0ECB26EF1DD0183DD22A64DA /* Default */ = { isa = XCBuildConfiguration; buildSettings = { PRODUCT_NAME = All; }; - name = Debug; + name = Default; }; - 7A0B07F5238E33ED30B328AC /* Release */ = { + 5C703152ACD2AF09527D9480 /* Default */ = { isa = XCBuildConfiguration; buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; EXECUTABLE_PREFIX = lib; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; + GCC_PREPROCESSOR_DEFINITIONS = "\"USING_CEF_SHARED\""; HEADER_SEARCH_PATHS = .; - LDPLUSPLUS = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; PRODUCT_NAME = cef_dll_wrapper; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); }; - name = Release; + name = Default; }; - 8CDA3F82DA1E45FDF9DEA8A5 /* Debug */ = { + 8DDFEB7FB2451421E250F85E /* Default */ = { isa = XCBuildConfiguration; buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; + INTERMEDIATE_DIR = "$(PROJECT_DERIVED_FILE_DIR)/$(CONFIGURATION)"; + SHARED_INTERMEDIATE_DIR = "$(SYMROOT)/DerivedSources/$(CONFIGURATION)"; + }; + name = Default; + }; + D36486C652686A581E5BC1F6 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "\"USING_CEF_SHARED\""; HEADER_SEARCH_PATHS = ( ., - atom, + tests, ); - INFOPLIST_FILE = atom/cefclient/mac/Info.plist; - LDPLUSPLUS = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang++"; + INFOPLIST_FILE = "tests/cefclient/mac/helper-Info.plist"; LIBRARY_SEARCH_PATHS = ( "$(SDKROOT)/System/Library/Frameworks", cef, ); - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", + OTHER_LDFLAGS = "-Wl,-headerpad_max_install_names"; + PRODUCT_NAME = "Atom Helper"; + WRAPPER_PREFIX = ""; + }; + name = Default; + }; + F29E5C6D80346F78DC9747DE /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "\"USING_CEF_SHARED\""; + HEADER_SEARCH_PATHS = ( + ., + tests, + atom, ); - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", + INFOPLIST_FILE = tests/cefclient/mac/Info.plist; + LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/System/Library/Frameworks", + cef, ); + OTHER_LDFLAGS = "-Wl,-headerpad_max_install_names"; PRODUCT_NAME = Atom; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); WRAPPER_PREFIX = ""; }; - name = Debug; - }; - 8F12A2CD0D83E7D7D57A56E2 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - atom, - ); - INFOPLIST_FILE = "atom/cefclient/mac/helper-Info.plist"; - LDPLUSPLUS = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = ( - "$(SDKROOT)/System/Library/Frameworks", - cef, - ); - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = "Atom Helper"; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - "-Wexit-time-destructors", - ); - WRAPPER_PREFIX = ""; - }; - name = Release; - }; - 9F1B8673912562A338D8A754 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = All; - }; - name = Release; - }; - AC8EA56E403A39FFC649C876 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - INTERMEDIATE_DIR = "$(PROJECT_DERIVED_FILE_DIR)/$(CONFIGURATION)"; - SDKROOT = macosx10.6; - SHARED_INTERMEDIATE_DIR = "$(SYMROOT)/DerivedSources/$(CONFIGURATION)"; - SYMROOT = chromium/xcodebuild; - }; - name = Release; - }; - AFF9027A491B0AD9A34D88BC /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - INTERMEDIATE_DIR = "$(PROJECT_DERIVED_FILE_DIR)/$(CONFIGURATION)"; - SDKROOT = macosx10.6; - SHARED_INTERMEDIATE_DIR = "$(SYMROOT)/DerivedSources/$(CONFIGURATION)"; - SYMROOT = chromium/xcodebuild; - }; - name = Debug; - }; - CC1498915314FE38FBBB995B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - atom, - ); - INFOPLIST_FILE = "atom/cefclient/mac/helper-Info.plist"; - LDPLUSPLUS = "$(SOURCE_ROOT)/chromium/third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = ( - "$(SDKROOT)/System/Library/Frameworks", - cef, - ); - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = "Atom Helper"; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - "-Wexit-time-destructors", - ); - WRAPPER_PREFIX = ""; - }; - name = Debug; + name = Default; }; /* End XCBuildConfiguration section */ @@ -2033,47 +1393,42 @@ 1E8344E18D52B70AB40388D9 /* Build configuration list for PBXProject "atom" */ = { isa = XCConfigurationList; buildConfigurations = ( - AFF9027A491B0AD9A34D88BC /* Debug */, - AC8EA56E403A39FFC649C876 /* Release */, + 8DDFEB7FB2451421E250F85E /* Default */, ); defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; + defaultConfigurationName = Default; }; 32D038632668003D3557078B /* Build configuration list for PBXNativeTarget "Atom" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8CDA3F82DA1E45FDF9DEA8A5 /* Debug */, - 1ED884F4BDE643552E7077BA /* Release */, + F29E5C6D80346F78DC9747DE /* Default */, ); defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; + defaultConfigurationName = Default; }; 491F6EF221487AA86AB00112 /* Build configuration list for PBXNativeTarget "AtomHelperApp" */ = { isa = XCConfigurationList; buildConfigurations = ( - CC1498915314FE38FBBB995B /* Debug */, - 8F12A2CD0D83E7D7D57A56E2 /* Release */, + D36486C652686A581E5BC1F6 /* Default */, ); defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; + defaultConfigurationName = Default; }; 72C03118553CDFF86825B100 /* Build configuration list for PBXAggregateTarget "All" */ = { isa = XCConfigurationList; buildConfigurations = ( - 715F920175957697BA83F006 /* Debug */, - 9F1B8673912562A338D8A754 /* Release */, + 0ECB26EF1DD0183DD22A64DA /* Default */, ); defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; + defaultConfigurationName = Default; }; 96B5FA75C2CA46F616A4D283 /* Build configuration list for PBXNativeTarget "libcef_dll_wrapper" */ = { isa = XCConfigurationList; buildConfigurations = ( - 69099531298F379EC871E528 /* Debug */, - 7A0B07F5238E33ED30B328AC /* Release */, + 5C703152ACD2AF09527D9480 /* Default */, ); defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; + defaultConfigurationName = Default; }; /* End XCConfigurationList section */ }; diff --git a/atom.xcodeproj/project.xcworkspace/xcuserdata/nathansobo.xcuserdatad/UserInterfaceState.xcuserstate b/atom.xcodeproj/project.xcworkspace/xcuserdata/nathansobo.xcuserdatad/UserInterfaceState.xcuserstate index 48c635da5..58a901d9d 100644 Binary files a/atom.xcodeproj/project.xcworkspace/xcuserdata/nathansobo.xcuserdatad/UserInterfaceState.xcuserstate and b/atom.xcodeproj/project.xcworkspace/xcuserdata/nathansobo.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/atom.xcodeproj/xcuserdata/nathansobo.xcuserdatad/xcschemes/xcschememanagement.plist b/atom.xcodeproj/xcuserdata/nathansobo.xcuserdatad/xcschemes/xcschememanagement.plist index 6d1708cf1..0a5ee14ff 100644 --- a/atom.xcodeproj/xcuserdata/nathansobo.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/atom.xcodeproj/xcuserdata/nathansobo.xcuserdatad/xcschemes/xcschememanagement.plist @@ -19,19 +19,64 @@ orderHint 1 + cef_locales.xcscheme + + orderHint + 69 + + cef_pak.xcscheme + + orderHint + 205 + + cef_resources.xcscheme + + orderHint + 169 + + cef_strings.xcscheme + + orderHint + 385 + + libcef.xcscheme + + orderHint + 315 + libcef_dll_wrapper.xcscheme orderHint 0 + libcef_static.xcscheme + + orderHint + 198 + SuppressBuildableAutocreation + 25F476607D9077B40DBE5F3E + + primary + + 3049F5DBF2E857E3D2CA729A primary + 3CC3640C42727188246F6C25 + + primary + + + 42BFDBA927D226AA7A34C15C + + primary + + 440934281E3BAF0A1212AEAE primary @@ -47,6 +92,21 @@ primary + 8FBD8DFB47D41B1B0E71281A + + primary + + + A671A7000975F90FDFE4BA1D + + primary + + + FD25F65598E25BB48DC2FA7F + + primary + + diff --git a/atom/cefclient/binding_test.cpp b/atom/cefclient/binding_test.cpp deleted file mode 100644 index e3efa23f2..000000000 --- a/atom/cefclient/binding_test.cpp +++ /dev/null @@ -1,104 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/binding_test.h" - -#include -#include - -#include "include/wrapper/cef_stream_resource_handler.h" -#include "cefclient/resource_util.h" - -namespace binding_test { - -namespace { - -const char* kTestUrl = "http://tests/binding"; -const char* kMessageName = "binding_test"; - -// Handle messages in the browser process. -class ProcessMessageDelegate : public ClientHandler::ProcessMessageDelegate { - public: - ProcessMessageDelegate() { - } - - // From ClientHandler::ProcessMessageDelegate. - virtual bool OnProcessMessageReceived( - CefRefPtr handler, - CefRefPtr browser, - CefProcessId source_process, - CefRefPtr message) OVERRIDE { - std::string message_name = message->GetName(); - if (message_name == kMessageName) { - // Handle the message. - std::string result; - - CefRefPtr args = message->GetArgumentList(); - if (args->GetSize() > 0 && args->GetType(0) == VTYPE_STRING) { - // Our result is a reverse of the original message. - result = args->GetString(0); - std::reverse(result.begin(), result.end()); - } else { - result = "Invalid request"; - } - - // Send the result back to the render process. - CefRefPtr response = - CefProcessMessage::Create(kMessageName); - response->GetArgumentList()->SetString(0, result); - browser->SendProcessMessage(PID_RENDERER, response); - - return true; - } - - return false; - } - - IMPLEMENT_REFCOUNTING(ProcessMessageDelegate); -}; - -// Handle resource loading in the browser process. -class RequestDelegate: public ClientHandler::RequestDelegate { - public: - RequestDelegate() { - } - - // From ClientHandler::RequestDelegate. - virtual CefRefPtr GetResourceHandler( - CefRefPtr handler, - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr request) OVERRIDE { - std::string url = request->GetURL(); - if (url == kTestUrl) { - // Show the binding contents - CefRefPtr stream = - GetBinaryResourceReader("binding.html"); - ASSERT(stream.get()); - return new CefStreamResourceHandler("text/html", stream); - } - - return NULL; - } - - IMPLEMENT_REFCOUNTING(RequestDelegate); -}; - -} // namespace - -void CreateProcessMessageDelegates( - ClientHandler::ProcessMessageDelegateSet& delegates) { - delegates.insert(new ProcessMessageDelegate); -} - -void CreateRequestDelegates(ClientHandler::RequestDelegateSet& delegates) { - delegates.insert(new RequestDelegate); -} - -void RunTest(CefRefPtr browser) { - // Load the test URL. - browser->GetMainFrame()->LoadURL(kTestUrl); -} - -} // namespace binding_test diff --git a/atom/cefclient/binding_test.h b/atom/cefclient/binding_test.h deleted file mode 100644 index 3412fa2a1..000000000 --- a/atom/cefclient/binding_test.h +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_BINDING_TEST_H_ -#define CEF_TESTS_CEFCLIENT_BINDING_TEST_H_ -#pragma once - -#include "cefclient/client_app.h" -#include "cefclient/client_handler.h" - -namespace binding_test { - -// Delegate creation. Called from ClientApp and ClientHandler. -void CreateProcessMessageDelegates( - ClientHandler::ProcessMessageDelegateSet& delegates); -void CreateRequestDelegates(ClientHandler::RequestDelegateSet& delegates); - -// Run the test. -void RunTest(CefRefPtr browser); - -} // namespace binding_test - -#endif // CEF_TESTS_CEFCLIENT_BINDING_TEST_H_ diff --git a/atom/cefclient/cefclient.cpp b/atom/cefclient/cefclient.cpp deleted file mode 100644 index caa0683f5..000000000 --- a/atom/cefclient/cefclient.cpp +++ /dev/null @@ -1,336 +0,0 @@ -// Copyright (c) 2010 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/cefclient.h" -#include -#include -#include -#include -#include "include/cef_app.h" -#include "include/cef_browser.h" -#include "include/cef_command_line.h" -#include "include/cef_frame.h" -#include "include/cef_runnable.h" -#include "include/cef_web_plugin.h" -#include "cefclient/client_handler.h" -#include "cefclient/client_switches.h" -#include "cefclient/string_util.h" -#include "cefclient/util.h" - -namespace { - -// Return the int representation of the specified string. -int GetIntValue(const CefString& str) { - if (str.empty()) - return 0; - - std::string stdStr = str; - return atoi(stdStr.c_str()); -} - -} // namespace - -CefRefPtr g_handler; -CefRefPtr g_command_line; - -CefRefPtr AppGetBrowser() { - if (!g_handler.get()) - return NULL; - return g_handler->GetBrowser(); -} - -CefWindowHandle AppGetMainHwnd() { - if (!g_handler.get()) - return NULL; - return g_handler->GetMainHwnd(); -} - -void AppInitCommandLine(int argc, const char* const* argv) { - g_command_line = CefCommandLine::CreateCommandLine(); -#if defined(OS_WIN) - g_command_line->InitFromString(::GetCommandLineW()); -#else - g_command_line->InitFromArgv(argc, argv); -#endif -} - -// Returns the application command line object. -CefRefPtr AppGetCommandLine() { - return g_command_line; -} - -// Returns the application settings based on command line arguments. -void AppGetSettings(CefSettings& settings, CefRefPtr app) { - ASSERT(app.get()); - ASSERT(g_command_line.get()); - if (!g_command_line.get()) - return; - - CefString str; - -#if defined(OS_WIN) - settings.multi_threaded_message_loop = - g_command_line->HasSwitch(cefclient::kMultiThreadedMessageLoop); -#endif - - CefString(&settings.cache_path) = - g_command_line->GetSwitchValue(cefclient::kCachePath); - - // Retrieve command-line proxy configuration, if any. - bool has_proxy = false; - cef_proxy_type_t proxy_type = PROXY_TYPE_DIRECT; - CefString proxy_config; - - if (g_command_line->HasSwitch(cefclient::kProxyType)) { - std::string str = g_command_line->GetSwitchValue(cefclient::kProxyType); - if (str == cefclient::kProxyType_Direct) { - has_proxy = true; - proxy_type = PROXY_TYPE_DIRECT; - } else if (str == cefclient::kProxyType_Named || - str == cefclient::kProxyType_Pac) { - proxy_config = g_command_line->GetSwitchValue(cefclient::kProxyConfig); - if (!proxy_config.empty()) { - has_proxy = true; - proxy_type = (str == cefclient::kProxyType_Named? - PROXY_TYPE_NAMED:PROXY_TYPE_PAC_STRING); - } - } - } - - if (has_proxy) { - // Provide a ClientApp instance to handle proxy resolution. - app->SetProxyConfig(proxy_type, proxy_config); - } -} - -// Returns the application browser settings based on command line arguments. -void AppGetBrowserSettings(CefBrowserSettings& settings) { - ASSERT(g_command_line.get()); - if (!g_command_line.get()) - return; - - settings.remote_fonts_disabled = - g_command_line->HasSwitch(cefclient::kRemoteFontsDisabled); - - CefString(&settings.default_encoding) = - g_command_line->GetSwitchValue(cefclient::kDefaultEncoding); - - settings.encoding_detector_enabled = - g_command_line->HasSwitch(cefclient::kEncodingDetectorEnabled); - settings.javascript_disabled = - g_command_line->HasSwitch(cefclient::kJavascriptDisabled); - settings.javascript_open_windows_disallowed = - g_command_line->HasSwitch(cefclient::kJavascriptOpenWindowsDisallowed); - settings.javascript_close_windows_disallowed = - g_command_line->HasSwitch(cefclient::kJavascriptCloseWindowsDisallowed); - settings.javascript_access_clipboard_disallowed = - g_command_line->HasSwitch( - cefclient::kJavascriptAccessClipboardDisallowed); - settings.dom_paste_disabled = - g_command_line->HasSwitch(cefclient::kDomPasteDisabled); - settings.caret_browsing_enabled = - g_command_line->HasSwitch(cefclient::kCaretBrowsingDisabled); - settings.java_disabled = - g_command_line->HasSwitch(cefclient::kJavaDisabled); - settings.plugins_disabled = - g_command_line->HasSwitch(cefclient::kPluginsDisabled); - settings.universal_access_from_file_urls_allowed = - g_command_line->HasSwitch(cefclient::kUniversalAccessFromFileUrlsAllowed); - settings.file_access_from_file_urls_allowed = - g_command_line->HasSwitch(cefclient::kFileAccessFromFileUrlsAllowed); - settings.web_security_disabled = - g_command_line->HasSwitch(cefclient::kWebSecurityDisabled); - settings.xss_auditor_enabled = - g_command_line->HasSwitch(cefclient::kXssAuditorEnabled); - settings.image_load_disabled = - g_command_line->HasSwitch(cefclient::kImageLoadingDisabled); - settings.shrink_standalone_images_to_fit = - g_command_line->HasSwitch(cefclient::kShrinkStandaloneImagesToFit); - settings.site_specific_quirks_disabled = - g_command_line->HasSwitch(cefclient::kSiteSpecificQuirksDisabled); - settings.text_area_resize_disabled = - g_command_line->HasSwitch(cefclient::kTextAreaResizeDisabled); - settings.page_cache_disabled = - g_command_line->HasSwitch(cefclient::kPageCacheDisabled); - settings.tab_to_links_disabled = - g_command_line->HasSwitch(cefclient::kTabToLinksDisabled); - settings.hyperlink_auditing_disabled = - g_command_line->HasSwitch(cefclient::kHyperlinkAuditingDisabled); - settings.user_style_sheet_enabled = - g_command_line->HasSwitch(cefclient::kUserStyleSheetEnabled); - - CefString(&settings.user_style_sheet_location) = - g_command_line->GetSwitchValue(cefclient::kUserStyleSheetLocation); - - settings.author_and_user_styles_disabled = - g_command_line->HasSwitch(cefclient::kAuthorAndUserStylesDisabled); - settings.local_storage_disabled = - g_command_line->HasSwitch(cefclient::kLocalStorageDisabled); - settings.databases_disabled = - g_command_line->HasSwitch(cefclient::kDatabasesDisabled); - settings.application_cache_disabled = - g_command_line->HasSwitch(cefclient::kApplicationCacheDisabled); - settings.webgl_disabled = - g_command_line->HasSwitch(cefclient::kWebglDisabled); - settings.accelerated_compositing_disabled = - g_command_line->HasSwitch(cefclient::kAcceleratedCompositingDisabled); - settings.accelerated_layers_disabled = - g_command_line->HasSwitch(cefclient::kAcceleratedLayersDisabled); - settings.accelerated_video_disabled = - g_command_line->HasSwitch(cefclient::kAcceleratedVideoDisabled); - settings.accelerated_2d_canvas_disabled = - g_command_line->HasSwitch(cefclient::kAcceledated2dCanvasDisabled); - settings.accelerated_painting_enabled = - g_command_line->HasSwitch(cefclient::kAcceleratedPaintingEnabled); - settings.accelerated_filters_enabled = - g_command_line->HasSwitch(cefclient::kAcceleratedFiltersEnabled); - settings.accelerated_plugins_disabled = - g_command_line->HasSwitch(cefclient::kAcceleratedPluginsDisabled); - settings.developer_tools_disabled = - g_command_line->HasSwitch(cefclient::kDeveloperToolsDisabled); - settings.fullscreen_enabled = - g_command_line->HasSwitch(cefclient::kFullscreenEnabled); -} - -void RunGetSourceTest(CefRefPtr browser) { - class Visitor : public CefStringVisitor { - public: - explicit Visitor(CefRefPtr browser) : browser_(browser) {} - virtual void Visit(const CefString& string) OVERRIDE { - std::string source = StringReplace(string, "<", "<"); - source = StringReplace(source, ">", ">"); - std::stringstream ss; - ss << "Source:
" << source << "
"; - browser_->GetMainFrame()->LoadString(ss.str(), "http://tests/getsource"); - } - private: - CefRefPtr browser_; - IMPLEMENT_REFCOUNTING(Visitor); - }; - - browser->GetMainFrame()->GetSource(new Visitor(browser)); -} - -void RunGetTextTest(CefRefPtr browser) { - class Visitor : public CefStringVisitor { - public: - explicit Visitor(CefRefPtr browser) : browser_(browser) {} - virtual void Visit(const CefString& string) OVERRIDE { - std::string text = StringReplace(string, "<", "<"); - text = StringReplace(text, ">", ">"); - std::stringstream ss; - ss << "Text:
" << text << "
"; - browser_->GetMainFrame()->LoadString(ss.str(), "http://tests/gettext"); - } - private: - CefRefPtr browser_; - IMPLEMENT_REFCOUNTING(Visitor); - }; - - browser->GetMainFrame()->GetText(new Visitor(browser)); -} - -void RunRequestTest(CefRefPtr browser) { - // Create a new request - CefRefPtr request(CefRequest::Create()); - - // Set the request URL - request->SetURL("http://tests/request"); - - // Add post data to the request. The correct method and content- - // type headers will be set by CEF. - CefRefPtr postDataElement(CefPostDataElement::Create()); - std::string data = "arg1=val1&arg2=val2"; - postDataElement->SetToBytes(data.length(), data.c_str()); - CefRefPtr postData(CefPostData::Create()); - postData->AddElement(postDataElement); - request->SetPostData(postData); - - // Add a custom header - CefRequest::HeaderMap headerMap; - headerMap.insert( - std::make_pair("X-My-Header", "My Header Value")); - request->SetHeaderMap(headerMap); - - // Load the request - browser->GetMainFrame()->LoadRequest(request); -} - -void RunPopupTest(CefRefPtr browser) { - browser->GetMainFrame()->ExecuteJavaScript( - "window.open('http://www.google.com');", "about:blank", 0); -} - -void RunDialogTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL("http://tests/dialogs"); -} - -void RunPluginInfoTest(CefRefPtr browser) { - class Visitor : public CefWebPluginInfoVisitor { - public: - explicit Visitor(CefRefPtr browser) - : browser_(browser) { - html_ = "Plugin Info Test" - "\nInstalled plugins:"; - } - ~Visitor() { - html_ += "\n"; - - // Load the html in the browser. - browser_->GetMainFrame()->LoadString(html_, "http://tests/plugin_info"); - } - - virtual bool Visit(CefRefPtr info, int count, int total) - OVERRIDE { - html_ += "\n

Name: " + info->GetName().ToString() + - "\n
Description: " + info->GetDescription().ToString() + - "\n
Version: " + info->GetVersion().ToString() + - "\n
Path: " + info->GetPath().ToString(); - return true; - } - - private: - std::string html_; - CefRefPtr browser_; - IMPLEMENT_REFCOUNTING(Visitor); - }; - - CefVisitWebPluginInfo(new Visitor(browser)); -} - -void RunLocalStorageTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL("http://tests/localstorage"); -} - -void RunAccelerated2DCanvasTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL( - "http://mudcu.be/labs/JS1k/BreathingGalaxies.html"); -} - -void RunAcceleratedLayersTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL( - "http://webkit.org/blog-files/3d-transforms/poster-circle.html"); -} - -void RunWebGLTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL( - "http://webglsamples.googlecode.com/hg/field/field.html"); -} - -void RunHTML5VideoTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL( - "http://www.youtube.com/watch?v=siOHh0uzcuY&html5=True"); -} - -void RunXMLHTTPRequestTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL("http://tests/xmlhttprequest"); -} - -void RunDragDropTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL("http://html5demos.com/drag"); -} - -void RunGeolocationTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL("http://html5demos.com/geo"); -} diff --git a/atom/cefclient/cefclient.h b/atom/cefclient/cefclient.h deleted file mode 100644 index cd01401f2..000000000 --- a/atom/cefclient/cefclient.h +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_CEFCLIENT_H_ -#define CEF_TESTS_CEFCLIENT_CEFCLIENT_H_ -#pragma once - -#include -#include "include/cef_base.h" -#include "cefclient/client_app.h" - -class CefApp; -class CefBrowser; -class CefCommandLine; - -// Returns the main browser window instance. -CefRefPtr AppGetBrowser(); - -// Returns the main application window handle. -CefWindowHandle AppGetMainHwnd(); - -// Returns the application working directory. -std::string AppGetWorkingDirectory(); - -// Initialize the application command line. -void AppInitCommandLine(int argc, const char* const* argv); - -// Returns the application command line object. -CefRefPtr AppGetCommandLine(); - -// Returns the application settings based on command line arguments. -void AppGetSettings(CefSettings& settings, CefRefPtr app); - -// Returns the application browser settings based on command line arguments. -void AppGetBrowserSettings(CefBrowserSettings& settings); - -// Implementations for various tests. -void RunGetSourceTest(CefRefPtr browser); -void RunGetTextTest(CefRefPtr browser); -void RunRequestTest(CefRefPtr browser); -void RunPopupTest(CefRefPtr browser); -void RunDialogTest(CefRefPtr browser); -void RunPluginInfoTest(CefRefPtr browser); -void RunLocalStorageTest(CefRefPtr browser); -void RunAccelerated2DCanvasTest(CefRefPtr browser); -void RunAcceleratedLayersTest(CefRefPtr browser); -void RunWebGLTest(CefRefPtr browser); -void RunHTML5VideoTest(CefRefPtr browser); -void RunXMLHTTPRequestTest(CefRefPtr browser); -void RunDragDropTest(CefRefPtr browser); -void RunGeolocationTest(CefRefPtr browser); - -#if defined(OS_WIN) -void RunTransparentPopupTest(CefRefPtr browser); -#endif - -#endif // CEF_TESTS_CEFCLIENT_CEFCLIENT_H_ diff --git a/atom/cefclient/cefclient.rc b/atom/cefclient/cefclient.rc deleted file mode 100644 index c56c72659..000000000 --- a/atom/cefclient/cefclient.rc +++ /dev/null @@ -1,172 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#define APSTUDIO_HIDDEN_SYMBOLS -#include "windows.h" -#undef APSTUDIO_HIDDEN_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (U.S.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) -#endif //_WIN32 - -///////////////////////////////////////////////////////////////////////////// -// -// Binary -// - -IDS_BINDING BINARY "res\\binding.html" -IDS_DIALOGS BINARY "res\\dialogs.html" -IDS_LOGO BINARY "res\\logo.png" -IDS_LOGOBALL BINARY "res\\logoball.png" -IDS_LOCALSTORAGE BINARY "res\\localstorage.html" -IDS_XMLHTTPREQUEST BINARY "res\\xmlhttprequest.html" -IDS_DOMACCESS BINARY "res\\domaccess.html" - -///////////////////////////////////////////////////////////////////////////// -// -// Icon -// - -// Icon with lowest ID value placed first to ensure application icon -// remains consistent on all systems. -IDI_CEFCLIENT ICON "res\cefclient.ico" -IDI_SMALL ICON "res\small.ico" - -///////////////////////////////////////////////////////////////////////////// -// -// Menu -// - -IDC_CEFCLIENT MENU -BEGIN - POPUP "&File" - BEGIN - MENUITEM "E&xit", IDM_EXIT - END - POPUP "&Help" - BEGIN - MENUITEM "&About ...", IDM_ABOUT - END - POPUP "Tests" - BEGIN - MENUITEM "Get Source", ID_TESTS_GETSOURCE - MENUITEM "Get Text", ID_TESTS_GETTEXT - MENUITEM "Popup Window", ID_TESTS_POPUP - MENUITEM "Request", ID_TESTS_REQUEST - MENUITEM "Scheme Handler", ID_TESTS_SCHEME_HANDLER - MENUITEM "JavaScript Binding", ID_TESTS_BINDING - MENUITEM "JavaScript Dialogs", ID_TESTS_DIALOGS - MENUITEM "Plugin Info", ID_TESTS_PLUGIN_INFO - MENUITEM "DOM Access", ID_TESTS_DOM_ACCESS - MENUITEM "Local Storage", ID_TESTS_LOCALSTORAGE - MENUITEM "XMLHttpRequest", ID_TESTS_XMLHTTPREQUEST - MENUITEM "Accelerated 2D Canvas", ID_TESTS_ACCELERATED2DCANVAS - MENUITEM "Accelerated Layers", ID_TESTS_ACCELERATEDLAYERS - MENUITEM "WebGL", ID_TESTS_WEBGL - MENUITEM "HTML5 Video", ID_TESTS_HTML5VIDEO - MENUITEM "Drag && Drop", ID_TESTS_DRAGDROP - MENUITEM "Geolocation", ID_TESTS_GEOLOCATION - MENUITEM "Zoom In", ID_TESTS_ZOOM_IN - MENUITEM "Zoom Out", ID_TESTS_ZOOM_OUT - MENUITEM "Zoom Reset", ID_TESTS_ZOOM_RESET - END -END - - -///////////////////////////////////////////////////////////////////////////// -// -// Accelerator -// - -IDC_CEFCLIENT ACCELERATORS -BEGIN - "?", IDM_ABOUT, ASCII, ALT - "/", IDM_ABOUT, ASCII, ALT -END - - -///////////////////////////////////////////////////////////////////////////// -// -// Dialog -// - -IDD_ABOUTBOX DIALOG 22, 17, 230, 75 -STYLE DS_SETFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU -CAPTION "About" -FONT 8, "System" -BEGIN - ICON IDI_CEFCLIENT,IDC_MYICON,14,9,16,16 - LTEXT "cefclient Version 1.0",IDC_STATIC,49,10,119,8,SS_NOPREFIX - LTEXT "Copyright (C) 2008",IDC_STATIC,49,20,119,8 - DEFPUSHBUTTON "OK",IDOK,195,6,30,11,WS_GROUP -END - - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#define APSTUDIO_HIDDEN_SYMBOLS\r\n" - "#include ""windows.h""\r\n" - "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// String Table -// - -STRINGTABLE -BEGIN - IDS_APP_TITLE "cefclient" - IDC_CEFCLIENT "CEFCLIENT" -END - -#endif // English (U.S.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - diff --git a/atom/cefclient/cefclient_gtk.cpp b/atom/cefclient/cefclient_gtk.cpp deleted file mode 100644 index 118862711..000000000 --- a/atom/cefclient/cefclient_gtk.cpp +++ /dev/null @@ -1,408 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include -#include -#include -#include -#include "cefclient/cefclient.h" -#include "include/cef_app.h" -#include "include/cef_browser.h" -#include "include/cef_frame.h" -#include "include/cef_runnable.h" -#include "cefclient/binding_test.h" -#include "cefclient/client_handler.h" -#include "cefclient/dom_test.h" -#include "cefclient/scheme_test.h" -#include "cefclient/string_util.h" - -char szWorkingDir[512]; // The current working directory - -// The global ClientHandler reference. -extern CefRefPtr g_handler; - -void destroy(void) { - CefQuitMessageLoop(); -} - -void TerminationSignalHandler(int signatl) { - destroy(); -} - -// Callback for Debug > Get Source... menu item. -gboolean GetSourceActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunGetSourceTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Get Source... menu item. -gboolean GetTextActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunGetTextTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Request... menu item. -gboolean RequestActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunRequestTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Local Storage... menu item. -gboolean LocalStorageActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunLocalStorageTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > XMLHttpRequest... menu item. -gboolean XMLHttpRequestActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunXMLHTTPRequestTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Scheme Handler... menu item. -gboolean SchemeHandlerActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - scheme_test::RunTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > JavaScript Binding... menu item. -gboolean BindingActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - binding_test::RunTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Plugin Info... menu item. -gboolean PluginInfoActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunPluginInfoTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > DOM Access... menu item. -gboolean DOMAccessActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - dom_test::RunTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Popup Window... menu item. -gboolean PopupWindowActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunPopupTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Accelerated 2D Canvas... menu item. -gboolean Accelerated2DCanvasActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunAccelerated2DCanvasTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Accelerated Layers... menu item. -gboolean AcceleratedLayersActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunAcceleratedLayersTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > WebGL... menu item. -gboolean WebGLActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunWebGLTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > HTML5 Video... menu item. -gboolean HTML5VideoActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunHTML5VideoTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > HTML5 Drag & Drop... menu item. -gboolean HTML5DragDropActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) - RunDragDropTest(g_handler->GetBrowser()); - - return FALSE; // Don't stop this message. -} - - -// Callback for Debug > Zoom In... menu item. -gboolean ZoomInActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) { - CefRefPtr browser = g_handler->GetBrowser(); - browser->GetHost()->SetZoomLevel(browser->GetHost()->GetZoomLevel() + 0.5); - } - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Zoom Out... menu item. -gboolean ZoomOutActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) { - CefRefPtr browser = g_handler->GetBrowser(); - browser->GetHost()->SetZoomLevel(browser->GetHost()->GetZoomLevel() - 0.5); - } - - return FALSE; // Don't stop this message. -} - -// Callback for Debug > Zoom Reset... menu item. -gboolean ZoomResetActivated(GtkWidget* widget) { - if (g_handler.get() && g_handler->GetBrowserId()) { - CefRefPtr browser = g_handler->GetBrowser(); - browser->GetHost()->SetZoomLevel(0.0); - } - - return FALSE; // Don't stop this message. -} - -// Callback for when you click the back button. -void BackButtonClicked(GtkButton* button) { - if (g_handler.get() && g_handler->GetBrowserId()) - g_handler->GetBrowser()->GoBack(); -} - -// Callback for when you click the forward button. -void ForwardButtonClicked(GtkButton* button) { - if (g_handler.get() && g_handler->GetBrowserId()) - g_handler->GetBrowser()->GoForward(); -} - -// Callback for when you click the stop button. -void StopButtonClicked(GtkButton* button) { - if (g_handler.get() && g_handler->GetBrowserId()) - g_handler->GetBrowser()->StopLoad(); -} - -// Callback for when you click the reload button. -void ReloadButtonClicked(GtkButton* button) { - if (g_handler.get() && g_handler->GetBrowserId()) - g_handler->GetBrowser()->Reload(); -} - -// Callback for when you press enter in the URL box. -void URLEntryActivate(GtkEntry* entry) { - if (!g_handler.get() || !g_handler->GetBrowserId()) - return; - - const gchar* url = gtk_entry_get_text(entry); - g_handler->GetBrowser()->GetMainFrame()->LoadURL(std::string(url).c_str()); -} - -// GTK utility functions ---------------------------------------------- - -GtkWidget* AddMenuEntry(GtkWidget* menu_widget, const char* text, - GCallback callback) { - GtkWidget* entry = gtk_menu_item_new_with_label(text); - g_signal_connect(entry, "activate", callback, NULL); - gtk_menu_shell_append(GTK_MENU_SHELL(menu_widget), entry); - return entry; -} - -GtkWidget* CreateMenu(GtkWidget* menu_bar, const char* text) { - GtkWidget* menu_widget = gtk_menu_new(); - GtkWidget* menu_header = gtk_menu_item_new_with_label(text); - gtk_menu_item_set_submenu(GTK_MENU_ITEM(menu_header), menu_widget); - gtk_menu_shell_append(GTK_MENU_SHELL(menu_bar), menu_header); - return menu_widget; -} - -GtkWidget* CreateMenuBar() { - GtkWidget* menu_bar = gtk_menu_bar_new(); - GtkWidget* debug_menu = CreateMenu(menu_bar, "Tests"); - - AddMenuEntry(debug_menu, "Get Source", - G_CALLBACK(GetSourceActivated)); - AddMenuEntry(debug_menu, "Get Text", - G_CALLBACK(GetTextActivated)); - AddMenuEntry(debug_menu, "Request", - G_CALLBACK(RequestActivated)); - AddMenuEntry(debug_menu, "Local Storage", - G_CALLBACK(LocalStorageActivated)); - AddMenuEntry(debug_menu, "XMLHttpRequest", - G_CALLBACK(XMLHttpRequestActivated)); - AddMenuEntry(debug_menu, "Scheme Handler", - G_CALLBACK(SchemeHandlerActivated)); - AddMenuEntry(debug_menu, "JavaScript Binding", - G_CALLBACK(BindingActivated)); - AddMenuEntry(debug_menu, "Plugin Info", - G_CALLBACK(PluginInfoActivated)); - AddMenuEntry(debug_menu, "DOM Access", - G_CALLBACK(DOMAccessActivated)); - AddMenuEntry(debug_menu, "Popup Window", - G_CALLBACK(PopupWindowActivated)); - AddMenuEntry(debug_menu, "Accelerated 2D Canvas", - G_CALLBACK(Accelerated2DCanvasActivated)); - AddMenuEntry(debug_menu, "Accelerated Layers", - G_CALLBACK(AcceleratedLayersActivated)); - AddMenuEntry(debug_menu, "WebGL", - G_CALLBACK(WebGLActivated)); - AddMenuEntry(debug_menu, "HTML5 Video", - G_CALLBACK(HTML5VideoActivated)); - AddMenuEntry(debug_menu, "HTML5 Drag & Drop", - G_CALLBACK(HTML5DragDropActivated)); - AddMenuEntry(debug_menu, "Zoom In", - G_CALLBACK(ZoomInActivated)); - AddMenuEntry(debug_menu, "Zoom Out", - G_CALLBACK(ZoomOutActivated)); - AddMenuEntry(debug_menu, "Zoom Reset", - G_CALLBACK(ZoomResetActivated)); - return menu_bar; -} - -// WebViewDelegate::TakeFocus in the test webview delegate. -static gboolean HandleFocus(GtkWidget* widget, - GdkEventFocus* focus) { - if (g_handler.get() && g_handler->GetBrowserId()) { - // Give focus to the browser window. - g_handler->GetBrowser()->GetHost()->SetFocus(true); - } - - return TRUE; -} - -int main(int argc, char* argv[]) { - CefMainArgs main_args(argc, argv); - CefRefPtr app(new ClientApp); - - // Execute the secondary process, if any. - int exit_code = CefExecuteProcess(main_args, app.get()); - if (exit_code >= 0) - return exit_code; - - if (!getcwd(szWorkingDir, sizeof (szWorkingDir))) - return -1; - - GtkWidget* window; - - gtk_init(&argc, &argv); - - // Parse command line arguments. - AppInitCommandLine(argc, argv); - - CefSettings settings; - - // Populate the settings based on command line arguments. - AppGetSettings(settings, app); - - // Initialize CEF. - CefInitialize(main_args, settings, app.get()); - - // Register the scheme handler. - scheme_test::InitTest(); - - window = gtk_window_new(GTK_WINDOW_TOPLEVEL); - gtk_window_set_default_size(GTK_WINDOW(window), 800, 600); - - g_signal_connect(window, "focus", G_CALLBACK(&HandleFocus), NULL); - - GtkWidget* vbox = gtk_vbox_new(FALSE, 0); - - GtkWidget* menu_bar = CreateMenuBar(); - - gtk_box_pack_start(GTK_BOX(vbox), menu_bar, FALSE, FALSE, 0); - - GtkWidget* toolbar = gtk_toolbar_new(); - // Turn off the labels on the toolbar buttons. - gtk_toolbar_set_style(GTK_TOOLBAR(toolbar), GTK_TOOLBAR_ICONS); - - GtkToolItem* back = gtk_tool_button_new_from_stock(GTK_STOCK_GO_BACK); - g_signal_connect(back, "clicked", - G_CALLBACK(BackButtonClicked), NULL); - gtk_toolbar_insert(GTK_TOOLBAR(toolbar), back, -1 /* append */); - - GtkToolItem* forward = gtk_tool_button_new_from_stock(GTK_STOCK_GO_FORWARD); - g_signal_connect(forward, "clicked", - G_CALLBACK(ForwardButtonClicked), NULL); - gtk_toolbar_insert(GTK_TOOLBAR(toolbar), forward, -1 /* append */); - - GtkToolItem* reload = gtk_tool_button_new_from_stock(GTK_STOCK_REFRESH); - g_signal_connect(reload, "clicked", - G_CALLBACK(ReloadButtonClicked), NULL); - gtk_toolbar_insert(GTK_TOOLBAR(toolbar), reload, -1 /* append */); - - GtkToolItem* stop = gtk_tool_button_new_from_stock(GTK_STOCK_STOP); - g_signal_connect(stop, "clicked", - G_CALLBACK(StopButtonClicked), NULL); - gtk_toolbar_insert(GTK_TOOLBAR(toolbar), stop, -1 /* append */); - - GtkWidget* m_editWnd = gtk_entry_new(); - g_signal_connect(G_OBJECT(m_editWnd), "activate", - G_CALLBACK(URLEntryActivate), NULL); - - GtkToolItem* tool_item = gtk_tool_item_new(); - gtk_container_add(GTK_CONTAINER(tool_item), m_editWnd); - gtk_tool_item_set_expand(tool_item, TRUE); - gtk_toolbar_insert(GTK_TOOLBAR(toolbar), tool_item, -1); // append - - gtk_box_pack_start(GTK_BOX(vbox), toolbar, FALSE, FALSE, 0); - - g_signal_connect(G_OBJECT(window), "destroy", - G_CALLBACK(gtk_widget_destroyed), &window); - g_signal_connect(G_OBJECT(window), "destroy", - G_CALLBACK(destroy), NULL); - - // Create the handler. - g_handler = new ClientHandler(); - g_handler->SetMainHwnd(vbox); - g_handler->SetEditHwnd(m_editWnd); - g_handler->SetButtonHwnds(GTK_WIDGET(back), GTK_WIDGET(forward), - GTK_WIDGET(reload), GTK_WIDGET(stop)); - - // Create the browser view. - CefWindowInfo window_info; - CefBrowserSettings browserSettings; - - // Populate the settings based on command line arguments. - AppGetBrowserSettings(browserSettings); - - window_info.SetAsChild(vbox); - - CefBrowserHost::CreateBrowserSync( - window_info, g_handler.get(), - g_handler->GetStartupURL(), browserSettings); - - gtk_container_add(GTK_CONTAINER(window), vbox); - gtk_widget_show_all(GTK_WIDGET(window)); - - // Install an signal handler so we clean up after ourselves. - signal(SIGINT, TerminationSignalHandler); - signal(SIGTERM, TerminationSignalHandler); - - CefRunMessageLoop(); - - CefShutdown(); - - return 0; -} - -// Global functions - -std::string AppGetWorkingDirectory() { - return szWorkingDir; -} diff --git a/atom/cefclient/cefclient_mac.mm b/atom/cefclient/cefclient_mac.mm deleted file mode 100644 index b4c17da3d..000000000 --- a/atom/cefclient/cefclient_mac.mm +++ /dev/null @@ -1,542 +0,0 @@ -// Copyright (c) 2010 The Chromium Embedded Framework Authors. -// Portions copyright (c) 2010 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#import -#include -#include "cefclient/cefclient.h" -#include "include/cef_app.h" -#import "include/cef_application_mac.h" -#include "include/cef_browser.h" -#include "include/cef_frame.h" -#include "include/cef_runnable.h" -#include "cefclient/binding_test.h" -#include "cefclient/client_handler.h" -#include "cefclient/dom_test.h" -#include "cefclient/resource_util.h" -#include "cefclient/scheme_test.h" -#include "cefclient/string_util.h" - -// The global ClientHandler reference. -extern CefRefPtr g_handler; - -char szWorkingDir[512]; // The current working directory - -// Sizes for URL bar layout -#define BUTTON_HEIGHT 22 -#define BUTTON_WIDTH 72 -#define BUTTON_MARGIN 8 -#define URLBAR_HEIGHT 32 - -// Content area size for newly created windows. -const int kWindowWidth = 800; -const int kWindowHeight = 600; - -// Memory AutoRelease pool. -static NSAutoreleasePool* g_autopool = nil; - -// Provide the CefAppProtocol implementation required by CEF. -@interface ClientApplication : NSApplication { -@private - BOOL handlingSendEvent_; -} -@end - -@implementation ClientApplication -- (BOOL)isHandlingSendEvent { - return handlingSendEvent_; -} - -- (void)setHandlingSendEvent:(BOOL)handlingSendEvent { - handlingSendEvent_ = handlingSendEvent; -} - -- (void)sendEvent:(NSEvent*)event { - CefScopedSendingEvent sendingEventScoper; - [super sendEvent:event]; -} -@end - - -// Receives notifications from controls and the browser window. Will delete -// itself when done. -@interface ClientWindowDelegate : NSObject -- (IBAction)goBack:(id)sender; -- (IBAction)goForward:(id)sender; -- (IBAction)reload:(id)sender; -- (IBAction)stopLoading:(id)sender; -- (IBAction)takeURLStringValueFrom:(NSTextField *)sender; -- (void)alert:(NSString*)title withMessage:(NSString*)message; -- (void)notifyConsoleMessage:(id)object; -- (void)notifyDownloadComplete:(id)object; -- (void)notifyDownloadError:(id)object; -@end - -@implementation ClientWindowDelegate - -- (IBAction)goBack:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - g_handler->GetBrowser()->GoBack(); -} - -- (IBAction)goForward:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - g_handler->GetBrowser()->GoForward(); -} - -- (IBAction)reload:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - g_handler->GetBrowser()->Reload(); -} - -- (IBAction)stopLoading:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - g_handler->GetBrowser()->StopLoad(); -} - -- (IBAction)takeURLStringValueFrom:(NSTextField *)sender { - if (!g_handler.get() || !g_handler->GetBrowserId()) - return; - - NSString *url = [sender stringValue]; - - // if it doesn't already have a prefix, add http. If we can't parse it, - // just don't bother rather than making things worse. - NSURL* tempUrl = [NSURL URLWithString:url]; - if (tempUrl && ![tempUrl scheme]) - url = [@"http://" stringByAppendingString:url]; - - std::string urlStr = [url UTF8String]; - g_handler->GetBrowser()->GetMainFrame()->LoadURL(urlStr); -} - -- (void)alert:(NSString*)title withMessage:(NSString*)message { - NSAlert *alert = [NSAlert alertWithMessageText:title - defaultButton:@"OK" - alternateButton:nil - otherButton:nil - informativeTextWithFormat:message]; - [alert runModal]; -} - -- (void)notifyConsoleMessage:(id)object { - std::stringstream ss; - ss << "Console messages will be written to " << g_handler->GetLogFile(); - NSString* str = [NSString stringWithUTF8String:(ss.str().c_str())]; - [self alert:@"Console Messages" withMessage:str]; -} - -- (void)notifyDownloadComplete:(id)object { - std::stringstream ss; - ss << "File \"" << g_handler->GetLastDownloadFile() << - "\" downloaded successfully."; - NSString* str = [NSString stringWithUTF8String:(ss.str().c_str())]; - [self alert:@"File Download" withMessage:str]; -} - -- (void)notifyDownloadError:(id)object { - std::stringstream ss; - ss << "File \"" << g_handler->GetLastDownloadFile() << - "\" failed to download."; - NSString* str = [NSString stringWithUTF8String:(ss.str().c_str())]; - [self alert:@"File Download" withMessage:str]; -} - -- (void)windowDidBecomeKey:(NSNotification*)notification { - if (g_handler.get() && g_handler->GetBrowserId()) { - // Give focus to the browser window. - g_handler->GetBrowser()->GetHost()->SetFocus(true); - } -} - -// Called when the window is about to close. Perform the self-destruction -// sequence by getting rid of the window. By returning YES, we allow the window -// to be removed from the screen. -- (BOOL)windowShouldClose:(id)window { - // Try to make the window go away. - [window autorelease]; - - // Clean ourselves up after clearing the stack of anything that might have the - // window on it. - [self performSelectorOnMainThread:@selector(cleanup:) - withObject:window - waitUntilDone:NO]; - - return YES; -} - -// Deletes itself. -- (void)cleanup:(id)window { - [self release]; -} - -@end - - -NSButton* MakeButton(NSRect* rect, NSString* title, NSView* parent) { - NSButton* button = [[[NSButton alloc] initWithFrame:*rect] autorelease]; - [button setTitle:title]; - [button setBezelStyle:NSSmallSquareBezelStyle]; - [button setAutoresizingMask:(NSViewMaxXMargin | NSViewMinYMargin)]; - [parent addSubview:button]; - rect->origin.x += BUTTON_WIDTH; - return button; -} - -// Receives notifications from the application. Will delete itself when done. -@interface ClientAppDelegate : NSObject -- (void)createApp:(id)object; -- (IBAction)testGetSource:(id)sender; -- (IBAction)testGetText:(id)sender; -- (IBAction)testRequest:(id)sender; -- (IBAction)testLocalStorage:(id)sender; -- (IBAction)testXMLHttpRequest:(id)sender; -- (IBAction)testSchemeHandler:(id)sender; -- (IBAction)testBinding:(id)sender; -- (IBAction)testDialogs:(id)sender; -- (IBAction)testPluginInfo:(id)sender; -- (IBAction)testDOMAccess:(id)sender; -- (IBAction)testPopupWindow:(id)sender; -- (IBAction)testAccelerated2DCanvas:(id)sender; -- (IBAction)testAcceleratedLayers:(id)sender; -- (IBAction)testWebGL:(id)sender; -- (IBAction)testHTML5Video:(id)sender; -- (IBAction)testDragDrop:(id)sender; -- (IBAction)testZoomIn:(id)sender; -- (IBAction)testZoomOut:(id)sender; -- (IBAction)testZoomReset:(id)sender; -@end - -@implementation ClientAppDelegate - -// Create the application on the UI thread. -- (void)createApp:(id)object { - [NSApplication sharedApplication]; - [NSBundle loadNibNamed:@"MainMenu" owner:NSApp]; - - // Set the delegate for application events. - [NSApp setDelegate:self]; - - // Add the Tests menu. - NSMenu* menubar = [NSApp mainMenu]; - NSMenuItem *testItem = [[[NSMenuItem alloc] initWithTitle:@"Tests" - action:nil - keyEquivalent:@""] autorelease]; - NSMenu *testMenu = [[[NSMenu alloc] initWithTitle:@"Tests"] autorelease]; - [testMenu addItemWithTitle:@"Get Source" - action:@selector(testGetSource:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Get Text" - action:@selector(testGetText:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Popup Window" - action:@selector(testPopupWindow:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Request" - action:@selector(testRequest:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Scheme Handler" - action:@selector(testSchemeHandler:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"JavaScript Binding" - action:@selector(testBinding:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"JavaScript Dialogs" - action:@selector(testDialogs:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Plugin Info" - action:@selector(testPluginInfo:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"DOM Access" - action:@selector(testDOMAccess:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Local Storage" - action:@selector(testLocalStorage:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"XMLHttpRequest" - action:@selector(testXMLHttpRequest:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Accelerated 2D Canvas" - action:@selector(testAccelerated2DCanvas:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Accelerated Layers" - action:@selector(testAcceleratedLayers:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"WebGL" - action:@selector(testWebGL:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"HTML5 Video" - action:@selector(testHTML5Video:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Drag & Drop" - action:@selector(testDragDrop:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Zoom In" - action:@selector(testZoomIn:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Zoom Out" - action:@selector(testZoomOut:) - keyEquivalent:@""]; - [testMenu addItemWithTitle:@"Zoom Reset" - action:@selector(testZoomReset:) - keyEquivalent:@""]; - [testItem setSubmenu:testMenu]; - [menubar addItem:testItem]; - - // Create the delegate for control and browser window events. - ClientWindowDelegate* delegate = [[ClientWindowDelegate alloc] init]; - - // Create the main application window. - NSRect screen_rect = [[NSScreen mainScreen] visibleFrame]; - NSRect window_rect = { {0, screen_rect.size.height - kWindowHeight}, - {kWindowWidth, kWindowHeight} }; - NSWindow* mainWnd = [[UnderlayOpenGLHostingWindow alloc] - initWithContentRect:window_rect - styleMask:(NSTitledWindowMask | - NSClosableWindowMask | - NSMiniaturizableWindowMask | - NSResizableWindowMask ) - backing:NSBackingStoreBuffered - defer:NO]; - [mainWnd setTitle:@"cefclient"]; - [mainWnd setDelegate:delegate]; - - // Rely on the window delegate to clean us up rather than immediately - // releasing when the window gets closed. We use the delegate to do - // everything from the autorelease pool so the window isn't on the stack - // during cleanup (ie, a window close from javascript). - [mainWnd setReleasedWhenClosed:NO]; - - NSView* contentView = [mainWnd contentView]; - - // Create the buttons. - NSRect button_rect = [contentView bounds]; - button_rect.origin.y = window_rect.size.height - URLBAR_HEIGHT + - (URLBAR_HEIGHT - BUTTON_HEIGHT) / 2; - button_rect.size.height = BUTTON_HEIGHT; - button_rect.origin.x += BUTTON_MARGIN; - button_rect.size.width = BUTTON_WIDTH; - - NSButton* button = MakeButton(&button_rect, @"Back", contentView); - [button setTarget:delegate]; - [button setAction:@selector(goBack:)]; - - button = MakeButton(&button_rect, @"Forward", contentView); - [button setTarget:delegate]; - [button setAction:@selector(goForward:)]; - - button = MakeButton(&button_rect, @"Reload", contentView); - [button setTarget:delegate]; - [button setAction:@selector(reload:)]; - - button = MakeButton(&button_rect, @"Stop", contentView); - [button setTarget:delegate]; - [button setAction:@selector(stopLoading:)]; - - // Create the URL text field. - button_rect.origin.x += BUTTON_MARGIN; - button_rect.size.width = [contentView bounds].size.width - - button_rect.origin.x - BUTTON_MARGIN; - NSTextField* editWnd = [[NSTextField alloc] initWithFrame:button_rect]; - [contentView addSubview:editWnd]; - [editWnd setAutoresizingMask:(NSViewWidthSizable | NSViewMinYMargin)]; - [editWnd setTarget:delegate]; - [editWnd setAction:@selector(takeURLStringValueFrom:)]; - [[editWnd cell] setWraps:NO]; - [[editWnd cell] setScrollable:YES]; - - // Create the handler. - g_handler = new ClientHandler(); - g_handler->SetMainHwnd(contentView); - g_handler->SetEditHwnd(editWnd); - - // Create the browser view. - CefWindowInfo window_info; - CefBrowserSettings settings; - - // Populate the settings based on command line arguments. - AppGetBrowserSettings(settings); - - window_info.SetAsChild(contentView, 0, 0, kWindowWidth, kWindowHeight); - CefBrowserHost::CreateBrowser(window_info, g_handler.get(), - g_handler->GetStartupURL(), settings); - - // Show the window. - [mainWnd makeKeyAndOrderFront: nil]; - - // Size the window. - NSRect r = [mainWnd contentRectForFrameRect:[mainWnd frame]]; - r.size.width = kWindowWidth; - r.size.height = kWindowHeight + URLBAR_HEIGHT; - [mainWnd setFrame:[mainWnd frameRectForContentRect:r] display:YES]; -} - -- (IBAction)testGetSource:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunGetSourceTest(g_handler->GetBrowser()); -} - -- (IBAction)testGetText:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunGetTextTest(g_handler->GetBrowser()); -} - -- (IBAction)testRequest:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunRequestTest(g_handler->GetBrowser()); -} - -- (IBAction)testLocalStorage:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunLocalStorageTest(g_handler->GetBrowser()); -} - -- (IBAction)testXMLHttpRequest:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunXMLHTTPRequestTest(g_handler->GetBrowser()); -} - -- (IBAction)testSchemeHandler:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - scheme_test::RunTest(g_handler->GetBrowser()); -} - -- (IBAction)testBinding:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - binding_test::RunTest(g_handler->GetBrowser()); -} - -- (IBAction)testDialogs:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunDialogTest(g_handler->GetBrowser()); -} - -- (IBAction)testPluginInfo:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunPluginInfoTest(g_handler->GetBrowser()); -} - -- (IBAction)testDOMAccess:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - dom_test::RunTest(g_handler->GetBrowser()); -} - -- (IBAction)testPopupWindow:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunPopupTest(g_handler->GetBrowser()); -} - -- (IBAction)testAccelerated2DCanvas:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunAccelerated2DCanvasTest(g_handler->GetBrowser()); -} - -- (IBAction)testAcceleratedLayers:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunAcceleratedLayersTest(g_handler->GetBrowser()); -} - -- (IBAction)testWebGL:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunWebGLTest(g_handler->GetBrowser()); -} - -- (IBAction)testHTML5Video:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunHTML5VideoTest(g_handler->GetBrowser()); -} - -- (IBAction)testDragDrop:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) - RunDragDropTest(g_handler->GetBrowser()); -} - -- (IBAction)testZoomIn:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) { - CefRefPtr browser = g_handler->GetBrowser(); - browser->GetHost()->SetZoomLevel(browser->GetHost()->GetZoomLevel() + 0.5); - } -} - -- (IBAction)testZoomOut:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) { - CefRefPtr browser = g_handler->GetBrowser(); - browser->GetHost()->SetZoomLevel(browser->GetHost()->GetZoomLevel() - 0.5); - } -} - -- (IBAction)testZoomReset:(id)sender { - if (g_handler.get() && g_handler->GetBrowserId()) { - CefRefPtr browser = g_handler->GetBrowser(); - browser->GetHost()->SetZoomLevel(0.0); - } -} - - -// Sent by the default notification center immediately before the application -// terminates. -- (void)applicationWillTerminate:(NSNotification *)aNotification { - // Shut down CEF. - g_handler = NULL; - CefShutdown(); - - [self release]; - - // Release the AutoRelease pool. - [g_autopool release]; -} - -@end - - -int main(int argc, char* argv[]) { - CefMainArgs main_args(argc, argv); - CefRefPtr app(new ClientApp); - - // Execute the secondary process, if any. - int exit_code = CefExecuteProcess(main_args, app.get()); - if (exit_code >= 0) - return exit_code; - - // Retrieve the current working directory. - getcwd(szWorkingDir, sizeof(szWorkingDir)); - - // Initialize the AutoRelease pool. - g_autopool = [[NSAutoreleasePool alloc] init]; - - // Initialize the ClientApplication instance. - [ClientApplication sharedApplication]; - - // Parse command line arguments. - AppInitCommandLine(argc, argv); - - CefSettings settings; - - // Populate the settings based on command line arguments. - AppGetSettings(settings, app); - - // Initialize CEF. - CefInitialize(main_args, settings, app.get()); - - // Register the scheme handler. - scheme_test::InitTest(); - - // Create the application delegate and window. - NSObject* delegate = [[ClientAppDelegate alloc] init]; - [delegate performSelectorOnMainThread:@selector(createApp:) withObject:nil - waitUntilDone:NO]; - - // Run the application message loop. - CefRunMessageLoop(); - - // Don't put anything below this line because it won't be executed. - return 0; -} - - -// Global functions - -std::string AppGetWorkingDirectory() { - return szWorkingDir; -} diff --git a/atom/cefclient/cefclient_win.cpp b/atom/cefclient/cefclient_win.cpp deleted file mode 100644 index a380d9ce2..000000000 --- a/atom/cefclient/cefclient_win.cpp +++ /dev/null @@ -1,546 +0,0 @@ -// Copyright (c) 2010 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/cefclient.h" -#include -#include -#include -#include -#include -#include -#include "include/cef_app.h" -#include "include/cef_browser.h" -#include "include/cef_frame.h" -#include "include/cef_runnable.h" -#include "cefclient/binding_test.h" -#include "cefclient/client_handler.h" -#include "cefclient/dom_test.h" -#include "cefclient/resource.h" -#include "cefclient/scheme_test.h" -#include "cefclient/string_util.h" - -#define MAX_LOADSTRING 100 -#define MAX_URL_LENGTH 255 -#define BUTTON_WIDTH 72 -#define URLBAR_HEIGHT 24 - -// Global Variables: -HINSTANCE hInst; // current instance -TCHAR szTitle[MAX_LOADSTRING]; // The title bar text -TCHAR szWindowClass[MAX_LOADSTRING]; // the main window class name -char szWorkingDir[MAX_PATH]; // The current working directory - -// Forward declarations of functions included in this code module: -ATOM MyRegisterClass(HINSTANCE hInstance); -BOOL InitInstance(HINSTANCE, int); -LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); -INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM); - -// The global ClientHandler reference. -extern CefRefPtr g_handler; - -#if defined(OS_WIN) -// Add Common Controls to the application manifest because it's required to -// support the default tooltip implementation. -#pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") // NOLINT(whitespace/line_length) -#endif - -// Program entry point function. -int APIENTRY wWinMain(HINSTANCE hInstance, - HINSTANCE hPrevInstance, - LPTSTR lpCmdLine, - int nCmdShow) { - UNREFERENCED_PARAMETER(hPrevInstance); - UNREFERENCED_PARAMETER(lpCmdLine); - - CefMainArgs main_args(hInstance); - CefRefPtr app(new ClientApp); - - // Execute the secondary process, if any. - int exit_code = CefExecuteProcess(main_args, app.get()); - if (exit_code >= 0) - return exit_code; - - // Retrieve the current working directory. - if (_getcwd(szWorkingDir, MAX_PATH) == NULL) - szWorkingDir[0] = 0; - - // Parse command line arguments. The passed in values are ignored on Windows. - AppInitCommandLine(0, NULL); - - CefSettings settings; - - // Populate the settings based on command line arguments. - AppGetSettings(settings, app); - - // Initialize CEF. - CefInitialize(main_args, settings, app.get()); - - // Register the scheme handler. - scheme_test::InitTest(); - - HACCEL hAccelTable; - - // Initialize global strings - LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); - LoadString(hInstance, IDC_CEFCLIENT, szWindowClass, MAX_LOADSTRING); - MyRegisterClass(hInstance); - - // Perform application initialization - if (!InitInstance (hInstance, nCmdShow)) - return FALSE; - - hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_CEFCLIENT)); - - int result = 0; - - if (!settings.multi_threaded_message_loop) { - // Run the CEF message loop. This function will block until the application - // recieves a WM_QUIT message. - CefRunMessageLoop(); - } else { - MSG msg; - - // Run the application message loop. - while (GetMessage(&msg, NULL, 0, 0)) { - if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) { - TranslateMessage(&msg); - DispatchMessage(&msg); - } - } - - result = static_cast(msg.wParam); - } - - // Shut down CEF. - CefShutdown(); - - return result; -} - -// -// FUNCTION: MyRegisterClass() -// -// PURPOSE: Registers the window class. -// -// COMMENTS: -// -// This function and its usage are only necessary if you want this code -// to be compatible with Win32 systems prior to the 'RegisterClassEx' -// function that was added to Windows 95. It is important to call this -// function so that the application will get 'well formed' small icons -// associated with it. -// -ATOM MyRegisterClass(HINSTANCE hInstance) { - WNDCLASSEX wcex; - - wcex.cbSize = sizeof(WNDCLASSEX); - - wcex.style = CS_HREDRAW | CS_VREDRAW; - wcex.lpfnWndProc = WndProc; - wcex.cbClsExtra = 0; - wcex.cbWndExtra = 0; - wcex.hInstance = hInstance; - wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_CEFCLIENT)); - wcex.hCursor = LoadCursor(NULL, IDC_ARROW); - wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); - wcex.lpszMenuName = MAKEINTRESOURCE(IDC_CEFCLIENT); - wcex.lpszClassName = szWindowClass; - wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL)); - - return RegisterClassEx(&wcex); -} - -// -// FUNCTION: InitInstance(HINSTANCE, int) -// -// PURPOSE: Saves instance handle and creates main window -// -// COMMENTS: -// -// In this function, we save the instance handle in a global variable and -// create and display the main program window. -// -BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) { - HWND hWnd; - - hInst = hInstance; // Store instance handle in our global variable - - hWnd = CreateWindow(szWindowClass, szTitle, - WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN, CW_USEDEFAULT, 0, - CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL); - - if (!hWnd) - return FALSE; - - ShowWindow(hWnd, nCmdShow); - UpdateWindow(hWnd); - - return TRUE; -} - -// Change the zoom factor on the UI thread. -static void ModifyZoom(CefRefPtr browser, double delta) { - if (CefCurrentlyOn(TID_UI)) { - browser->GetHost()->SetZoomLevel( - browser->GetHost()->GetZoomLevel() + delta); - } else { - CefPostTask(TID_UI, NewCefRunnableFunction(ModifyZoom, browser, delta)); - } -} - -// -// FUNCTION: WndProc(HWND, UINT, WPARAM, LPARAM) -// -// PURPOSE: Processes messages for the main window. -// -LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, - LPARAM lParam) { - static HWND backWnd = NULL, forwardWnd = NULL, reloadWnd = NULL, - stopWnd = NULL, editWnd = NULL; - static WNDPROC editWndOldProc = NULL; - - // Static members used for the find dialog. - static FINDREPLACE fr; - static WCHAR szFindWhat[80] = {0}; - static WCHAR szLastFindWhat[80] = {0}; - static bool findNext = false; - static bool lastMatchCase = false; - - int wmId, wmEvent; - PAINTSTRUCT ps; - HDC hdc; - - if (hWnd == editWnd) { - // Callback for the edit window - switch (message) { - case WM_CHAR: - if (wParam == VK_RETURN && g_handler.get()) { - // When the user hits the enter key load the URL - CefRefPtr browser = g_handler->GetBrowser(); - wchar_t strPtr[MAX_URL_LENGTH+1] = {0}; - *((LPWORD)strPtr) = MAX_URL_LENGTH; - LRESULT strLen = SendMessage(hWnd, EM_GETLINE, 0, (LPARAM)strPtr); - if (strLen > 0) { - strPtr[strLen] = 0; - browser->GetMainFrame()->LoadURL(strPtr); - } - - return 0; - } - } - - return (LRESULT)CallWindowProc(editWndOldProc, hWnd, message, wParam, - lParam); - } else { - // Callback for the main window - switch (message) { - case WM_CREATE: { - // Create the single static handler class instance - g_handler = new ClientHandler(); - g_handler->SetMainHwnd(hWnd); - - // Create the child windows used for navigation - RECT rect; - int x = 0; - - GetClientRect(hWnd, &rect); - - backWnd = CreateWindow(L"BUTTON", L"Back", - WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON - | WS_DISABLED, x, 0, BUTTON_WIDTH, URLBAR_HEIGHT, - hWnd, (HMENU) IDC_NAV_BACK, hInst, 0); - x += BUTTON_WIDTH; - - forwardWnd = CreateWindow(L"BUTTON", L"Forward", - WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON - | WS_DISABLED, x, 0, BUTTON_WIDTH, - URLBAR_HEIGHT, hWnd, (HMENU) IDC_NAV_FORWARD, - hInst, 0); - x += BUTTON_WIDTH; - - reloadWnd = CreateWindow(L"BUTTON", L"Reload", - WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON - | WS_DISABLED, x, 0, BUTTON_WIDTH, - URLBAR_HEIGHT, hWnd, (HMENU) IDC_NAV_RELOAD, - hInst, 0); - x += BUTTON_WIDTH; - - stopWnd = CreateWindow(L"BUTTON", L"Stop", - WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON - | WS_DISABLED, x, 0, BUTTON_WIDTH, URLBAR_HEIGHT, - hWnd, (HMENU) IDC_NAV_STOP, hInst, 0); - x += BUTTON_WIDTH; - - editWnd = CreateWindow(L"EDIT", 0, - WS_CHILD | WS_VISIBLE | WS_BORDER | ES_LEFT | - ES_AUTOVSCROLL | ES_AUTOHSCROLL| WS_DISABLED, - x, 0, rect.right - BUTTON_WIDTH * 4, - URLBAR_HEIGHT, hWnd, 0, hInst, 0); - - // Assign the edit window's WNDPROC to this function so that we can - // capture the enter key - editWndOldProc = - reinterpret_cast(GetWindowLongPtr(editWnd, GWLP_WNDPROC)); - SetWindowLongPtr(editWnd, GWLP_WNDPROC, - reinterpret_cast(WndProc)); - g_handler->SetEditHwnd(editWnd); - g_handler->SetButtonHwnds(backWnd, forwardWnd, reloadWnd, stopWnd); - - rect.top += URLBAR_HEIGHT; - - CefWindowInfo info; - CefBrowserSettings settings; - - // Populate the settings based on command line arguments. - AppGetBrowserSettings(settings); - - // Initialize window info to the defaults for a child window - info.SetAsChild(hWnd, rect); - - // Creat the new child browser window - CefBrowserHost::CreateBrowser(info, g_handler.get(), - g_handler->GetStartupURL(), settings); - - return 0; - } - - case WM_COMMAND: { - CefRefPtr browser; - if (g_handler.get()) - browser = g_handler->GetBrowser(); - - wmId = LOWORD(wParam); - wmEvent = HIWORD(wParam); - // Parse the menu selections: - switch (wmId) { - case IDM_ABOUT: - DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUTBOX), hWnd, About); - return 0; - case IDM_EXIT: - DestroyWindow(hWnd); - return 0; - case ID_WARN_CONSOLEMESSAGE: - if (g_handler.get()) { - std::wstringstream ss; - ss << L"Console messages will be written to " - << std::wstring(CefString(g_handler->GetLogFile())); - MessageBox(hWnd, ss.str().c_str(), L"Console Messages", - MB_OK | MB_ICONINFORMATION); - } - return 0; - case ID_WARN_DOWNLOADCOMPLETE: - case ID_WARN_DOWNLOADERROR: - if (g_handler.get()) { - std::wstringstream ss; - ss << L"File \"" << - std::wstring(CefString(g_handler->GetLastDownloadFile())) << - L"\" "; - - if (wmId == ID_WARN_DOWNLOADCOMPLETE) - ss << L"downloaded successfully."; - else - ss << L"failed to download."; - - MessageBox(hWnd, ss.str().c_str(), L"File Download", - MB_OK | MB_ICONINFORMATION); - } - return 0; - case IDC_NAV_BACK: // Back button - if (browser.get()) - browser->GoBack(); - return 0; - case IDC_NAV_FORWARD: // Forward button - if (browser.get()) - browser->GoForward(); - return 0; - case IDC_NAV_RELOAD: // Reload button - if (browser.get()) - browser->Reload(); - return 0; - case IDC_NAV_STOP: // Stop button - if (browser.get()) - browser->StopLoad(); - return 0; - case ID_TESTS_GETSOURCE: // Test the GetSource function - if (browser.get()) - RunGetSourceTest(browser); - return 0; - case ID_TESTS_GETTEXT: // Test the GetText function - if (browser.get()) - RunGetTextTest(browser); - return 0; - case ID_TESTS_POPUP: // Test a popup window - if (browser.get()) - RunPopupTest(browser); - return 0; - case ID_TESTS_REQUEST: // Test a request - if (browser.get()) - RunRequestTest(browser); - return 0; - case ID_TESTS_SCHEME_HANDLER: // Test the scheme handler - if (browser.get()) - scheme_test::RunTest(browser); - return 0; - case ID_TESTS_BINDING: // Test JavaScript binding - if (browser.get()) - binding_test::RunTest(browser); - return 0; - case ID_TESTS_DIALOGS: // Test JavaScript dialogs - if (browser.get()) - RunDialogTest(browser); - return 0; - case ID_TESTS_PLUGIN_INFO: // Test plugin info - if (browser.get()) - RunPluginInfoTest(browser); - return 0; - case ID_TESTS_DOM_ACCESS: // Test DOM access - if (browser.get()) - dom_test::RunTest(browser); - return 0; - case ID_TESTS_LOCALSTORAGE: // Test localStorage - if (browser.get()) - RunLocalStorageTest(browser); - return 0; - case ID_TESTS_ACCELERATED2DCANVAS: // Test accelerated 2d canvas - if (browser.get()) - RunAccelerated2DCanvasTest(browser); - return 0; - case ID_TESTS_ACCELERATEDLAYERS: // Test accelerated layers - if (browser.get()) - RunAcceleratedLayersTest(browser); - return 0; - case ID_TESTS_WEBGL: // Test WebGL - if (browser.get()) - RunWebGLTest(browser); - return 0; - case ID_TESTS_HTML5VIDEO: // Test HTML5 video - if (browser.get()) - RunHTML5VideoTest(browser); - return 0; - case ID_TESTS_XMLHTTPREQUEST: // Test XMLHttpRequest - if (browser.get()) - RunXMLHTTPRequestTest(browser); - return 0; - case ID_TESTS_DRAGDROP: // Test drag & drop - if (browser.get()) - RunDragDropTest(browser); - return 0; - case ID_TESTS_GEOLOCATION: // Test geolocation - if (browser.get()) - RunGeolocationTest(browser); - return 0; - case ID_TESTS_ZOOM_IN: - if (browser.get()) - ModifyZoom(browser, 0.5); - return 0; - case ID_TESTS_ZOOM_OUT: - if (browser.get()) - ModifyZoom(browser, -0.5); - return 0; - case ID_TESTS_ZOOM_RESET: - if (browser.get()) - browser->GetHost()->SetZoomLevel(0.0); - return 0; - } - break; - } - - case WM_PAINT: - hdc = BeginPaint(hWnd, &ps); - EndPaint(hWnd, &ps); - return 0; - - case WM_SETFOCUS: - if (g_handler.get() && g_handler->GetBrowser()) { - // Pass focus to the browser window - CefWindowHandle hwnd = - g_handler->GetBrowser()->GetHost()->GetWindowHandle(); - if (hwnd) - PostMessage(hwnd, WM_SETFOCUS, wParam, NULL); - } - return 0; - - case WM_SIZE: - // Minimizing resizes the window to 0x0 which causes our layout to go all - // screwy, so we just ignore it. - if (wParam != SIZE_MINIMIZED && g_handler.get() && - g_handler->GetBrowser()) { - CefWindowHandle hwnd = - g_handler->GetBrowser()->GetHost()->GetWindowHandle(); - if (hwnd) { - // Resize the browser window and address bar to match the new frame - // window size - RECT rect; - GetClientRect(hWnd, &rect); - rect.top += URLBAR_HEIGHT; - - int urloffset = rect.left + BUTTON_WIDTH * 4; - - HDWP hdwp = BeginDeferWindowPos(1); - hdwp = DeferWindowPos(hdwp, editWnd, NULL, urloffset, - 0, rect.right - urloffset, URLBAR_HEIGHT, SWP_NOZORDER); - hdwp = DeferWindowPos(hdwp, hwnd, NULL, - rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, - SWP_NOZORDER); - EndDeferWindowPos(hdwp); - } - } - break; - - case WM_ERASEBKGND: - if (g_handler.get() && g_handler->GetBrowser()) { - CefWindowHandle hwnd = - g_handler->GetBrowser()->GetHost()->GetWindowHandle(); - if (hwnd) { - // Dont erase the background if the browser window has been loaded - // (this avoids flashing) - return 0; - } - } - break; - - case WM_CLOSE: - if (g_handler.get()) { - CefRefPtr browser = g_handler->GetBrowser(); - if (browser.get()) { - // Let the browser window know we are about to destroy it. - browser->GetHost()->ParentWindowWillClose(); - } - } - break; - - case WM_DESTROY: - // The frame window has exited - PostQuitMessage(0); - return 0; - } - - return DefWindowProc(hWnd, message, wParam, lParam); - } -} - -// Message handler for about box. -INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { - UNREFERENCED_PARAMETER(lParam); - switch (message) { - case WM_INITDIALOG: - return (INT_PTR)TRUE; - - case WM_COMMAND: - if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) { - EndDialog(hDlg, LOWORD(wParam)); - return (INT_PTR)TRUE; - } - break; - } - return (INT_PTR)FALSE; -} - - -// Global functions - -std::string AppGetWorkingDirectory() { - return szWorkingDir; -} diff --git a/atom/cefclient/client_app.cpp b/atom/cefclient/client_app.cpp deleted file mode 100644 index b6a26d150..000000000 --- a/atom/cefclient/client_app.cpp +++ /dev/null @@ -1,346 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -// This file is shared by cefclient and cef_unittests so don't include using -// a qualified path. -#include "client_app.h" // NOLINT(build/include) - -#include - -#include "include/cef_cookie.h" -#include "include/cef_process_message.h" -#include "include/cef_task.h" -#include "include/cef_v8.h" -#include "util.h" // NOLINT(build/include) - -namespace { - -// Forward declarations. -void SetList(CefRefPtr source, CefRefPtr target); -void SetList(CefRefPtr source, CefRefPtr target); - -// Transfer a V8 value to a List index. -void SetListValue(CefRefPtr list, int index, - CefRefPtr value) { - if (value->IsArray()) { - CefRefPtr new_list = CefListValue::Create(); - SetList(value, new_list); - list->SetList(index, new_list); - } else if (value->IsString()) { - list->SetString(index, value->GetStringValue()); - } else if (value->IsBool()) { - list->SetBool(index, value->GetBoolValue()); - } else if (value->IsInt()) { - list->SetInt(index, value->GetIntValue()); - } else if (value->IsDouble()) { - list->SetDouble(index, value->GetDoubleValue()); - } -} - -// Transfer a V8 array to a List. -void SetList(CefRefPtr source, CefRefPtr target) { - ASSERT(source->IsArray()); - - int arg_length = source->GetArrayLength(); - if (arg_length == 0) - return; - - // Start with null types in all spaces. - target->SetSize(arg_length); - - for (int i = 0; i < arg_length; ++i) - SetListValue(target, i, source->GetValue(i)); -} - -// Transfer a List value to a V8 array index. -void SetListValue(CefRefPtr list, int index, - CefRefPtr value) { - CefRefPtr new_value; - - CefValueType type = value->GetType(index); - switch (type) { - case VTYPE_LIST: { - CefRefPtr list = value->GetList(index); - new_value = CefV8Value::CreateArray(list->GetSize()); - SetList(list, new_value); - } break; - case VTYPE_BOOL: - new_value = CefV8Value::CreateBool(value->GetBool(index)); - break; - case VTYPE_DOUBLE: - new_value = CefV8Value::CreateDouble(value->GetDouble(index)); - break; - case VTYPE_INT: - new_value = CefV8Value::CreateInt(value->GetInt(index)); - break; - case VTYPE_STRING: - new_value = CefV8Value::CreateString(value->GetString(index)); - break; - default: - break; - } - - if (new_value.get()) { - list->SetValue(index, new_value); - } else { - list->SetValue(index, CefV8Value::CreateNull()); - } -} - -// Transfer a List to a V8 array. -void SetList(CefRefPtr source, CefRefPtr target) { - ASSERT(target->IsArray()); - - int arg_length = source->GetSize(); - if (arg_length == 0) - return; - - for (int i = 0; i < arg_length; ++i) - SetListValue(target, i, source); -} - - -// Handles the native implementation for the client_app extension. -class ClientAppExtensionHandler : public CefV8Handler { - public: - explicit ClientAppExtensionHandler(CefRefPtr client_app) - : client_app_(client_app) { - } - - virtual bool Execute(const CefString& name, - CefRefPtr object, - const CefV8ValueList& arguments, - CefRefPtr& retval, - CefString& exception) { - bool handled = false; - - if (name == "sendMessage") { - // Send a message to the browser process. - if ((arguments.size() == 1 || arguments.size() == 2) && - arguments[0]->IsString()) { - CefRefPtr browser = - CefV8Context::GetCurrentContext()->GetBrowser(); - ASSERT(browser.get()); - - CefString name = arguments[0]->GetStringValue(); - if (!name.empty()) { - CefRefPtr message = - CefProcessMessage::Create(name); - - // Translate the arguments, if any. - if (arguments.size() == 2 && arguments[1]->IsArray()) - SetList(arguments[1], message->GetArgumentList()); - - browser->SendProcessMessage(PID_BROWSER, message); - handled = true; - } - } - } else if (name == "setMessageCallback") { - // Set a message callback. - if (arguments.size() == 2 && arguments[0]->IsString() && - arguments[1]->IsFunction()) { - std::string name = arguments[0]->GetStringValue(); - CefRefPtr context = CefV8Context::GetCurrentContext(); - int browser_id = context->GetBrowser()->GetIdentifier(); - client_app_->SetMessageCallback(name, browser_id, context, - arguments[1]); - handled = true; - } - } else if (name == "removeMessageCallback") { - // Remove a message callback. - if (arguments.size() == 1 && arguments[0]->IsString()) { - std::string name = arguments[0]->GetStringValue(); - CefRefPtr context = CefV8Context::GetCurrentContext(); - int browser_id = context->GetBrowser()->GetIdentifier(); - bool removed = client_app_->RemoveMessageCallback(name, browser_id); - retval = CefV8Value::CreateBool(removed); - handled = true; - } - } - - if (!handled) - exception = "Invalid method arguments"; - - return true; - } - - private: - CefRefPtr client_app_; - - IMPLEMENT_REFCOUNTING(ClientAppExtensionHandler); -}; - -} // namespace - - -ClientApp::ClientApp() - : proxy_type_(PROXY_TYPE_DIRECT) { - CreateRenderDelegates(render_delegates_); - - // Default schemes that support cookies. - cookieable_schemes_.push_back("http"); - cookieable_schemes_.push_back("https"); -} - -void ClientApp::SetMessageCallback(const std::string& message_name, - int browser_id, - CefRefPtr context, - CefRefPtr function) { - ASSERT(CefCurrentlyOn(TID_RENDERER)); - - callback_map_.insert( - std::make_pair(std::make_pair(message_name, browser_id), - std::make_pair(context, function))); -} - -bool ClientApp::RemoveMessageCallback(const std::string& message_name, - int browser_id) { - ASSERT(CefCurrentlyOn(TID_RENDERER)); - - CallbackMap::iterator it = - callback_map_.find(std::make_pair(message_name, browser_id)); - if (it != callback_map_.end()) { - callback_map_.erase(it); - return true; - } - - return false; -} - -void ClientApp::OnContextInitialized() { - // Register cookieable schemes with the global cookie manager. - CefRefPtr manager = CefCookieManager::GetGlobalManager(); - ASSERT(manager.get()); - manager->SetSupportedSchemes(cookieable_schemes_); -} - -void ClientApp::GetProxyForUrl(const CefString& url, - CefProxyInfo& proxy_info) { - proxy_info.proxyType = proxy_type_; - if (!proxy_config_.empty()) - CefString(&proxy_info.proxyList) = proxy_config_; -} - -void ClientApp::OnWebKitInitialized() { - // Register the client_app extension. - std::string app_code = - "var app;" - "if (!app)" - " app = {};" - "(function() {" - " app.sendMessage = function(name, arguments) {" - " native function sendMessage();" - " return sendMessage(name, arguments);" - " };" - " app.setMessageCallback = function(name, callback) {" - " native function setMessageCallback();" - " return setMessageCallback(name, callback);" - " };" - " app.removeMessageCallback = function(name) {" - " native function removeMessageCallback();" - " return removeMessageCallback(name);" - " };" - "})();"; - CefRegisterExtension("v8/app", app_code, - new ClientAppExtensionHandler(this)); - - // Execute delegate callbacks. - RenderDelegateSet::iterator it = render_delegates_.begin(); - for (; it != render_delegates_.end(); ++it) - (*it)->OnWebKitInitialized(this); -} - -void ClientApp::OnContextCreated(CefRefPtr browser, - CefRefPtr frame, - CefRefPtr context) { - // Execute delegate callbacks. - RenderDelegateSet::iterator it = render_delegates_.begin(); - for (; it != render_delegates_.end(); ++it) - (*it)->OnContextCreated(this, browser, frame, context); -} - -void ClientApp::OnContextReleased(CefRefPtr browser, - CefRefPtr frame, - CefRefPtr context) { - // Execute delegate callbacks. - RenderDelegateSet::iterator it = render_delegates_.begin(); - for (; it != render_delegates_.end(); ++it) - (*it)->OnContextReleased(this, browser, frame, context); - - // Remove any JavaScript callbacks registered for the context that has been - // released. - if (!callback_map_.empty()) { - CallbackMap::iterator it = callback_map_.begin(); - for (; it != callback_map_.end();) { - if (it->second.first->IsSame(context)) - callback_map_.erase(it++); - else - ++it; - } - } -} - -void ClientApp::OnFocusedNodeChanged(CefRefPtr browser, - CefRefPtr frame, - CefRefPtr node) { - // Execute delegate callbacks. - RenderDelegateSet::iterator it = render_delegates_.begin(); - for (; it != render_delegates_.end(); ++it) - (*it)->OnFocusedNodeChanged(this, browser, frame, node); -} - -bool ClientApp::OnProcessMessageReceived( - CefRefPtr browser, - CefProcessId source_process, - CefRefPtr message) { - ASSERT(source_process == PID_BROWSER); - - bool handled = false; - - // Execute delegate callbacks. - RenderDelegateSet::iterator it = render_delegates_.begin(); - for (; it != render_delegates_.end() && !handled; ++it) { - handled = (*it)->OnProcessMessageReceived(this, browser, source_process, - message); - } - - if (handled) - return true; - - // Execute the registered JavaScript callback if any. - if (!callback_map_.empty()) { - CefString message_name = message->GetName(); - CallbackMap::const_iterator it = callback_map_.find( - std::make_pair(message_name.ToString(), - browser->GetIdentifier())); - if (it != callback_map_.end()) { - // Enter the context. - it->second.first->Enter(); - - CefV8ValueList arguments; - - // First argument is the message name. - arguments.push_back(CefV8Value::CreateString(message_name)); - - // Second argument is the list of message arguments. - CefRefPtr list = message->GetArgumentList(); - CefRefPtr args = CefV8Value::CreateArray(list->GetSize()); - SetList(list, args); - arguments.push_back(args); - - // Execute the callback. - CefRefPtr retval = - it->second.second->ExecuteFunction(NULL, arguments); - if (retval.get()) { - if (retval->IsBool()) - handled = retval->GetBoolValue(); - } - - // Exit the context. - it->second.first->Exit(); - } - } - - return handled; -} diff --git a/atom/cefclient/client_app.h b/atom/cefclient/client_app.h deleted file mode 100644 index 2a5e955aa..000000000 --- a/atom/cefclient/client_app.h +++ /dev/null @@ -1,157 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_CLIENT_APP_H_ -#define CEF_TESTS_CEFCLIENT_CLIENT_APP_H_ -#pragma once - -#include -#include -#include -#include -#include -#include "include/cef_app.h" - -class ClientApp : public CefApp, - public CefBrowserProcessHandler, - public CefProxyHandler, - public CefRenderProcessHandler { - public: - // Interface for renderer delegates. All RenderDelegates must be returned via - // CreateRenderDelegates. Do not perform work in the RenderDelegate - // constructor. - class RenderDelegate : public virtual CefBase { - public: - // Called when WebKit is initialized. Used to register V8 extensions. - virtual void OnWebKitInitialized(CefRefPtr app) { - }; - - // Called when a V8 context is created. Used to create V8 window bindings - // and set message callbacks. RenderDelegates should check for unique URLs - // to avoid interfering with each other. - virtual void OnContextCreated(CefRefPtr app, - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr context) { - }; - - // Called when a V8 context is released. Used to clean up V8 window - // bindings. RenderDelegates should check for unique URLs to avoid - // interfering with each other. - virtual void OnContextReleased(CefRefPtr app, - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr context) { - }; - - // Called when the focused node in a frame has changed. - virtual void OnFocusedNodeChanged(CefRefPtr app, - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr node) { - } - - // Called when a process message is received. Return true if the message was - // handled and should not be passed on to other handlers. RenderDelegates - // should check for unique message names to avoid interfering with each - // other. - virtual bool OnProcessMessageReceived( - CefRefPtr app, - CefRefPtr browser, - CefProcessId source_process, - CefRefPtr message) { - return false; - } - }; - - typedef std::set > RenderDelegateSet; - - ClientApp(); - - // Set the proxy configuration. Should only be called during initialization. - void SetProxyConfig(cef_proxy_type_t proxy_type, - const CefString& proxy_config) { - proxy_type_ = proxy_type; - proxy_config_ = proxy_config; - } - - // Set a JavaScript callback for the specified |message_name| and |browser_id| - // combination. Will automatically be removed when the associated context is - // released. Callbacks can also be set in JavaScript using the - // app.setMessageCallback function. - void SetMessageCallback(const std::string& message_name, - int browser_id, - CefRefPtr context, - CefRefPtr function); - - // Removes the JavaScript callback for the specified |message_name| and - // |browser_id| combination. Returns true if a callback was removed. Callbacks - // can also be removed in JavaScript using the app.removeMessageCallback - // function. - bool RemoveMessageCallback(const std::string& message_name, - int browser_id); - - private: - // Creates all of the RenderDelegate objects. Implemented in - // client_app_delegates. - static void CreateRenderDelegates(RenderDelegateSet& delegates); - - // Registers custom schemes. Implemented in client_app_delegates. - static void RegisterCustomSchemes(CefRefPtr registrar, - std::vector& cookiable_schemes); - - // CefApp methods. - virtual void OnRegisterCustomSchemes( - CefRefPtr registrar) OVERRIDE { - RegisterCustomSchemes(registrar, cookieable_schemes_); - } - virtual CefRefPtr GetBrowserProcessHandler() - OVERRIDE { return this; } - virtual CefRefPtr GetRenderProcessHandler() - OVERRIDE { return this; } - - // CefBrowserProcessHandler methods. - virtual CefRefPtr GetProxyHandler() OVERRIDE { return this; } - virtual void OnContextInitialized(); - - // CefProxyHandler methods. - virtual void GetProxyForUrl(const CefString& url, - CefProxyInfo& proxy_info) OVERRIDE; - - // CefRenderProcessHandler methods. - virtual void OnWebKitInitialized() OVERRIDE; - virtual void OnContextCreated(CefRefPtr browser, - CefRefPtr frame, - CefRefPtr context) OVERRIDE; - virtual void OnContextReleased(CefRefPtr browser, - CefRefPtr frame, - CefRefPtr context) OVERRIDE; - virtual void OnFocusedNodeChanged(CefRefPtr browser, - CefRefPtr frame, - CefRefPtr node) OVERRIDE; - virtual bool OnProcessMessageReceived( - CefRefPtr browser, - CefProcessId source_process, - CefRefPtr message) OVERRIDE; - - // Proxy configuration. - cef_proxy_type_t proxy_type_; - CefString proxy_config_; - - // Map of message callbacks. - typedef std::map, - std::pair, CefRefPtr > > - CallbackMap; - CallbackMap callback_map_; - - // Set of supported RenderDelegates. - RenderDelegateSet render_delegates_; - - // Schemes that will be registered with the global cookie manager. - std::vector cookieable_schemes_; - - IMPLEMENT_REFCOUNTING(ClientApp); -}; - -#endif // CEF_TESTS_CEFCLIENT_CLIENT_APP_H_ diff --git a/atom/cefclient/client_app_delegates.cpp b/atom/cefclient/client_app_delegates.cpp deleted file mode 100644 index 84a76a8dc..000000000 --- a/atom/cefclient/client_app_delegates.cpp +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/client_app.h" -#include "cefclient/client_renderer.h" -#include "cefclient/dom_test.h" -#include "cefclient/scheme_test.h" - -// static -void ClientApp::CreateRenderDelegates(RenderDelegateSet& delegates) { - client_renderer::CreateRenderDelegates(delegates); - dom_test::CreateRenderDelegates(delegates); -} - -// static -void ClientApp::RegisterCustomSchemes( - CefRefPtr registrar, - std::vector& cookiable_schemes) { - scheme_test::RegisterCustomSchemes(registrar, cookiable_schemes); -} diff --git a/atom/cefclient/client_handler.cpp b/atom/cefclient/client_handler.cpp deleted file mode 100644 index e65bd98d3..000000000 --- a/atom/cefclient/client_handler.cpp +++ /dev/null @@ -1,526 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/client_handler.h" -#include -#include -#include -#include -#include "include/cef_browser.h" -#include "include/cef_frame.h" -#include "include/cef_path_util.h" -#include "include/cef_process_util.h" -#include "include/cef_runnable.h" -#include "include/wrapper/cef_stream_resource_handler.h" -#include "cefclient/binding_test.h" -#include "cefclient/cefclient.h" -#include "cefclient/client_renderer.h" -#include "cefclient/client_switches.h" -#include "cefclient/dom_test.h" -#include "cefclient/resource_util.h" -#include "cefclient/string_util.h" - - -// Custom menu command Ids. -enum client_menu_ids { - CLIENT_ID_SHOW_DEVTOOLS = MENU_ID_USER_FIRST, - CLIENT_ID_TESTMENU_SUBMENU, - CLIENT_ID_TESTMENU_CHECKITEM, - CLIENT_ID_TESTMENU_RADIOITEM1, - CLIENT_ID_TESTMENU_RADIOITEM2, - CLIENT_ID_TESTMENU_RADIOITEM3, -}; - -ClientHandler::ClientHandler() - : m_MainHwnd(NULL), - m_BrowserId(0), - m_EditHwnd(NULL), - m_BackHwnd(NULL), - m_ForwardHwnd(NULL), - m_StopHwnd(NULL), - m_ReloadHwnd(NULL), - m_bFocusOnEditableField(false) { - CreateProcessMessageDelegates(process_message_delegates_); - CreateRequestDelegates(request_delegates_); - - // Read command line settings. - CefRefPtr command_line = - CefCommandLine::GetGlobalCommandLine(); - - if (command_line->HasSwitch(cefclient::kUrl)) - m_StartupURL = command_line->GetSwitchValue(cefclient::kUrl); - if (m_StartupURL.empty()) - m_StartupURL = "http://www.google.com/"; - - m_bExternalDevTools = command_line->HasSwitch(cefclient::kExternalDevTools); -} - -ClientHandler::~ClientHandler() { -} - -bool ClientHandler::OnProcessMessageReceived( - CefRefPtr browser, - CefProcessId source_process, - CefRefPtr message) { - // Check for messages from the client renderer. - std::string message_name = message->GetName(); - if (message_name == client_renderer::kFocusedNodeChangedMessage) { - // A message is sent from ClientRenderDelegate to tell us whether the - // currently focused DOM node is editable. Use of |m_bFocusOnEditableField| - // is redundant with CefKeyEvent.focus_on_editable_field in OnPreKeyEvent - // but is useful for demonstration purposes. - m_bFocusOnEditableField = message->GetArgumentList()->GetBool(0); - return true; - } - - bool handled = false; - - // Execute delegate callbacks. - ProcessMessageDelegateSet::iterator it = process_message_delegates_.begin(); - for (; it != process_message_delegates_.end() && !handled; ++it) { - handled = (*it)->OnProcessMessageReceived(this, browser, source_process, - message); - } - - return handled; -} - -void ClientHandler::OnBeforeContextMenu( - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr params, - CefRefPtr model) { - if ((params->GetTypeFlags() & (CM_TYPEFLAG_PAGE | CM_TYPEFLAG_FRAME)) != 0) { - // Add a separator if the menu already has items. - if (model->GetCount() > 0) - model->AddSeparator(); - - // Add a "Show DevTools" item to all context menus. - model->AddItem(CLIENT_ID_SHOW_DEVTOOLS, "&Show DevTools"); - - CefString devtools_url = browser->GetHost()->GetDevToolsURL(true); - if (devtools_url.empty() || - m_OpenDevToolsURLs.find(devtools_url) != m_OpenDevToolsURLs.end()) { - // Disable the menu option if DevTools isn't enabled or if a window is - // already open for the current URL. - model->SetEnabled(CLIENT_ID_SHOW_DEVTOOLS, false); - } - - // Test context menu features. - BuildTestMenu(model); - } -} - -bool ClientHandler::OnContextMenuCommand( - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr params, - int command_id, - EventFlags event_flags) { - switch (command_id) { - case CLIENT_ID_SHOW_DEVTOOLS: - ShowDevTools(browser); - return true; - default: // Allow default handling, if any. - return ExecuteTestMenu(command_id); - } -} - -void ClientHandler::OnLoadingStateChange(CefRefPtr browser, - bool isLoading, - bool canGoBack, - bool canGoForward) { - REQUIRE_UI_THREAD(); - SetLoading(isLoading); - SetNavState(canGoBack, canGoForward); -} - -bool ClientHandler::OnConsoleMessage(CefRefPtr browser, - const CefString& message, - const CefString& source, - int line) { - REQUIRE_UI_THREAD(); - - bool first_message; - std::string logFile; - - { - AutoLock lock_scope(this); - - first_message = m_LogFile.empty(); - if (first_message) { - std::stringstream ss; - ss << AppGetWorkingDirectory(); -#if defined(OS_WIN) - ss << "\\"; -#else - ss << "/"; -#endif - ss << "console.log"; - m_LogFile = ss.str(); - } - logFile = m_LogFile; - } - - FILE* file = fopen(logFile.c_str(), "a"); - if (file) { - std::stringstream ss; - ss << "Message: " << std::string(message) << "\r\nSource: " << - std::string(source) << "\r\nLine: " << line << - "\r\n-----------------------\r\n"; - fputs(ss.str().c_str(), file); - fclose(file); - - if (first_message) - SendNotification(NOTIFY_CONSOLE_MESSAGE); - } - - return false; -} - -void ClientHandler::OnBeforeDownload( - CefRefPtr browser, - CefRefPtr download_item, - const CefString& suggested_name, - CefRefPtr callback) { - REQUIRE_UI_THREAD(); - // Continue the download and show the "Save As" dialog. - callback->Continue(GetDownloadPath(suggested_name), true); -} - -void ClientHandler::OnDownloadUpdated( - CefRefPtr browser, - CefRefPtr download_item, - CefRefPtr callback) { - REQUIRE_UI_THREAD(); - if (download_item->IsComplete()) { - SetLastDownloadFile(download_item->GetFullPath()); - SendNotification(NOTIFY_DOWNLOAD_COMPLETE); - } -} - -void ClientHandler::OnRequestGeolocationPermission( - CefRefPtr browser, - const CefString& requesting_url, - int request_id, - CefRefPtr callback) { - // Allow geolocation access from all websites. - callback->Continue(true); -} - -bool ClientHandler::OnPreKeyEvent(CefRefPtr browser, - const CefKeyEvent& event, - CefEventHandle os_event, - bool* is_keyboard_shortcut) { - ASSERT(m_bFocusOnEditableField == event.focus_on_editable_field); - if (!event.focus_on_editable_field && event.windows_key_code == 0x20) { - // Special handling for the space character when an input element does not - // have focus. Handling the event in OnPreKeyEvent() keeps the event from - // being processed in the renderer. If we instead handled the event in the - // OnKeyEvent() method the space key would cause the window to scroll in - // addition to showing the alert box. - if (event.type == KEYEVENT_RAWKEYDOWN) { - browser->GetMainFrame()->ExecuteJavaScript( - "alert('You pressed the space bar!');", "", 0); - } - return true; - } - - return false; -} - -void ClientHandler::OnAfterCreated(CefRefPtr browser) { - REQUIRE_UI_THREAD(); - - AutoLock lock_scope(this); - if (!m_Browser.get()) { - // We need to keep the main child window, but not popup windows - m_Browser = browser; - m_BrowserId = browser->GetIdentifier(); - } -} - -bool ClientHandler::DoClose(CefRefPtr browser) { - REQUIRE_UI_THREAD(); - - if (m_BrowserId == browser->GetIdentifier()) { - // Since the main window contains the browser window, we need to close - // the parent window instead of the browser window. - CloseMainWindow(); - - // Return true here so that we can skip closing the browser window - // in this pass. (It will be destroyed due to the call to close - // the parent above.) - return true; - } - - // A popup browser window is not contained in another window, so we can let - // these windows close by themselves. - return false; -} - -void ClientHandler::OnBeforeClose(CefRefPtr browser) { - REQUIRE_UI_THREAD(); - - if (m_BrowserId == browser->GetIdentifier()) { - // Free the browser pointer so that the browser can be destroyed - m_Browser = NULL; - } else if (browser->IsPopup()) { - // Remove the record for DevTools popup windows. - std::set::iterator it = - m_OpenDevToolsURLs.find(browser->GetMainFrame()->GetURL()); - if (it != m_OpenDevToolsURLs.end()) - m_OpenDevToolsURLs.erase(it); - } -} - -void ClientHandler::OnLoadStart(CefRefPtr browser, - CefRefPtr frame) { - REQUIRE_UI_THREAD(); - - if (m_BrowserId == browser->GetIdentifier() && frame->IsMain()) { - // We've just started loading a page - SetLoading(true); - } -} - -void ClientHandler::OnLoadEnd(CefRefPtr browser, - CefRefPtr frame, - int httpStatusCode) { - REQUIRE_UI_THREAD(); - - if (m_BrowserId == browser->GetIdentifier() && frame->IsMain()) { - // We've just finished loading a page - SetLoading(false); - - // Continue the DOM test. - if (frame->GetURL() == dom_test::kTestUrl) - dom_test::OnLoadEnd(browser); - } -} - -void ClientHandler::OnLoadError(CefRefPtr browser, - CefRefPtr frame, - ErrorCode errorCode, - const CefString& errorText, - const CefString& failedUrl) { - REQUIRE_UI_THREAD(); - - // Don't display an error for downloaded files. - if (errorCode == ERR_ABORTED) - return; - - // Don't display an error for external protocols that we allow the OS to - // handle. See OnProtocolExecution(). - if (errorCode == ERR_UNKNOWN_URL_SCHEME) { - std::string urlStr = frame->GetURL(); - if (urlStr.find("spotify:") == 0) - return; - } - - // Display a load error message. - std::stringstream ss; - ss << "

Failed to load URL " << std::string(failedUrl) << - " with error " << std::string(errorText) << " (" << errorCode << - ").

"; - frame->LoadString(ss.str(), failedUrl); -} - -void ClientHandler::OnRenderProcessTerminated(CefRefPtr browser, - TerminationStatus status) { - // Load the startup URL if that's not the website that we terminated on. - CefRefPtr frame = browser->GetMainFrame(); - std::string url = frame->GetURL(); - std::transform(url.begin(), url.end(), url.begin(), tolower); - - std::string startupURL = GetStartupURL(); - if (url.find(startupURL) != 0) - frame->LoadURL(startupURL); -} - -CefRefPtr ClientHandler::GetResourceHandler( - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr request) { - std::string url = request->GetURL(); - if (url == "http://tests/request") { - // Show the request contents - std::string dump; - DumpRequestContents(request, dump); - CefRefPtr stream = - CefStreamReader::CreateForData( - static_cast(const_cast(dump.c_str())), - dump.size()); - ASSERT(stream.get()); - return new CefStreamResourceHandler("text/plain", stream); - } else if (url == "http://tests/dialogs") { - // Show the dialogs contents - CefRefPtr stream = - GetBinaryResourceReader("dialogs.html"); - ASSERT(stream.get()); - return new CefStreamResourceHandler("text/html", stream); - } else if (url == dom_test::kTestUrl) { - // Show the domaccess contents - CefRefPtr stream = - GetBinaryResourceReader("domaccess.html"); - ASSERT(stream.get()); - return new CefStreamResourceHandler("text/html", stream); - } else if (url == "http://tests/localstorage") { - // Show the localstorage contents - CefRefPtr stream = - GetBinaryResourceReader("localstorage.html"); - ASSERT(stream.get()); - return new CefStreamResourceHandler("text/html", stream); - } else if (url == "http://tests/xmlhttprequest") { - // Show the xmlhttprequest contents - CefRefPtr stream = - GetBinaryResourceReader("xmlhttprequest.html"); - ASSERT(stream.get()); - return new CefStreamResourceHandler("text/html", stream); - } - - CefRefPtr handler; - - // Execute delegate callbacks. - RequestDelegateSet::iterator it = request_delegates_.begin(); - for (; it != request_delegates_.end() && !handler.get(); ++it) - handler = (*it)->GetResourceHandler(this, browser, frame, request); - - return handler; -} - -void ClientHandler::OnProtocolExecution(CefRefPtr browser, - const CefString& url, - bool& allow_os_execution) { - std::string urlStr = url; - - // Allow OS execution of Spotify URIs. - if (urlStr.find("spotify:") == 0) - allow_os_execution = true; -} - -void ClientHandler::SetMainHwnd(CefWindowHandle hwnd) { - AutoLock lock_scope(this); - m_MainHwnd = hwnd; -} - -void ClientHandler::SetEditHwnd(CefWindowHandle hwnd) { - AutoLock lock_scope(this); - m_EditHwnd = hwnd; -} - -void ClientHandler::SetButtonHwnds(CefWindowHandle backHwnd, - CefWindowHandle forwardHwnd, - CefWindowHandle reloadHwnd, - CefWindowHandle stopHwnd) { - AutoLock lock_scope(this); - m_BackHwnd = backHwnd; - m_ForwardHwnd = forwardHwnd; - m_ReloadHwnd = reloadHwnd; - m_StopHwnd = stopHwnd; -} - -std::string ClientHandler::GetLogFile() { - AutoLock lock_scope(this); - return m_LogFile; -} - -void ClientHandler::SetLastDownloadFile(const std::string& fileName) { - AutoLock lock_scope(this); - m_LastDownloadFile = fileName; -} - -std::string ClientHandler::GetLastDownloadFile() { - AutoLock lock_scope(this); - return m_LastDownloadFile; -} - -void ClientHandler::ShowDevTools(CefRefPtr browser) { - std::string devtools_url = browser->GetHost()->GetDevToolsURL(true); - if (!devtools_url.empty()) { - if (m_bExternalDevTools) { - // Open DevTools in an external browser window. - LaunchExternalBrowser(devtools_url); - } else if (m_OpenDevToolsURLs.find(devtools_url) == - m_OpenDevToolsURLs.end()) { - // Open DevTools in a popup window. - m_OpenDevToolsURLs.insert(devtools_url); - browser->GetMainFrame()->ExecuteJavaScript( - "window.open('" + devtools_url + "');", "about:blank", 0); - } - } -} - -// static -void ClientHandler::LaunchExternalBrowser(const std::string& url) { - if (CefCurrentlyOn(TID_PROCESS_LAUNCHER)) { - // Retrieve the current executable path. - CefString file_exe; - if (!CefGetPath(PK_FILE_EXE, file_exe)) - return; - - // Create the command line. - CefRefPtr command_line = - CefCommandLine::CreateCommandLine(); - command_line->SetProgram(file_exe); - command_line->AppendSwitchWithValue(cefclient::kUrl, url); - - // Launch the process. - CefLaunchProcess(command_line); - } else { - // Execute on the PROCESS_LAUNCHER thread. - CefPostTask(TID_PROCESS_LAUNCHER, - NewCefRunnableFunction(&ClientHandler::LaunchExternalBrowser, url)); - } -} - -// static -void ClientHandler::CreateProcessMessageDelegates( - ProcessMessageDelegateSet& delegates) { - // Create the binding test delegates. - binding_test::CreateProcessMessageDelegates(delegates); -} - -// static -void ClientHandler::CreateRequestDelegates(RequestDelegateSet& delegates) { - // Create the binding test delegates. - binding_test::CreateRequestDelegates(delegates); -} - -void ClientHandler::BuildTestMenu(CefRefPtr model) { - if (model->GetCount() > 0) - model->AddSeparator(); - - // Build the sub menu. - CefRefPtr submenu = - model->AddSubMenu(CLIENT_ID_TESTMENU_SUBMENU, "Context Menu Test"); - submenu->AddCheckItem(CLIENT_ID_TESTMENU_CHECKITEM, "Check Item"); - submenu->AddRadioItem(CLIENT_ID_TESTMENU_RADIOITEM1, "Radio Item 1", 0); - submenu->AddRadioItem(CLIENT_ID_TESTMENU_RADIOITEM2, "Radio Item 2", 0); - submenu->AddRadioItem(CLIENT_ID_TESTMENU_RADIOITEM3, "Radio Item 3", 0); - - // Check the check item. - if (m_TestMenuState.check_item) - submenu->SetChecked(CLIENT_ID_TESTMENU_CHECKITEM, true); - - // Check the selected radio item. - submenu->SetChecked( - CLIENT_ID_TESTMENU_RADIOITEM1 + m_TestMenuState.radio_item, true); -} - -bool ClientHandler::ExecuteTestMenu(int command_id) { - if (command_id == CLIENT_ID_TESTMENU_CHECKITEM) { - // Toggle the check item. - m_TestMenuState.check_item ^= 1; - return true; - } else if (command_id >= CLIENT_ID_TESTMENU_RADIOITEM1 && - command_id <= CLIENT_ID_TESTMENU_RADIOITEM3) { - // Store the selected radio item. - m_TestMenuState.radio_item = (command_id - CLIENT_ID_TESTMENU_RADIOITEM1); - return true; - } - - // Allow default handling to proceed. - return false; -} diff --git a/atom/cefclient/client_handler.h b/atom/cefclient/client_handler.h deleted file mode 100644 index 52c04e618..000000000 --- a/atom/cefclient/client_handler.h +++ /dev/null @@ -1,283 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_CLIENT_HANDLER_H_ -#define CEF_TESTS_CEFCLIENT_CLIENT_HANDLER_H_ -#pragma once - -#include -#include -#include -#include "include/cef_client.h" -#include "cefclient/util.h" - - -// Define this value to redirect all popup URLs to the main application browser -// window. -// #define TEST_REDIRECT_POPUP_URLS - - -// ClientHandler implementation. -class ClientHandler : public CefClient, - public CefContextMenuHandler, - public CefDisplayHandler, - public CefDownloadHandler, - public CefGeolocationHandler, - public CefKeyboardHandler, - public CefLifeSpanHandler, - public CefLoadHandler, - public CefRequestHandler { - public: - // Interface for process message delegates. Do not perform work in the - // RenderDelegate constructor. - class ProcessMessageDelegate : public virtual CefBase { - public: - // Called when a process message is received. Return true if the message was - // handled and should not be passed on to other handlers. - // ProcessMessageDelegates should check for unique message names to avoid - // interfering with each other. - virtual bool OnProcessMessageReceived( - CefRefPtr handler, - CefRefPtr browser, - CefProcessId source_process, - CefRefPtr message) { - return false; - } - }; - - typedef std::set > - ProcessMessageDelegateSet; - - // Interface for request handler delegates. Do not perform work in the - // RequestDelegate constructor. - class RequestDelegate : public virtual CefBase { - public: - // Called to retrieve a resource handler. - virtual CefRefPtr GetResourceHandler( - CefRefPtr handler, - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr request) { - return NULL; - } - }; - - typedef std::set > RequestDelegateSet; - - ClientHandler(); - virtual ~ClientHandler(); - - // CefClient methods - virtual CefRefPtr GetContextMenuHandler() OVERRIDE { - return this; - } - virtual CefRefPtr GetDisplayHandler() OVERRIDE { - return this; - } - virtual CefRefPtr GetDownloadHandler() OVERRIDE { - return this; - } - virtual CefRefPtr GetGeolocationHandler() OVERRIDE { - return this; - } - virtual CefRefPtr GetKeyboardHandler() OVERRIDE { - return this; - } - virtual CefRefPtr GetLifeSpanHandler() OVERRIDE { - return this; - } - virtual CefRefPtr GetLoadHandler() OVERRIDE { - return this; - } - virtual CefRefPtr GetRequestHandler() OVERRIDE { - return this; - } - virtual bool OnProcessMessageReceived(CefRefPtr browser, - CefProcessId source_process, - CefRefPtr message) - OVERRIDE; - - // CefContextMenuHandler methods - virtual void OnBeforeContextMenu(CefRefPtr browser, - CefRefPtr frame, - CefRefPtr params, - CefRefPtr model) OVERRIDE; - virtual bool OnContextMenuCommand(CefRefPtr browser, - CefRefPtr frame, - CefRefPtr params, - int command_id, - EventFlags event_flags) OVERRIDE; - - // CefDisplayHandler methods - virtual void OnLoadingStateChange(CefRefPtr browser, - bool isLoading, - bool canGoBack, - bool canGoForward) OVERRIDE; - virtual void OnAddressChange(CefRefPtr browser, - CefRefPtr frame, - const CefString& url) OVERRIDE; - virtual void OnTitleChange(CefRefPtr browser, - const CefString& title) OVERRIDE; - virtual bool OnConsoleMessage(CefRefPtr browser, - const CefString& message, - const CefString& source, - int line) OVERRIDE; - - // CefDownloadHandler methods - virtual void OnBeforeDownload( - CefRefPtr browser, - CefRefPtr download_item, - const CefString& suggested_name, - CefRefPtr callback) OVERRIDE; - virtual void OnDownloadUpdated( - CefRefPtr browser, - CefRefPtr download_item, - CefRefPtr callback) OVERRIDE; - - // CefGeolocationHandler methods - virtual void OnRequestGeolocationPermission( - CefRefPtr browser, - const CefString& requesting_url, - int request_id, - CefRefPtr callback) OVERRIDE; - - // CefKeyboardHandler methods - virtual bool OnPreKeyEvent(CefRefPtr browser, - const CefKeyEvent& event, - CefEventHandle os_event, - bool* is_keyboard_shortcut) OVERRIDE; - - // CefLifeSpanHandler methods - virtual void OnAfterCreated(CefRefPtr browser) OVERRIDE; - virtual bool DoClose(CefRefPtr browser) OVERRIDE; - virtual void OnBeforeClose(CefRefPtr browser) OVERRIDE; - - // CefLoadHandler methods - virtual void OnLoadStart(CefRefPtr browser, - CefRefPtr frame) OVERRIDE; - virtual void OnLoadEnd(CefRefPtr browser, - CefRefPtr frame, - int httpStatusCode) OVERRIDE; - virtual void OnLoadError(CefRefPtr browser, - CefRefPtr frame, - ErrorCode errorCode, - const CefString& errorText, - const CefString& failedUrl) OVERRIDE; - virtual void OnRenderProcessTerminated(CefRefPtr browser, - TerminationStatus status) OVERRIDE; - - // CefRequestHandler methods - virtual CefRefPtr GetResourceHandler( - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr request) OVERRIDE; - virtual void OnProtocolExecution(CefRefPtr browser, - const CefString& url, - bool& allow_os_execution) OVERRIDE; - - void SetMainHwnd(CefWindowHandle hwnd); - CefWindowHandle GetMainHwnd() { return m_MainHwnd; } - void SetEditHwnd(CefWindowHandle hwnd); - void SetButtonHwnds(CefWindowHandle backHwnd, - CefWindowHandle forwardHwnd, - CefWindowHandle reloadHwnd, - CefWindowHandle stopHwnd); - - CefRefPtr GetBrowser() { return m_Browser; } - int GetBrowserId() { return m_BrowserId; } - - std::string GetLogFile(); - - void SetLastDownloadFile(const std::string& fileName); - std::string GetLastDownloadFile(); - - // Send a notification to the application. Notifications should not block the - // caller. - enum NotificationType { - NOTIFY_CONSOLE_MESSAGE, - NOTIFY_DOWNLOAD_COMPLETE, - NOTIFY_DOWNLOAD_ERROR, - }; - void SendNotification(NotificationType type); - void CloseMainWindow(); - - void ShowDevTools(CefRefPtr browser); - - // Returns the startup URL. - std::string GetStartupURL() { return m_StartupURL; } - - // Create an external browser window that loads the specified URL. - static void LaunchExternalBrowser(const std::string& url); - - protected: - void SetLoading(bool isLoading); - void SetNavState(bool canGoBack, bool canGoForward); - - // Create all of ProcessMessageDelegate objects. - static void CreateProcessMessageDelegates( - ProcessMessageDelegateSet& delegates); - - // Create all of RequestDelegateSet objects. - static void CreateRequestDelegates(RequestDelegateSet& delegates); - - // Test context menu creation. - void BuildTestMenu(CefRefPtr model); - bool ExecuteTestMenu(int command_id); - struct TestMenuState { - TestMenuState() : check_item(true), radio_item(0) {} - bool check_item; - int radio_item; - } m_TestMenuState; - - // Returns the full download path for the specified file, or an empty path to - // use the default temp directory. - std::string GetDownloadPath(const std::string& file_name); - - // The child browser window - CefRefPtr m_Browser; - - // The main frame window handle - CefWindowHandle m_MainHwnd; - - // The child browser id - int m_BrowserId; - - // The edit window handle - CefWindowHandle m_EditHwnd; - - // The button window handles - CefWindowHandle m_BackHwnd; - CefWindowHandle m_ForwardHwnd; - CefWindowHandle m_StopHwnd; - CefWindowHandle m_ReloadHwnd; - - // Support for logging. - std::string m_LogFile; - - // Support for downloading files. - std::string m_LastDownloadFile; - - // True if an editable field currently has focus. - bool m_bFocusOnEditableField; - - // Registered delegates. - ProcessMessageDelegateSet process_message_delegates_; - RequestDelegateSet request_delegates_; - - // If true DevTools will be opened in an external browser window. - bool m_bExternalDevTools; - - // List of open DevTools URLs if not using an external browser window. - std::set m_OpenDevToolsURLs; - - // The startup URL. - std::string m_StartupURL; - - // Include the default reference counting implementation. - IMPLEMENT_REFCOUNTING(ClientHandler); - // Include the default locking implementation. - IMPLEMENT_LOCKING(ClientHandler); -}; - -#endif // CEF_TESTS_CEFCLIENT_CLIENT_HANDLER_H_ diff --git a/atom/cefclient/client_handler_gtk.cpp b/atom/cefclient/client_handler_gtk.cpp deleted file mode 100644 index a35b04e61..000000000 --- a/atom/cefclient/client_handler_gtk.cpp +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include -#include -#include "cefclient/client_handler.h" -#include "include/cef_browser.h" -#include "include/cef_frame.h" - -void ClientHandler::OnAddressChange(CefRefPtr browser, - CefRefPtr frame, - const CefString& url) { - REQUIRE_UI_THREAD(); - - if (m_BrowserId == browser->GetIdentifier() && frame->IsMain()) { - // Set the edit window text - std::string urlStr(url); - gtk_entry_set_text(GTK_ENTRY(m_EditHwnd), urlStr.c_str()); - } -} - -void ClientHandler::OnTitleChange(CefRefPtr browser, - const CefString& title) { - REQUIRE_UI_THREAD(); - - GtkWidget* window = gtk_widget_get_ancestor( - GTK_WIDGET(browser->GetHost()->GetWindowHandle()), - GTK_TYPE_WINDOW); - std::string titleStr(title); - gtk_window_set_title(GTK_WINDOW(window), titleStr.c_str()); -} - -void ClientHandler::SendNotification(NotificationType type) { - // TODO(port): Implement this method. -} - -void ClientHandler::SetLoading(bool isLoading) { - if (isLoading) - gtk_widget_set_sensitive(GTK_WIDGET(m_StopHwnd), true); - else - gtk_widget_set_sensitive(GTK_WIDGET(m_StopHwnd), false); -} - -void ClientHandler::SetNavState(bool canGoBack, bool canGoForward) { - if (canGoBack) - gtk_widget_set_sensitive(GTK_WIDGET(m_BackHwnd), true); - else - gtk_widget_set_sensitive(GTK_WIDGET(m_BackHwnd), false); - - if (canGoForward) - gtk_widget_set_sensitive(GTK_WIDGET(m_ForwardHwnd), true); - else - gtk_widget_set_sensitive(GTK_WIDGET(m_ForwardHwnd), false); -} - -void ClientHandler::CloseMainWindow() { - // TODO(port): Close main window. -} - -std::string ClientHandler::GetDownloadPath(const std::string& file_name) { - return std::string(); -} diff --git a/atom/cefclient/client_handler_mac.mm b/atom/cefclient/client_handler_mac.mm deleted file mode 100644 index fba1ddd2c..000000000 --- a/atom/cefclient/client_handler_mac.mm +++ /dev/null @@ -1,74 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#import - -#include "cefclient/client_handler.h" -#include "include/cef_browser.h" -#include "include/cef_frame.h" -#include "cefclient/cefclient.h" - -void ClientHandler::OnAddressChange(CefRefPtr browser, - CefRefPtr frame, - const CefString& url) { - REQUIRE_UI_THREAD(); - - if (m_BrowserId == browser->GetIdentifier() && frame->IsMain()) { - // Set the edit window text - NSTextField* textField = (NSTextField*)m_EditHwnd; - std::string urlStr(url); - NSString* str = [NSString stringWithUTF8String:urlStr.c_str()]; - [textField setStringValue:str]; - } -} - -void ClientHandler::OnTitleChange(CefRefPtr browser, - const CefString& title) { - REQUIRE_UI_THREAD(); - - // Set the frame window title bar - NSView* view = (NSView*)browser->GetHost()->GetWindowHandle(); - NSWindow* window = [view window]; - std::string titleStr(title); - NSString* str = [NSString stringWithUTF8String:titleStr.c_str()]; - [window setTitle:str]; -} - -void ClientHandler::SendNotification(NotificationType type) { - SEL sel = nil; - switch(type) { - case NOTIFY_CONSOLE_MESSAGE: - sel = @selector(notifyConsoleMessage:); - break; - case NOTIFY_DOWNLOAD_COMPLETE: - sel = @selector(notifyDownloadComplete:); - break; - case NOTIFY_DOWNLOAD_ERROR: - sel = @selector(notifyDownloadError:); - break; - } - - if (sel == nil) - return; - - NSWindow* window = [AppGetMainHwnd() window]; - NSObject* delegate = [window delegate]; - [delegate performSelectorOnMainThread:sel withObject:nil waitUntilDone:NO]; -} - -void ClientHandler::SetLoading(bool isLoading) { - // TODO(port): Change button status. -} - -void ClientHandler::SetNavState(bool canGoBack, bool canGoForward) { - // TODO(port): Change button status. -} - -void ClientHandler::CloseMainWindow() { - // TODO(port): Close window -} - -std::string ClientHandler::GetDownloadPath(const std::string& file_name) { - return std::string(); -} diff --git a/atom/cefclient/client_handler_win.cpp b/atom/cefclient/client_handler_win.cpp deleted file mode 100644 index fe9944255..000000000 --- a/atom/cefclient/client_handler_win.cpp +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/client_handler.h" - -#include -#include -#include - -#include "include/cef_browser.h" -#include "include/cef_frame.h" -#include "cefclient/resource.h" - -void ClientHandler::OnAddressChange(CefRefPtr browser, - CefRefPtr frame, - const CefString& url) { - REQUIRE_UI_THREAD(); - - if (m_BrowserId == browser->GetIdentifier() && frame->IsMain()) { - // Set the edit window text - SetWindowText(m_EditHwnd, std::wstring(url).c_str()); - } -} - -void ClientHandler::OnTitleChange(CefRefPtr browser, - const CefString& title) { - REQUIRE_UI_THREAD(); - - // Set the frame window title bar - CefWindowHandle hwnd = browser->GetHost()->GetWindowHandle(); - if (m_BrowserId == browser->GetIdentifier()) { - // The frame window will be the parent of the browser window - hwnd = GetParent(hwnd); - } - SetWindowText(hwnd, std::wstring(title).c_str()); -} - -void ClientHandler::SendNotification(NotificationType type) { - UINT id; - switch (type) { - case NOTIFY_CONSOLE_MESSAGE: - id = ID_WARN_CONSOLEMESSAGE; - break; - case NOTIFY_DOWNLOAD_COMPLETE: - id = ID_WARN_DOWNLOADCOMPLETE; - break; - case NOTIFY_DOWNLOAD_ERROR: - id = ID_WARN_DOWNLOADERROR; - break; - default: - return; - } - PostMessage(m_MainHwnd, WM_COMMAND, id, 0); -} - -void ClientHandler::SetLoading(bool isLoading) { - ASSERT(m_EditHwnd != NULL && m_ReloadHwnd != NULL && m_StopHwnd != NULL); - EnableWindow(m_EditHwnd, TRUE); - EnableWindow(m_ReloadHwnd, !isLoading); - EnableWindow(m_StopHwnd, isLoading); -} - -void ClientHandler::SetNavState(bool canGoBack, bool canGoForward) { - ASSERT(m_BackHwnd != NULL && m_ForwardHwnd != NULL); - EnableWindow(m_BackHwnd, canGoBack); - EnableWindow(m_ForwardHwnd, canGoForward); -} - -void ClientHandler::CloseMainWindow() { - ::PostMessage(m_MainHwnd, WM_CLOSE, 0, 0); -} - -std::string ClientHandler::GetDownloadPath(const std::string& file_name) { - TCHAR szFolderPath[MAX_PATH]; - std::string path; - - // Save the file in the user's "My Documents" folder. - if (SUCCEEDED(SHGetFolderPath(NULL, CSIDL_PERSONAL | CSIDL_FLAG_CREATE, - NULL, 0, szFolderPath))) { - path = CefString(szFolderPath); - path += "\\" + file_name; - } - - return path; -} diff --git a/atom/cefclient/client_renderer.cpp b/atom/cefclient/client_renderer.cpp deleted file mode 100644 index 17b5a43f3..000000000 --- a/atom/cefclient/client_renderer.cpp +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/client_renderer.h" - -#include -#include - -#include "include/cef_dom.h" -#include "cefclient/util.h" - -namespace client_renderer { - -const char kFocusedNodeChangedMessage[] = "ClientRenderer.FocusedNodeChanged"; - -namespace { - -class ClientRenderDelegate : public ClientApp::RenderDelegate { - public: - ClientRenderDelegate() - : last_node_is_editable_(false) { - } - - virtual void OnFocusedNodeChanged(CefRefPtr app, - CefRefPtr browser, - CefRefPtr frame, - CefRefPtr node) OVERRIDE { - bool is_editable = (node.get() && node->IsEditable()); - if (is_editable != last_node_is_editable_) { - // Notify the browser of the change in focused element type. - last_node_is_editable_ = is_editable; - CefRefPtr message = - CefProcessMessage::Create(kFocusedNodeChangedMessage); - message->GetArgumentList()->SetBool(0, is_editable); - browser->SendProcessMessage(PID_BROWSER, message); - } - } - - private: - bool last_node_is_editable_; - - IMPLEMENT_REFCOUNTING(ClientRenderDelegate); -}; - -} // namespace - -void CreateRenderDelegates(ClientApp::RenderDelegateSet& delegates) { - delegates.insert(new ClientRenderDelegate); -} - -} // namespace client_renderer diff --git a/atom/cefclient/client_renderer.h b/atom/cefclient/client_renderer.h deleted file mode 100644 index 37b08408d..000000000 --- a/atom/cefclient/client_renderer.h +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_CLIENT_RENDERER_H_ -#define CEF_TESTS_CEFCLIENT_CLIENT_RENDERER_H_ -#pragma once - -#include "include/cef_base.h" -#include "cefclient/client_app.h" - -namespace client_renderer { - -// Message sent when the focused node changes. -extern const char kFocusedNodeChangedMessage[]; - -// Create the render delegate. -void CreateRenderDelegates(ClientApp::RenderDelegateSet& delegates); - -} // namespace client_renderer - -#endif // CEF_TESTS_CEFCLIENT_CLIENT_RENDERER_H_ diff --git a/atom/cefclient/client_switches.cpp b/atom/cefclient/client_switches.cpp deleted file mode 100644 index a65f179f2..000000000 --- a/atom/cefclient/client_switches.cpp +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -// This file is shared by cefclient and cef_unittests so don't include using -// a qualified path. -#include "client_switches.h" // NOLINT(build/include) - -namespace cefclient { - -const char kUrl[] = "url"; -const char kExternalDevTools[] = "external-devtools"; - -// CefSettings attributes. -const char kMultiThreadedMessageLoop[] = "multi-threaded-message-loop"; -const char kCachePath[] = "cache-path"; - -// CefBrowserSettings attributes. -const char kRemoteFontsDisabled[] = "remote-fonts-disabled"; -const char kDefaultEncoding[] = "default-encoding"; -const char kEncodingDetectorEnabled[] = "encoding-detector-enabled"; -const char kJavascriptDisabled[] = "javascript-disabled"; -const char kJavascriptOpenWindowsDisallowed[] = - "javascript-open-windows-disallowed"; -const char kJavascriptCloseWindowsDisallowed[] = - "javascript-close-windows-disallowed"; -const char kJavascriptAccessClipboardDisallowed[] = - "javascript-access-clipboard-disallowed"; -const char kDomPasteDisabled[] = "dom-paste-disabled"; -const char kCaretBrowsingDisabled[] = "caret-browsing-enabled"; -const char kJavaDisabled[] = "java-disabled"; -const char kPluginsDisabled[] = "plugins-disabled"; -const char kUniversalAccessFromFileUrlsAllowed[] = - "universal-access-from-file-urls-allowed"; -const char kFileAccessFromFileUrlsAllowed[] = - "file-access-from-file-urls-allowed"; -const char kWebSecurityDisabled[] = "web-security-disabled"; -const char kXssAuditorEnabled[] = "xss-auditor-enabled"; -const char kImageLoadingDisabled[] = "image-load-disabled"; -const char kShrinkStandaloneImagesToFit[] = "shrink-standalone-images-to-fit"; -const char kSiteSpecificQuirksDisabled[] = "site-specific-quirks-disabled"; -const char kTextAreaResizeDisabled[] = "text-area-resize-disabled"; -const char kPageCacheDisabled[] = "page-cache-disabled"; -const char kTabToLinksDisabled[] = "tab-to-links-disabled"; -const char kHyperlinkAuditingDisabled[] = "hyperlink-auditing-disabled"; -const char kUserStyleSheetEnabled[] = "user-style-sheet-enabled"; -const char kUserStyleSheetLocation[] = "user-style-sheet-location"; -const char kAuthorAndUserStylesDisabled[] = "author-and-user-styles-disabled"; -const char kLocalStorageDisabled[] = "local-storage-disabled"; -const char kDatabasesDisabled[] = "databases-disabled"; -const char kApplicationCacheDisabled[] = "application-cache-disabled"; -const char kWebglDisabled[] = "webgl-disabled"; -const char kAcceleratedCompositingDisabled[] = - "accelerated-compositing-disabled"; -const char kAcceleratedLayersDisabled[] = "accelerated-layers-disabled"; -const char kAcceleratedVideoDisabled[] = "accelerated-video-disabled"; -const char kAcceledated2dCanvasDisabled[] = "accelerated-2d-canvas-disabled"; -const char kAcceleratedPaintingEnabled[] = "accelerated-painting-enabled"; -const char kAcceleratedFiltersEnabled[] = "accelerated-filters-enabled"; -const char kAcceleratedPluginsDisabled[] = "accelerated-plugins-disabled"; -const char kDeveloperToolsDisabled[] = "developer-tools-disabled"; -const char kFullscreenEnabled[] = "fullscreen-enabled"; - -// Other attributes. -const char kProxyType[] = "proxy-type"; -const char kProxyType_Direct[] = "direct"; -const char kProxyType_Named[] = "named"; -const char kProxyType_Pac[] = "pac"; -const char kProxyConfig[] = "proxy-config"; - -} // namespace cefclient diff --git a/atom/cefclient/client_switches.h b/atom/cefclient/client_switches.h deleted file mode 100644 index 8a9751721..000000000 --- a/atom/cefclient/client_switches.h +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -// Defines all of the command line switches used by cefclient. - -#ifndef CEF_TESTS_CEFCLIENT_CEFCLIENT_SWITCHES_H_ -#define CEF_TESTS_CEFCLIENT_CEFCLIENT_SWITCHES_H_ -#pragma once - -namespace cefclient { - -extern const char kUrl[]; -extern const char kExternalDevTools[]; - -// CefSettings attributes. -extern const char kMultiThreadedMessageLoop[]; -extern const char kCachePath[]; - -// CefBrowserSettings attributes. -extern const char kRemoteFontsDisabled[]; -extern const char kDefaultEncoding[]; -extern const char kEncodingDetectorEnabled[]; -extern const char kJavascriptDisabled[]; -extern const char kJavascriptOpenWindowsDisallowed[]; -extern const char kJavascriptCloseWindowsDisallowed[]; -extern const char kJavascriptAccessClipboardDisallowed[]; -extern const char kDomPasteDisabled[]; -extern const char kCaretBrowsingDisabled[]; -extern const char kJavaDisabled[]; -extern const char kPluginsDisabled[]; -extern const char kUniversalAccessFromFileUrlsAllowed[]; -extern const char kFileAccessFromFileUrlsAllowed[]; -extern const char kWebSecurityDisabled[]; -extern const char kXssAuditorEnabled[]; -extern const char kImageLoadingDisabled[]; -extern const char kShrinkStandaloneImagesToFit[]; -extern const char kSiteSpecificQuirksDisabled[]; -extern const char kTextAreaResizeDisabled[]; -extern const char kPageCacheDisabled[]; -extern const char kTabToLinksDisabled[]; -extern const char kHyperlinkAuditingDisabled[]; -extern const char kUserStyleSheetEnabled[]; -extern const char kUserStyleSheetLocation[]; -extern const char kAuthorAndUserStylesDisabled[]; -extern const char kLocalStorageDisabled[]; -extern const char kDatabasesDisabled[]; -extern const char kApplicationCacheDisabled[]; -extern const char kWebglDisabled[]; -extern const char kAcceleratedCompositingDisabled[]; -extern const char kAcceleratedLayersDisabled[]; -extern const char kAcceleratedVideoDisabled[]; -extern const char kAcceledated2dCanvasDisabled[]; -extern const char kAcceleratedPaintingEnabled[]; -extern const char kAcceleratedFiltersEnabled[]; -extern const char kAcceleratedPluginsDisabled[]; -extern const char kDeveloperToolsDisabled[]; -extern const char kFullscreenEnabled[]; - -// Other attributes. -extern const char kProxyType[]; -extern const char kProxyType_Direct[]; -extern const char kProxyType_Named[]; -extern const char kProxyType_Pac[]; -extern const char kProxyConfig[]; - -} // namespace cefclient - -#endif // CEF_TESTS_CEFCLIENT_CEFCLIENT_SWITCHES_H_ diff --git a/atom/cefclient/dom_test.cpp b/atom/cefclient/dom_test.cpp deleted file mode 100644 index 5002d6394..000000000 --- a/atom/cefclient/dom_test.cpp +++ /dev/null @@ -1,139 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/dom_test.h" - -#include -#include - -#include "include/cef_dom.h" -#include "cefclient/util.h" - -namespace dom_test { - -const char kTestUrl[] = "http://tests/domaccess"; - -namespace { - -const char* kMessageName = "DOMTest.Message"; - -class ClientDOMEventListener : public CefDOMEventListener { - public: - ClientDOMEventListener() { - } - - virtual void HandleEvent(CefRefPtr event) OVERRIDE { - CefRefPtr document = event->GetDocument(); - ASSERT(document.get()); - - std::stringstream ss; - - CefRefPtr button = event->GetTarget(); - ASSERT(button.get()); - std::string buttonValue = button->GetElementAttribute("value"); - ss << "You clicked the " << buttonValue.c_str() << " button. "; - - if (document->HasSelection()) { - std::string startName, endName; - - // Determine the start name by first trying to locate the "id" attribute - // and then defaulting to the tag name. - { - CefRefPtr node = document->GetSelectionStartNode(); - if (!node->IsElement()) - node = node->GetParent(); - if (node->IsElement() && node->HasElementAttribute("id")) - startName = node->GetElementAttribute("id"); - else - startName = node->GetName(); - } - - // Determine the end name by first trying to locate the "id" attribute - // and then defaulting to the tag name. - { - CefRefPtr node = document->GetSelectionEndNode(); - if (!node->IsElement()) - node = node->GetParent(); - if (node->IsElement() && node->HasElementAttribute("id")) - endName = node->GetElementAttribute("id"); - else - endName = node->GetName(); - } - - ss << "The selection is from " << - startName.c_str() << ":" << document->GetSelectionStartOffset() << - " to " << - endName.c_str() << ":" << document->GetSelectionEndOffset(); - } else { - ss << "Nothing is selected."; - } - - // Update the description. - CefRefPtr desc = document->GetElementById("description"); - ASSERT(desc.get()); - CefRefPtr text = desc->GetFirstChild(); - ASSERT(text.get()); - ASSERT(text->IsText()); - text->SetValue(ss.str()); - } - - IMPLEMENT_REFCOUNTING(ClientDOMEventListener); -}; - -class ClientDOMVisitor : public CefDOMVisitor { - public: - ClientDOMVisitor() { - } - - virtual void Visit(CefRefPtr document) OVERRIDE { - // Register a click listener for the button. - CefRefPtr button = document->GetElementById("button"); - ASSERT(button.get()); - button->AddEventListener("click", new ClientDOMEventListener(), false); - } - - IMPLEMENT_REFCOUNTING(ClientDOMVisitor); -}; - -class DOMRenderDelegate : public ClientApp::RenderDelegate { - public: - DOMRenderDelegate() { - } - - virtual bool OnProcessMessageReceived( - CefRefPtr app, - CefRefPtr browser, - CefProcessId source_process, - CefRefPtr message) OVERRIDE { - if (message->GetName() == kMessageName) { - // Visit the DOM to attach the event listener. - browser->GetMainFrame()->VisitDOM(new ClientDOMVisitor); - return true; - } - - return false; - } - - private: - IMPLEMENT_REFCOUNTING(DOMRenderDelegate); -}; - -} // namespace - -void CreateRenderDelegates(ClientApp::RenderDelegateSet& delegates) { - delegates.insert(new DOMRenderDelegate); -} - -void RunTest(CefRefPtr browser) { - // Load the test URL. - browser->GetMainFrame()->LoadURL(kTestUrl); -} - -void OnLoadEnd(CefRefPtr browser) { - // Send a message to the render process to continue the test setup. - browser->SendProcessMessage(PID_RENDERER, - CefProcessMessage::Create(kMessageName)); -} - -} // namespace dom_test diff --git a/atom/cefclient/dom_test.h b/atom/cefclient/dom_test.h deleted file mode 100644 index 0bcee1749..000000000 --- a/atom/cefclient/dom_test.h +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_DOM_TEST_H_ -#define CEF_TESTS_CEFCLIENT_DOM_TEST_H_ -#pragma once - -#include "include/cef_base.h" -#include "cefclient/client_app.h" - -namespace dom_test { - -// The DOM test URL. -extern const char kTestUrl[]; - -// Create the render delegate. -void CreateRenderDelegates(ClientApp::RenderDelegateSet& delegates); - -// Run the test. -void RunTest(CefRefPtr browser); - -// Continue the test after the page has loaded. -void OnLoadEnd(CefRefPtr browser); - -} // namespace dom_test - -#endif // CEF_TESTS_CEFCLIENT_DOM_TEST_H_ diff --git a/atom/cefclient/mac/Atom.icns b/atom/cefclient/mac/Atom.icns deleted file mode 100644 index f36742de2..000000000 Binary files a/atom/cefclient/mac/Atom.icns and /dev/null differ diff --git a/atom/cefclient/mac/English.lproj/InfoPlist.strings b/atom/cefclient/mac/English.lproj/InfoPlist.strings deleted file mode 100644 index fe2abe11b..000000000 --- a/atom/cefclient/mac/English.lproj/InfoPlist.strings +++ /dev/null @@ -1,3 +0,0 @@ -/* Localized versions of Info.plist keys */ - -NSHumanReadableCopyright = "© Chromium Embedded Framework Authors, 2010"; diff --git a/atom/cefclient/mac/English.lproj/MainMenu.xib b/atom/cefclient/mac/English.lproj/MainMenu.xib deleted file mode 100644 index 45af54898..000000000 --- a/atom/cefclient/mac/English.lproj/MainMenu.xib +++ /dev/null @@ -1,1981 +0,0 @@ - - - - 1050 - 11E2620 - 2182 - 1138.47 - 569.00 - - com.apple.InterfaceBuilder.CocoaPlugin - 2182 - - - YES - NSUserDefaultsController - NSMenu - NSMenuItem - NSCustomObject - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - YES - - NSApplication - - - FirstResponder - - - NSApplication - - - AMainMenu - - YES - - - Atom - - 1048576 - 2147483647 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - submenuAction: - - Atom - - YES - - - About Atom - - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Preferences… - , - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Services - - 1048576 - 2147483647 - - - submenuAction: - - Services - - YES - - _NSServicesMenu - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Hide Atom - h - 1048576 - 2147483647 - - - - - - Hide Others - h - 1572864 - 2147483647 - - - - - - Show All - - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Quit Atom - q - 1048576 - 2147483647 - - - - - _NSAppleMenu - - - - - File - - 1048576 - 2147483647 - - - submenuAction: - - File - - YES - - - New - n - 1048576 - 2147483647 - - - - - - Open… - o - 1048576 - 2147483647 - - - - - - Open Recent - - 1048576 - 2147483647 - - - submenuAction: - - Open Recent - - YES - - - Clear Menu - - 1048576 - 2147483647 - - - - - _NSRecentDocumentsMenu - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Close - w - 1048576 - 2147483647 - - - - - - Save - s - 1048576 - 2147483647 - - - - - - Save As… - S - 1179648 - 2147483647 - - - - - - Revert to Saved - - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Page Setup... - P - 1179648 - 2147483647 - - - - - - - Print… - p - 1048576 - 2147483647 - - - - - - - - - Edit - - 1048576 - 2147483647 - - - submenuAction: - - Edit - - YES - - - Undo - z - 1048576 - 2147483647 - - - - - - Redo - Z - 1179648 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Cut - x - 1048576 - 2147483647 - - - - - - Copy - c - 1048576 - 2147483647 - - - - - - Paste - v - 1048576 - 2147483647 - - - - - - Delete - - 1048576 - 2147483647 - - - - - - Select All - a - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Find - - 1048576 - 2147483647 - - - submenuAction: - - Find - - YES - - - Find… - f - 1048576 - 2147483647 - - - 1 - - - - Find Next - g - 1048576 - 2147483647 - - - 2 - - - - Find Previous - G - 1179648 - 2147483647 - - - 3 - - - - Use Selection for Find - e - 1048576 - 2147483647 - - - 7 - - - - Jump to Selection - j - 1048576 - 2147483647 - - - - - - - - - Spelling and Grammar - - 1048576 - 2147483647 - - - submenuAction: - - Spelling and Grammar - - YES - - - Show Spelling… - : - 1048576 - 2147483647 - - - - - - Check Spelling - ; - 1048576 - 2147483647 - - - - - - Check Spelling While Typing - - 1048576 - 2147483647 - - - - - - Check Grammar With Spelling - - 1048576 - 2147483647 - - - - - - - - - Substitutions - - 1048576 - 2147483647 - - - submenuAction: - - Substitutions - - YES - - - Smart Copy/Paste - f - 1048576 - 2147483647 - - - 1 - - - - Smart Quotes - g - 1048576 - 2147483647 - - - 2 - - - - Smart Links - G - 1179648 - 2147483647 - - - 3 - - - - - - - Speech - - 1048576 - 2147483647 - - - submenuAction: - - Speech - - YES - - - Start Speaking - - 1048576 - 2147483647 - - - - - - Stop Speaking - - 1048576 - 2147483647 - - - - - - - - - - - - Format - - 1048576 - 2147483647 - - - submenuAction: - - Format - - YES - - - Show Fonts - t - 1048576 - 2147483647 - - - - - - Show Colors - C - 1179648 - 2147483647 - - - - - - - - - View - - 1048576 - 2147483647 - - - submenuAction: - - View - - YES - - - Show Toolbar - t - 1572864 - 2147483647 - - - - - - Customize Toolbar… - - 1048576 - 2147483647 - - - - - - - - - Window - - 1048576 - 2147483647 - - - submenuAction: - - Window - - YES - - - Minimize - m - 1048576 - 2147483647 - - - - - - Zoom - - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Bring All to Front - - 1048576 - 2147483647 - - - - - _NSWindowsMenu - - - - - Help - - 1048576 - 2147483647 - - - submenuAction: - - Help - - YES - - - Atom Help - ? - 1048576 - 2147483647 - - - - - - - - _NSMainMenu - - - YES - - - - - YES - - - orderFrontStandardAboutPanel: - - - - 142 - - - - performMiniaturize: - - - - 37 - - - - arrangeInFront: - - - - 39 - - - - print: - - - - 86 - - - - runPageLayout: - - - - 87 - - - - clearRecentDocuments: - - - - 127 - - - - performClose: - - - - 193 - - - - toggleContinuousSpellChecking: - - - - 222 - - - - undo: - - - - 223 - - - - copy: - - - - 224 - - - - checkSpelling: - - - - 225 - - - - paste: - - - - 226 - - - - stopSpeaking: - - - - 227 - - - - cut: - - - - 228 - - - - showGuessPanel: - - - - 230 - - - - redo: - - - - 231 - - - - selectAll: - - - - 232 - - - - startSpeaking: - - - - 233 - - - - delete: - - - - 235 - - - - performZoom: - - - - 240 - - - - performFindPanelAction: - - - - 241 - - - - centerSelectionInVisibleArea: - - - - 245 - - - - toggleGrammarChecking: - - - - 347 - - - - toggleSmartInsertDelete: - - - - 355 - - - - toggleAutomaticQuoteSubstitution: - - - - 356 - - - - toggleAutomaticLinkDetection: - - - - 357 - - - - showHelp: - - - - 360 - - - - orderFrontColorPanel: - - - - 361 - - - - saveDocument: - - - - 362 - - - - saveDocumentAs: - - - - 363 - - - - revertDocumentToSaved: - - - - 364 - - - - runToolbarCustomizationPalette: - - - - 365 - - - - toggleToolbarShown: - - - - 366 - - - - hide: - - - - 367 - - - - hideOtherApplications: - - - - 368 - - - - terminate: - - - - 369 - - - - unhideAllApplications: - - - - 370 - - - - newDocument: - - - - 373 - - - - openDocument: - - - - 374 - - - - - YES - - 0 - - YES - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - YES - - - - - - - - - - MainMenu - - - 19 - - - YES - - - - - - 56 - - - YES - - - - - - 103 - - - YES - - - - 1 - - - 217 - - - YES - - - - - - 83 - - - YES - - - - - - 81 - - - YES - - - - - - - - - - - - - - - - 75 - - - 3 - - - 80 - - - 8 - - - 78 - - - 6 - - - 72 - - - - - 82 - - - 9 - - - 124 - - - YES - - - - - - 77 - - - 5 - - - 73 - - - 1 - - - 79 - - - 7 - - - 112 - - - 10 - - - 74 - - - 2 - - - 125 - - - YES - - - - - - 126 - - - - - 205 - - - YES - - - - - - - - - - - - - - - - - - 202 - - - - - 198 - - - - - 207 - - - - - 214 - - - - - 199 - - - - - 203 - - - - - 197 - - - - - 206 - - - - - 215 - - - - - 218 - - - YES - - - - - - 216 - - - YES - - - - - - 200 - - - YES - - - - - - - - - 219 - - - - - 201 - - - - - 204 - - - - - 220 - - - YES - - - - - - - - - - 213 - - - - - 210 - - - - - 221 - - - - - 208 - - - - - 209 - - - - - 106 - - - YES - - - - 2 - - - 111 - - - - - 57 - - - YES - - - - - - - - - - - - - - - - 58 - - - - - 134 - - - - - 150 - - - - - 136 - - - 1111 - - - 144 - - - - - 129 - - - 121 - - - 143 - - - - - 236 - - - - - 131 - - - YES - - - - - - 149 - - - - - 145 - - - - - 130 - - - - - 24 - - - YES - - - - - - - - - 92 - - - - - 5 - - - - - 239 - - - - - 23 - - - - - 295 - - - YES - - - - - - 296 - - - YES - - - - - - - 297 - - - - - 298 - - - - - 299 - - - YES - - - - - - 300 - - - YES - - - - - - - 344 - - - - - 345 - - - - - 211 - - - YES - - - - - - 212 - - - YES - - - - - - - 195 - - - - - 196 - - - - - 346 - - - - - 348 - - - YES - - - - - - 349 - - - YES - - - - - - - - 350 - - - - - 351 - - - - - 354 - - - - - 389 - - - - - - - YES - - YES - -1.IBPluginDependency - -2.IBPluginDependency - -3.IBPluginDependency - 103.IBPluginDependency - 106.IBPluginDependency - 111.IBPluginDependency - 112.IBPluginDependency - 124.IBPluginDependency - 125.IBPluginDependency - 126.IBPluginDependency - 129.IBPluginDependency - 130.IBPluginDependency - 131.IBPluginDependency - 134.IBPluginDependency - 136.IBPluginDependency - 143.IBPluginDependency - 144.IBPluginDependency - 145.IBPluginDependency - 149.IBPluginDependency - 150.IBPluginDependency - 19.IBPluginDependency - 195.IBPluginDependency - 196.IBPluginDependency - 197.IBPluginDependency - 198.IBPluginDependency - 199.IBPluginDependency - 200.IBPluginDependency - 201.IBPluginDependency - 202.IBPluginDependency - 203.IBPluginDependency - 204.IBPluginDependency - 205.IBPluginDependency - 206.IBPluginDependency - 207.IBPluginDependency - 208.IBPluginDependency - 209.IBPluginDependency - 210.IBPluginDependency - 211.IBPluginDependency - 212.IBPluginDependency - 213.IBPluginDependency - 214.IBPluginDependency - 215.IBPluginDependency - 216.IBPluginDependency - 217.IBPluginDependency - 218.IBPluginDependency - 219.IBPluginDependency - 220.IBPluginDependency - 221.IBPluginDependency - 23.IBPluginDependency - 236.IBPluginDependency - 239.IBPluginDependency - 24.IBPluginDependency - 29.IBPluginDependency - 295.IBPluginDependency - 296.IBPluginDependency - 297.IBPluginDependency - 298.IBPluginDependency - 299.IBPluginDependency - 300.IBPluginDependency - 344.IBPluginDependency - 345.IBPluginDependency - 346.IBPluginDependency - 348.IBPluginDependency - 349.IBPluginDependency - 350.IBPluginDependency - 351.IBPluginDependency - 354.IBPluginDependency - 389.IBPluginDependency - 5.IBPluginDependency - 56.IBPluginDependency - 57.IBPluginDependency - 58.IBPluginDependency - 72.IBPluginDependency - 73.IBPluginDependency - 74.IBPluginDependency - 75.IBPluginDependency - 77.IBPluginDependency - 78.IBPluginDependency - 79.IBPluginDependency - 80.IBPluginDependency - 81.IBPluginDependency - 82.IBPluginDependency - 83.IBPluginDependency - 92.IBPluginDependency - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - YES - - - - - - YES - - - - - 439 - - - - YES - - NSDocument - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: - - - YES - id - id - id - id - id - id - - - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: - - - YES - - printDocument: - id - - - revertDocumentToSaved: - id - - - runPageLayout: - id - - - saveDocument: - id - - - saveDocumentAs: - id - - - saveDocumentTo: - id - - - - - IBProjectSource - ./Classes/NSDocument.h - - - - - 0 - IBCocoaFramework - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - YES - - YES - NSMenuCheckmark - NSMenuMixedState - - - YES - {11, 11} - {10, 3} - - - - diff --git a/atom/cefclient/mac/Info.plist b/atom/cefclient/mac/Info.plist deleted file mode 100644 index 777aa3de3..000000000 --- a/atom/cefclient/mac/Info.plist +++ /dev/null @@ -1,28 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIconFile - Atom.icns - CFBundleIdentifier - com.github.Atom - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - diff --git a/atom/cefclient/mac/helper-Info.plist b/atom/cefclient/mac/helper-Info.plist deleted file mode 100644 index 7e9038ad7..000000000 --- a/atom/cefclient/mac/helper-Info.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleDisplayName - ${EXECUTABLE_NAME} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - com.github.Atom.helper - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - APPL - CFBundleSignature - ???? - LSFileQuarantineEnabled - - LSMinimumSystemVersion - 10.5.0 - LSUIElement - 1 - NSSupportsAutomaticGraphicsSwitching - - - diff --git a/atom/cefclient/process_helper_mac.cpp b/atom/cefclient/process_helper_mac.cpp deleted file mode 100644 index 7354b036a..000000000 --- a/atom/cefclient/process_helper_mac.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that can -// be found in the LICENSE file. - -#include "include/cef_app.h" - -// This file is shared by cefclient and cef_unittests so don't include using -// a qualified path. -#include "client_app.h" // NOLINT(build/include) - -// Stub implementations. -std::string AppGetWorkingDirectory() { - return std::string(); -} -CefWindowHandle AppGetMainHwnd() { - return NULL; -} - -// Process entry point. -int main(int argc, char* argv[]) { - CefMainArgs main_args(argc, argv); - - CefRefPtr app(new ClientApp); - - // Execute the secondary process. - return CefExecuteProcess(main_args, app); -} diff --git a/atom/cefclient/res/binding.html b/atom/cefclient/res/binding.html deleted file mode 100644 index edb1f4a00..000000000 --- a/atom/cefclient/res/binding.html +++ /dev/null @@ -1,27 +0,0 @@ - - -Binding Test - - - - -
-Message: -
-
You should see the reverse of your message below: -
-
- - diff --git a/atom/cefclient/res/cefclient.ico b/atom/cefclient/res/cefclient.ico deleted file mode 100644 index d551aa3aa..000000000 Binary files a/atom/cefclient/res/cefclient.ico and /dev/null differ diff --git a/atom/cefclient/res/dialogs.html b/atom/cefclient/res/dialogs.html deleted file mode 100644 index 1bce8e475..000000000 --- a/atom/cefclient/res/dialogs.html +++ /dev/null @@ -1,45 +0,0 @@ - - -Dialog Test - - - -
-Click a button to show the associated dialog type. -
-
-
-

-
- - diff --git a/atom/cefclient/res/domaccess.html b/atom/cefclient/res/domaccess.html deleted file mode 100644 index 68ff69647..000000000 --- a/atom/cefclient/res/domaccess.html +++ /dev/null @@ -1,13 +0,0 @@ - - -

Select some portion of the below page content and click the "Describe Selection" button. The selected region will then be described below.

-

This is p1

-

This is p2

-

This is p3

-

This is p4

-
- -

The description will appear here.

-
- - diff --git a/atom/cefclient/res/localstorage.html b/atom/cefclient/res/localstorage.html deleted file mode 100644 index a794305b7..000000000 --- a/atom/cefclient/res/localstorage.html +++ /dev/null @@ -1,24 +0,0 @@ - - - -Click the "Add Line" button to add a line or the "Clear" button to clear.
-This data will persist across sessions if a cache path was specified.
- - -
- - - diff --git a/atom/cefclient/res/logo.png b/atom/cefclient/res/logo.png deleted file mode 100644 index 41dd728df..000000000 Binary files a/atom/cefclient/res/logo.png and /dev/null differ diff --git a/atom/cefclient/res/logoball.png b/atom/cefclient/res/logoball.png deleted file mode 100644 index ef115ca07..000000000 Binary files a/atom/cefclient/res/logoball.png and /dev/null differ diff --git a/atom/cefclient/res/small.ico b/atom/cefclient/res/small.ico deleted file mode 100644 index d551aa3aa..000000000 Binary files a/atom/cefclient/res/small.ico and /dev/null differ diff --git a/atom/cefclient/res/xmlhttprequest.html b/atom/cefclient/res/xmlhttprequest.html deleted file mode 100644 index 638c63c82..000000000 --- a/atom/cefclient/res/xmlhttprequest.html +++ /dev/null @@ -1,19 +0,0 @@ - - - -
-URL: -
-
-
- - diff --git a/atom/cefclient/resource.h b/atom/cefclient/resource.h deleted file mode 100644 index dd6988e3b..000000000 --- a/atom/cefclient/resource.h +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright (c) 2010 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by cefclient.rc -// -#define BINARY 256 -#define IDC_MYICON 2 -#define IDD_CEFCLIENT_DIALOG 102 -#define IDS_APP_TITLE 103 -#define IDD_ABOUTBOX 103 -#define IDM_ABOUT 104 -#define IDM_EXIT 105 -#define IDI_CEFCLIENT 107 -#define IDI_SMALL 108 -#define IDC_CEFCLIENT 109 -#define IDR_MAINFRAME 128 -#define IDC_NAV_BACK 200 -#define IDC_NAV_FORWARD 201 -#define IDC_NAV_RELOAD 202 -#define IDC_NAV_STOP 203 -#define ID_WARN_CONSOLEMESSAGE 32000 -#define ID_WARN_DOWNLOADCOMPLETE 32001 -#define ID_WARN_DOWNLOADERROR 32002 -#define ID_TESTS_GETSOURCE 32760 -#define ID_TESTS_GETTEXT 32761 -#define ID_TESTS_POPUP 32762 -#define ID_TESTS_REQUEST 32763 -#define ID_TESTS_SCHEME_HANDLER 32764 -#define ID_TESTS_LOCALSTORAGE 32765 -#define ID_TESTS_ACCELERATED2DCANVAS 32766 -#define ID_TESTS_ACCELERATEDLAYERS 32767 -#define ID_TESTS_WEBGL 32768 -#define ID_TESTS_HTML5VIDEO 32769 -#define ID_TESTS_XMLHTTPREQUEST 32770 -#define ID_TESTS_DRAGDROP 32771 -#define ID_TESTS_GEOLOCATION 32772 -#define ID_TESTS_BINDING 32773 -#define ID_TESTS_DIALOGS 32774 -#define ID_TESTS_PLUGIN_INFO 32775 -#define ID_TESTS_DOM_ACCESS 32776 -#define ID_TESTS_ZOOM_IN 32777 -#define ID_TESTS_ZOOM_OUT 32778 -#define ID_TESTS_ZOOM_RESET 32779 -#define IDC_STATIC -1 -#define IDS_BINDING 1000 -#define IDS_DIALOGS 1001 -#define IDS_LOGO 1002 -#define IDS_LOGOBALL 1003 -#define IDS_LOCALSTORAGE 1004 -#define IDS_XMLHTTPREQUEST 1005 -#define IDS_DOMACCESS 1006 - -// Avoid files associated with MacOS -#define _X86_ - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NO_MFC 1 -#define _APS_NEXT_RESOURCE_VALUE 130 -#define _APS_NEXT_COMMAND_VALUE 32774 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 110 -#endif -#endif diff --git a/atom/cefclient/resource_util.h b/atom/cefclient/resource_util.h deleted file mode 100644 index c382196f4..000000000 --- a/atom/cefclient/resource_util.h +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_RESOURCE_UTIL_H_ -#define CEF_TESTS_CEFCLIENT_RESOURCE_UTIL_H_ -#pragma once - -#include "include/cef_base.h" - -class CefStreamReader; - -#if defined(OS_WIN) - -#include "cefclient/resource.h" - -// Load a resource of type BINARY -bool LoadBinaryResource(int binaryId, DWORD &dwSize, LPBYTE &pBytes); -CefRefPtr GetBinaryResourceReader(int binaryId); - -#elif defined(OS_MACOSX) || defined(OS_POSIX) - -#include // NOLINT(build/include_order) - -// Load the resource with the specified name. -bool LoadBinaryResource(const char* resource_name, std::string& resource_data); - -#endif - -CefRefPtr GetBinaryResourceReader(const char* resource_name); - -#endif // CEF_TESTS_CEFCLIENT_RESOURCE_UTIL_H_ diff --git a/atom/cefclient/resource_util_linux.cpp b/atom/cefclient/resource_util_linux.cpp deleted file mode 100644 index 66b46267d..000000000 --- a/atom/cefclient/resource_util_linux.cpp +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. -// Portions copyright (c) 2011 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "cefclient/resource_util.h" -#include -#include -#include "include/cef_stream.h" -#include "cefclient/util.h" - -bool GetResourceDir(std::string& dir) { - char buff[1024]; - - // Retrieve the executable path. - ssize_t len = readlink("/proc/self/exe", buff, sizeof(buff)-1); - if (len == -1) - return false; - - buff[len] = 0; - - // Remove the executable name from the path. - char* pos = strrchr(buff, '/'); - if (!pos) - return false; - - // Add "files" to the path. - strcpy(pos+1, "files"); // NOLINT(runtime/printf) - dir = std::string(buff); - return true; -} - -bool LoadBinaryResource(const char* resource_name, std::string& resource_data) { - std::string path; - if (!GetResourceDir(path)) - return false; - - path.append("/"); - path.append(resource_name); - - FILE* f = fopen(path.c_str(), "rb"); - if (!f) - return false; - - size_t bytes_read; - char buff[1024*8]; - - do { - bytes_read = fread(buff, 1, sizeof(buff)-1, f); - if (bytes_read > 0) - resource_data.append(buff, bytes_read); - } while (bytes_read > 0); - - fclose(f); - return true; -} - -CefRefPtr GetBinaryResourceReader(const char* resource_name) { - std::string path; - if (!GetResourceDir(path)) - return NULL; - - path.append("/"); - path.append(resource_name); - - return CefStreamReader::CreateForFile(path); -} diff --git a/atom/cefclient/resource_util_mac.mm b/atom/cefclient/resource_util_mac.mm deleted file mode 100644 index 98cfd8605..000000000 --- a/atom/cefclient/resource_util_mac.mm +++ /dev/null @@ -1,97 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. -// Portions copyright (c) 2011 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#import -#include -#include -#include "cefclient/resource_util.h" -#include "include/cef_stream.h" -#include "cefclient/util.h" - -namespace { - -bool AmIBundled() { - // Implementation adapted from Chromium's base/mac/foundation_util.mm - ProcessSerialNumber psn = {0, kCurrentProcess}; - - FSRef fsref; - OSStatus pbErr; - if ((pbErr = GetProcessBundleLocation(&psn, &fsref)) != noErr) { - ASSERT(false); - return false; - } - - FSCatalogInfo info; - OSErr fsErr; - if ((fsErr = FSGetCatalogInfo(&fsref, kFSCatInfoNodeFlags, &info, - NULL, NULL, NULL)) != noErr) { - ASSERT(false); - return false; - } - - return (info.nodeFlags & kFSNodeIsDirectoryMask); -} - -bool GetResourceDir(std::string& dir) { - // Implementation adapted from Chromium's base/base_path_mac.mm - if (AmIBundled()) { - // Retrieve the executable directory. - uint32_t pathSize = 0; - _NSGetExecutablePath(NULL, &pathSize); - if (pathSize > 0) { - dir.resize(pathSize); - _NSGetExecutablePath(const_cast(dir.c_str()), &pathSize); - } - - // Trim executable name up to the last separator - std::string::size_type last_separator = dir.find_last_of("/"); - dir.resize(last_separator); - dir.append("/../Resources"); - return true; - } else { - // TODO: Provide unbundled path - ASSERT(false); - return false; - } -} - -bool ReadFileToString(const char* path, std::string& data) { - // Implementation adapted from base/file_util.cc - FILE* file = fopen(path, "rb"); - if (!file) - return false; - - char buf[1 << 16]; - size_t len; - while ((len = fread(buf, 1, sizeof(buf), file)) > 0) - data.append(buf, len); - fclose(file); - - return true; -} - -} // namespace - -bool LoadBinaryResource(const char* resource_name, std::string& resource_data) { - std::string path; - if (!GetResourceDir(path)) - return false; - - path.append("/"); - path.append(resource_name); - - return ReadFileToString(path.c_str(), resource_data); -} - -CefRefPtr GetBinaryResourceReader(const char* resource_name) { - std::string path; - if (!GetResourceDir(path)) - return NULL; - - path.append("/"); - path.append(resource_name); - - return CefStreamReader::CreateForFile(path); -} diff --git a/atom/cefclient/resource_util_win.cpp b/atom/cefclient/resource_util_win.cpp deleted file mode 100644 index 8482ac954..000000000 --- a/atom/cefclient/resource_util_win.cpp +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright (c) 2008-2009 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/resource_util.h" -#include "include/cef_stream.h" -#include "include/wrapper/cef_byte_read_handler.h" -#include "cefclient/util.h" - -#if defined(OS_WIN) - -bool LoadBinaryResource(int binaryId, DWORD &dwSize, LPBYTE &pBytes) { - extern HINSTANCE hInst; - HRSRC hRes = FindResource(hInst, MAKEINTRESOURCE(binaryId), - MAKEINTRESOURCE(256)); - if (hRes) { - HGLOBAL hGlob = LoadResource(hInst, hRes); - if (hGlob) { - dwSize = SizeofResource(hInst, hRes); - pBytes = (LPBYTE)LockResource(hGlob); - if (dwSize > 0 && pBytes) - return true; - } - } - - return false; -} - -CefRefPtr GetBinaryResourceReader(int binaryId) { - DWORD dwSize; - LPBYTE pBytes; - - if (LoadBinaryResource(binaryId, dwSize, pBytes)) { - return CefStreamReader::CreateForHandler( - new CefByteReadHandler(pBytes, dwSize, NULL)); - } - - ASSERT(FALSE); // The resource should be found. - return NULL; -} - -CefRefPtr GetBinaryResourceReader(const char* resource_name) { - // Map of resource labels to BINARY id values. - static struct _resource_map { - char* name; - int id; - } resource_map[] = { - {"binding.html", IDS_BINDING}, - {"dialogs.html", IDS_DIALOGS}, - {"domaccess.html", IDS_DOMACCESS}, - {"localstorage.html", IDS_LOCALSTORAGE}, - {"xmlhttprequest.html", IDS_XMLHTTPREQUEST}, - }; - - for (int i = 0; i < sizeof(resource_map)/sizeof(_resource_map); ++i) { - if (!strcmp(resource_map[i].name, resource_name)) - return GetBinaryResourceReader(resource_map[i].id); - } - - ASSERT(FALSE); // The resource should be found. - return NULL; -} - -#endif // OS_WIN diff --git a/atom/cefclient/scheme_test.cpp b/atom/cefclient/scheme_test.cpp deleted file mode 100644 index ee33a4389..000000000 --- a/atom/cefclient/scheme_test.cpp +++ /dev/null @@ -1,182 +0,0 @@ -// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/scheme_test.h" -#include -#include -#include "include/cef_browser.h" -#include "include/cef_callback.h" -#include "include/cef_frame.h" -#include "include/cef_resource_handler.h" -#include "include/cef_response.h" -#include "include/cef_request.h" -#include "include/cef_scheme.h" -#include "cefclient/resource_util.h" -#include "cefclient/string_util.h" -#include "cefclient/util.h" - -#if defined(OS_WIN) -#include "cefclient/resource.h" -#endif - -namespace scheme_test { - -namespace { - -// Implementation of the schema handler for client:// requests. -class ClientSchemeHandler : public CefResourceHandler { - public: - ClientSchemeHandler() : offset_(0) {} - - virtual bool ProcessRequest(CefRefPtr request, - CefRefPtr callback) - OVERRIDE { - REQUIRE_IO_THREAD(); - - bool handled = false; - - AutoLock lock_scope(this); - - std::string url = request->GetURL(); - if (strstr(url.c_str(), "handler.html") != NULL) { - // Build the response html - data_ = "Client Scheme Handler" - "This contents of this page page are served by the " - "ClientSchemeHandler class handling the client:// protocol." - "
You should see an image:" - "
";
-
-      // Output a string representation of the request
-      std::string dump;
-      DumpRequestContents(request, dump);
-      data_.append(dump);
-
-      data_.append("

Try the test form:" - "
" - "" - "" - "" - "
"); - - handled = true; - - // Set the resulting mime type - mime_type_ = "text/html"; - } else if (strstr(url.c_str(), "client.png") != NULL) { - // Load the response image -#if defined(OS_WIN) - DWORD dwSize; - LPBYTE pBytes; - if (LoadBinaryResource(IDS_LOGO, dwSize, pBytes)) { - data_ = std::string(reinterpret_cast(pBytes), dwSize); - handled = true; - // Set the resulting mime type - mime_type_ = "image/jpg"; - } -#elif defined(OS_MACOSX) || defined(OS_LINUX) - if (LoadBinaryResource("logo.png", data_)) { - handled = true; - // Set the resulting mime type - mime_type_ = "image/png"; - } -#else -#error "Unsupported platform" -#endif - } - - if (handled) { - // Indicate the headers are available. - callback->Continue(); - return true; - } - - return false; - } - - virtual void GetResponseHeaders(CefRefPtr response, - int64& response_length, - CefString& redirectUrl) OVERRIDE { - REQUIRE_IO_THREAD(); - - ASSERT(!data_.empty()); - - response->SetMimeType(mime_type_); - response->SetStatus(200); - - // Set the resulting response length - response_length = data_.length(); - } - - virtual void Cancel() OVERRIDE { - REQUIRE_IO_THREAD(); - } - - virtual bool ReadResponse(void* data_out, - int bytes_to_read, - int& bytes_read, - CefRefPtr callback) - OVERRIDE { - REQUIRE_IO_THREAD(); - - bool has_data = false; - bytes_read = 0; - - AutoLock lock_scope(this); - - if (offset_ < data_.length()) { - // Copy the next block of data into the buffer. - int transfer_size = - std::min(bytes_to_read, static_cast(data_.length() - offset_)); - memcpy(data_out, data_.c_str() + offset_, transfer_size); - offset_ += transfer_size; - - bytes_read = transfer_size; - has_data = true; - } - - return has_data; - } - - private: - std::string data_; - std::string mime_type_; - size_t offset_; - - IMPLEMENT_REFCOUNTING(ClientSchemeHandler); - IMPLEMENT_LOCKING(ClientSchemeHandler); -}; - -// Implementation of the factory for for creating schema handlers. -class ClientSchemeHandlerFactory : public CefSchemeHandlerFactory { - public: - // Return a new scheme handler instance to handle the request. - virtual CefRefPtr Create(CefRefPtr browser, - CefRefPtr frame, - const CefString& scheme_name, - CefRefPtr request) - OVERRIDE { - REQUIRE_IO_THREAD(); - return new ClientSchemeHandler(); - } - - IMPLEMENT_REFCOUNTING(ClientSchemeHandlerFactory); -}; - -} // namespace - -void RegisterCustomSchemes(CefRefPtr registrar, - std::vector& cookiable_schemes) { - registrar->AddCustomScheme("client", true, false, false); -} - -void InitTest() { - CefRegisterSchemeHandlerFactory("client", "tests", - new ClientSchemeHandlerFactory()); -} - -void RunTest(CefRefPtr browser) { - browser->GetMainFrame()->LoadURL("client://tests/handler.html"); -} - -} // namespace scheme_test diff --git a/atom/cefclient/scheme_test.h b/atom/cefclient/scheme_test.h deleted file mode 100644 index 724843a92..000000000 --- a/atom/cefclient/scheme_test.h +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_SCHEME_TEST_H_ -#define CEF_TESTS_CEFCLIENT_SCHEME_TEST_H_ -#pragma once - -#include -#include "include/cef_base.h" - -class CefBrowser; -class CefSchemeRegistrar; - -namespace scheme_test { - -// Register the scheme. -void RegisterCustomSchemes(CefRefPtr registrar, - std::vector& cookiable_schemes); - -// Create the scheme handler. -void InitTest(); - -// Run the test. -void RunTest(CefRefPtr browser); - -} // namespace scheme_test - -#endif // CEF_TESTS_CEFCLIENT_SCHEME_TEST_H_ diff --git a/atom/cefclient/string_util.cpp b/atom/cefclient/string_util.cpp deleted file mode 100644 index ebeca5c03..000000000 --- a/atom/cefclient/string_util.cpp +++ /dev/null @@ -1,74 +0,0 @@ -// Copyright (c) 2010 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#include "cefclient/string_util.h" -#include -#include -#include "include/cef_request.h" - -void DumpRequestContents(CefRefPtr request, std::string& str) { - std::stringstream ss; - - ss << "URL: " << std::string(request->GetURL()); - ss << "\nMethod: " << std::string(request->GetMethod()); - - CefRequest::HeaderMap headerMap; - request->GetHeaderMap(headerMap); - if (headerMap.size() > 0) { - ss << "\nHeaders:"; - CefRequest::HeaderMap::const_iterator it = headerMap.begin(); - for (; it != headerMap.end(); ++it) { - ss << "\n\t" << std::string((*it).first) << ": " << - std::string((*it).second); - } - } - - CefRefPtr postData = request->GetPostData(); - if (postData.get()) { - CefPostData::ElementVector elements; - postData->GetElements(elements); - if (elements.size() > 0) { - ss << "\nPost Data:"; - CefRefPtr element; - CefPostData::ElementVector::const_iterator it = elements.begin(); - for (; it != elements.end(); ++it) { - element = (*it); - if (element->GetType() == PDE_TYPE_BYTES) { - // the element is composed of bytes - ss << "\n\tBytes: "; - if (element->GetBytesCount() == 0) { - ss << "(empty)"; - } else { - // retrieve the data. - size_t size = element->GetBytesCount(); - char* bytes = new char[size]; - element->GetBytes(size, bytes); - ss << std::string(bytes, size); - delete [] bytes; - } - } else if (element->GetType() == PDE_TYPE_FILE) { - ss << "\n\tFile: " << std::string(element->GetFile()); - } - } - } - } - - str = ss.str(); -} - -std::string StringReplace(const std::string& str, const std::string& from, - const std::string& to) { - std::string result = str; - std::string::size_type pos = 0; - std::string::size_type from_len = from.length(); - std::string::size_type to_len = to.length(); - do { - pos = result.find(from, pos); - if (pos != std::string::npos) { - result.replace(pos, from_len, to); - pos += to_len; - } - } while (pos != std::string::npos); - return result; -} diff --git a/atom/cefclient/string_util.h b/atom/cefclient/string_util.h deleted file mode 100644 index c43e6f210..000000000 --- a/atom/cefclient/string_util.h +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2010 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_STRING_UTIL_H_ -#define CEF_TESTS_CEFCLIENT_STRING_UTIL_H_ -#pragma once - -#include -#include "include/cef_base.h" - -class CefRequest; - -// Dump the contents of the request into a string. -void DumpRequestContents(CefRefPtr request, std::string& str); - -// Replace all instances of |from| with |to| in |str|. -std::string StringReplace(const std::string& str, const std::string& from, - const std::string& to); - -#endif // CEF_TESTS_CEFCLIENT_STRING_UTIL_H_ diff --git a/atom/cefclient/util.h b/atom/cefclient/util.h deleted file mode 100644 index ba0305c1c..000000000 --- a/atom/cefclient/util.h +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_TESTS_CEFCLIENT_UTIL_H_ -#define CEF_TESTS_CEFCLIENT_UTIL_H_ -#pragma once - -#include "include/cef_task.h" - -#if defined(OS_WIN) - -#include // NOLINT(build/include_order) - -#ifndef NDEBUG -#define ASSERT(condition) if (!(condition)) { DebugBreak(); } -#else -#define ASSERT(condition) ((void)0) -#endif - -#else // !OS_WIN - -#include // NOLINT(build/include_order) - -#ifndef NDEBUG -#define ASSERT(condition) if (!(condition)) { assert(false); } -#else -#define ASSERT(condition) ((void)0) -#endif - -#endif // !OS_WIN - -#define REQUIRE_UI_THREAD() ASSERT(CefCurrentlyOn(TID_UI)); -#define REQUIRE_IO_THREAD() ASSERT(CefCurrentlyOn(TID_IO)); -#define REQUIRE_FILE_THREAD() ASSERT(CefCurrentlyOn(TID_FILE)); - -#endif // CEF_TESTS_CEFCLIENT_UTIL_H_ diff --git a/atom_create_projects.sh b/atom_create_projects.sh deleted file mode 100755 index e21e6a887..000000000 --- a/atom_create_projects.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -python tools/gyp_cef atom.gyp -I cef.gypi --depth=./chromium diff --git a/cef.gypi b/cef.gypi deleted file mode 100644 index c3f8cce3d..000000000 --- a/cef.gypi +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights -# reserved. Use of this source code is governed by a BSD-style license that -# can be found in the LICENSE file. - -{ - 'variables': { - 'conditions': [ - # Directory for CEF source files. - [ 'OS=="win"', { - 'cef_directory' : '"; }; - 006E2641277922A5B3C03BC2 /* adm_writer_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = adm_writer_unittest.py; sourceTree = ""; }; - 007F191CDADBB6B9DE99848F /* before_download_callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = before_download_callback_ctocpp.cc; sourceTree = ""; }; - 00A3A60B85CDFEDACAEEB519 /* cookie_manager_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cookie_manager_impl.cc; sourceTree = ""; }; - 00FF2D290B6BA4D912A7885D /* app_locale_settings_gu.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_gu.pak; sourceTree = ""; }; - 01B79CB85CA6B558D2FF8CA1 /* cef_zip_archive.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cef_zip_archive.cc; sourceTree = ""; }; - 01C9A4CE5FB2EEC5EAA9CD29 /* process_message_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = process_message_unittest.cc; sourceTree = ""; }; - 0214004821A34E16FAA98C37 /* browser_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_impl.cc; sourceTree = ""; }; - 02193627E8FF79BCD0817B49 /* cef_web_plugin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_web_plugin.h; sourceTree = ""; }; - 021AAB8AF92012BFE87C320D /* resource_bundle_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = resource_bundle_handler_cpptoc.cc; sourceTree = ""; }; - 021BD3DBAAA1DBFB8232B9C5 /* v8handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8handler_ctocpp.cc; sourceTree = ""; }; - 02943212AED67FDE1DE8A754 /* webkit_strings_fil.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_fil.pak; sourceTree = ""; }; - 029D01F5660890E5E63D2E00 /* download_item_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_item_ctocpp.cc; sourceTree = ""; }; - 02C3921F366D7D841D6667B0 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text; name = uk; path = uk.lproj/locale.pak; sourceTree = ""; }; - 037D7D3E4B2DD1EF60ED4BEA /* browser_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_ctocpp.h; sourceTree = ""; }; - 03993E37BA0957D7AD5851EE /* cef_client.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_client.h; sourceTree = ""; }; - 03C4C78B8596116BFD2BEED2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text; name = ro; path = ro.lproj/locale.pak; sourceTree = ""; }; - 03E168B20BA32B8A31F1C5C0 /* cef_geolocation_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_geolocation_handler.h; sourceTree = ""; }; - 048991D7CE055E48525043FB /* cef_origin_whitelist_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_origin_whitelist_capi.h; sourceTree = ""; }; - 0493FA7D04E9DD460B094B27 /* request_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = request_handler_cpptoc.h; sourceTree = ""; }; - 04CFE5D5BE80944DAD609635 /* app_locale_settings_de.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_de.pak; sourceTree = ""; }; - 0514C79670E149EB872D2C1C /* webkit_strings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = webkit_strings.h; sourceTree = ""; }; - 0518EC34271437784B0CF75D /* app_locale_settings_zh-CN.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "app_locale_settings_zh-CN.pak"; sourceTree = ""; }; - 054D552370799D9F7EACC73A /* ui_strings_tr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_tr.pak; sourceTree = ""; }; - 059C98513FBDA8371C6B5F9D /* client_handler_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = client_handler_mac.mm; sourceTree = ""; }; - 0651D00FD6E7F704270E6F29 /* jsoncpp.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = jsoncpp.xcodeproj; path = ../third_party/jsoncpp/jsoncpp.xcodeproj; sourceTree = SOURCE_ROOT; }; - 065F518B3E8F22E177526086 /* cef_jsdialog_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_jsdialog_handler.h; sourceTree = ""; }; - 06C15E96A6E8E4C3CBE2895B /* browser_process_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_process_handler_ctocpp.cc; sourceTree = ""; }; - 06CFB89D4546843303928D46 /* dom_node_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dom_node_impl.cc; sourceTree = ""; }; - 074D7464D208F959F4EFA456 /* system_wrappers.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = system_wrappers.xcodeproj; path = ../third_party/webrtc/system_wrappers/source/system_wrappers.xcodeproj; sourceTree = SOURCE_ROOT; }; - 07A39F219A616F191160FF50 /* url_request_context_proxy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = url_request_context_proxy.h; sourceTree = ""; }; - 07B50631033A1D31193C99F0 /* fil */ = {isa = PBXFileReference; lastKnownFileType = text; name = fil; path = fil.lproj/locale.pak; sourceTree = ""; }; - 07D01593D99A6D465EBF7CCC /* cefclient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cefclient.cpp; sourceTree = ""; }; - 084B8EA24DF5DF1571DE7137 /* structure.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = structure.py; sourceTree = ""; }; - 08623EC0BFEEA2B84E7943FF /* dictionary_value_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dictionary_value_ctocpp.cc; sourceTree = ""; }; - 0896A4568A6EF547A818E252 /* ssl.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ssl.xcodeproj; path = ../net/third_party/nss/ssl.xcodeproj; sourceTree = SOURCE_ROOT; }; - 08E26B4DF6F60A58CE5BCAD8 /* app_locale_settings_nb.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_nb.pak; sourceTree = ""; }; - 08F481D420D2BEFAA309844B /* webkit_strings_sk.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_sk.pak; sourceTree = ""; }; - 090865B9B17F24959C44BA28 /* make_pack_header.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = make_pack_header.py; sourceTree = ""; }; - 0937034213F2744D0E0E7317 /* app_locale_settings_uk.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_uk.pak; sourceTree = ""; }; - 093E2FE093BECFD41D5335CE /* template_writer_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = template_writer_unittest.py; sourceTree = ""; }; - 0A2108D276F821F2D9E1EA10 /* domevent_listener_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domevent_listener_ctocpp.cc; sourceTree = ""; }; - 0A252C48128C7984A5A7D199 /* sudden_motion_sensor.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = sudden_motion_sensor.xcodeproj; path = ../third_party/sudden_motion_sensor/sudden_motion_sensor.xcodeproj; sourceTree = SOURCE_ROOT; }; - 0A93C66579AABB2144A11281 /* app_locale_settings_he.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_he.pak; sourceTree = ""; }; - 0AD75F3C85B1E8E79017CEB8 /* doc_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = doc_writer.py; sourceTree = ""; }; - 0B156A4CFECFA1AB636989F5 /* util.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = util.py; sourceTree = ""; }; - 0B1FA47E3643C52A9B849A79 /* xmb.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = xmb.py; sourceTree = ""; }; - 0B24DFC2B43AF06D76BD63EC /* scheme_handler_factory_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scheme_handler_factory_ctocpp.h; sourceTree = ""; }; - 0BB13BD19ADF478AB8D63F81 /* cef_keyboard_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_keyboard_handler_capi.h; sourceTree = ""; }; - 0BCDC6DD2A853EE361074F3C /* libcef_dll_wrapper2.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = libcef_dll_wrapper2.cc; sourceTree = ""; }; - 0BF4B487406238588B1E2E2F /* binding_test.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = binding_test.h; sourceTree = ""; }; - 0BF739A5B1C2AA176439A5F6 /* pseudo_rtl.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = pseudo_rtl.py; sourceTree = ""; }; - 0C2AFED1006ACC3B5DEA1B3A /* render_process_observer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = render_process_observer.h; sourceTree = ""; }; - 0CDB496FCE74889BECC786AC /* webkit_chromium_resources.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = webkit_chromium_resources.h; sourceTree = ""; }; - 0CE409DD2BCB2D7EA19F1BE4 /* test_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = test_handler.cc; sourceTree = ""; }; - 0D452EDDF4C4CC7A41ADA11A /* cef_web_plugin_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_web_plugin_capi.h; sourceTree = ""; }; - 0D9C96436871C7AC09C92FBE /* resource_map.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = resource_map.py; sourceTree = ""; }; - 0DB4E599ACA1FF50AEA38D24 /* url_request_context_getter_proxy.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = url_request_context_getter_proxy.cc; sourceTree = ""; }; - 0DCA45E5487FDB9C815839B1 /* application_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = application_mac.mm; sourceTree = ""; }; - 0DD56C161B0CA9D5F9D7C0CE /* cef_request.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_request.h; sourceTree = ""; }; - 0E111B6033380EFB8FAD197A /* cef_menu_model.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_menu_model.h; sourceTree = ""; }; - 0E7E7A3D338D3815128F4FE1 /* ui_strings_ja.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_ja.pak; sourceTree = ""; }; - 0EF3CF486BE3B15A5E526722 /* grit.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = grit.py; sourceTree = ""; }; - 0F027973D0ADA67E74793587 /* ui_strings_sv.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_sv.pak; sourceTree = ""; }; - 0F17041FB76E0352E317070D /* ui_strings_sr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_sr.pak; sourceTree = ""; }; - 0F8D9EF32570C0C4F5E10D71 /* domdocument_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domdocument_cpptoc.h; sourceTree = ""; }; - 0F9E48B2C38027DC3F74C4AC /* stream_reader_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = stream_reader_cpptoc.cc; sourceTree = ""; }; - 100EB023F2DA2005C72B04F3 /* ui_strings_el.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_el.pak; sourceTree = ""; }; - 10128A219805A7294C6801D1 /* xml_reader_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = xml_reader_impl.h; sourceTree = ""; }; - 1037A328AAB20BB9F7CAE553 /* client_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_ctocpp.h; sourceTree = ""; }; - 106433B6C1D2BC480CCB7ED5 /* ui_strings_nb.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_nb.pak; sourceTree = ""; }; - 1094CFA6EF2DE7E52C584CD3 /* menu_creator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = menu_creator.h; sourceTree = ""; }; - 109971241DE89588510AC552 /* cef_message_generator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_message_generator.h; sourceTree = ""; }; - 10FB137FABDB2510091F240E /* libyuv.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libyuv.xcodeproj; path = ../third_party/libyuv/libyuv.xcodeproj; sourceTree = SOURCE_ROOT; }; - 111B057CA2C89F67064CCB20 /* urlrequest_client_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = urlrequest_client_ctocpp.cc; sourceTree = ""; }; - 112B6763C9E7B43E077673E3 /* display_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = display_handler_ctocpp.cc; sourceTree = ""; }; - 11705C7906E226312AA63C1E /* interface.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = interface.py; sourceTree = ""; }; - 1193F2D58AEF3615DD79DEF7 /* Platform.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Platform.xcodeproj; path = ../third_party/WebKit/Source/Platform/Platform.gyp/Platform.xcodeproj; sourceTree = SOURCE_ROOT; }; - 11F7C69A218B1F1D26564618 /* stream_writer_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = stream_writer_cpptoc.cc; sourceTree = ""; }; - 120B6AF524D6BA1589FD601A /* cef_download_item.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_download_item.h; sourceTree = ""; }; - 12AAC7C7476E3B69B743F399 /* dom_document_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dom_document_impl.h; sourceTree = ""; }; - 12B6B25CD0AC0FEF0C37C56B /* cef_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_mac.h; sourceTree = ""; }; - 12E42A64F19E4B183A87E741 /* el */ = {isa = PBXFileReference; lastKnownFileType = text; name = el; path = el.lproj/locale.pak; sourceTree = ""; }; - 13A0D9C589E6C9B796C7A4D8 /* transl2tc.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = transl2tc.py; sourceTree = ""; }; - 13DA98F0EC61DC95C724F028 /* writer_configuration.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = writer_configuration.py; sourceTree = ""; }; - 14BDBB48FBFCED5C56A3D384 /* context_menu_params_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = context_menu_params_impl.cc; sourceTree = ""; }; - 14C68B169971C62D93A299B5 /* ui_strings_en-US.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "ui_strings_en-US.pak"; sourceTree = ""; }; - 14ECE7D63EFCCBEE9F988D9C /* client_handler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_handler.cpp; sourceTree = ""; }; - 151A694232221A890E2EBE2B /* auth_callback_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = auth_callback_cpptoc.cc; sourceTree = ""; }; - 154A354AA505CD72DDB2EFA9 /* domevent_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domevent_cpptoc.cc; sourceTree = ""; }; - 155206012707A590F898972B /* binary_value_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = binary_value_ctocpp.cc; sourceTree = ""; }; - 1565CFD5145C22BAC85C3EEE /* base.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = base.xcodeproj; path = ../base/base.xcodeproj; sourceTree = SOURCE_ROOT; }; - 159546C2D7977EF25EFA7B40 /* common_video.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = common_video.xcodeproj; path = ../third_party/webrtc/common_video/common_video.xcodeproj; sourceTree = SOURCE_ROOT; }; - 15CC340E227772893CA2AFEB /* list_value_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = list_value_cpptoc.cc; sourceTree = ""; }; - 15D1A25A73657683C2B5B1A2 /* resource_bundle_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = resource_bundle_handler_ctocpp.cc; sourceTree = ""; }; - 160697CEA26EA817C61CEF0B /* cef_pack_resources.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_pack_resources.h; sourceTree = ""; }; - 173C4B63EE1C5DE552933F98 /* menu_creator_runner_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = menu_creator_runner_mac.h; sourceTree = ""; }; - 174958AFC1DC000B4DFCAAB5 /* application_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = application_mac.h; sourceTree = ""; }; - 177DBE23FF52BC4B6AA97A61 /* clique_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = clique_unittest.py; sourceTree = ""; }; - 17D3CBDD52BE57CF73F313AD /* ui_strings_cs.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_cs.pak; sourceTree = ""; }; - 17FE54DB3FAE1BF5BF29F441 /* es */ = {isa = PBXFileReference; lastKnownFileType = text; name = es; path = es.lproj/locale.pak; sourceTree = ""; }; - 1801E857339C7B5A3EB69624 /* domevent_listener_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domevent_listener_cpptoc.h; sourceTree = ""; }; - 189D9B41955B28070345E46F /* app_locale_settings_fa.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_fa.pak; sourceTree = ""; }; - 18CB17F5F89FE2DD4775C8D8 /* webkit_strings_ta.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_ta.pak; sourceTree = ""; }; - 18F5B503F5681FCA9989BC95 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = System/Library/Frameworks/AudioUnit.framework; sourceTree = SDKROOT; }; - 1974FF0ADD0407E965545E45 /* he */ = {isa = PBXFileReference; lastKnownFileType = text; name = he; path = he.lproj/locale.pak; sourceTree = ""; }; - 199B54DD78FCFB3099B5300F /* webkit_strings_ja.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_ja.pak; sourceTree = ""; }; - 19D9BDEED72B2D29E3858E3E /* menu_from_parts.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = menu_from_parts.py; sourceTree = ""; }; - 1A5CFC73A744B2F9E3DBEC2E /* cef_browser_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_browser_capi.h; sourceTree = ""; }; - 1A64382F7B0B236D969E4800 /* client_switches.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_switches.h; sourceTree = ""; }; - 1AF072F4E95AF8E70575FDC6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text; name = en; path = en.lproj/locale.pak; sourceTree = ""; }; - 1B2DDB258AEDB8CF0321091C /* app_locale_settings_zh-TW.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "app_locale_settings_zh-TW.pak"; sourceTree = ""; }; - 1B34D9CA1FF0A85F4E51BE1F /* load_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = load_handler_ctocpp.h; sourceTree = ""; }; - 1B4EEB952256F5695BBE679E /* template_formatter.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = template_formatter.py; sourceTree = ""; }; - 1B7235D5B6CB67E3830DF992 /* app_locale_settings_hi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_hi.pak; sourceTree = ""; }; - 1C025E27C1B803BE216F4F86 /* ipc.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ipc.xcodeproj; path = ../ipc/ipc.xcodeproj; sourceTree = SOURCE_ROOT; }; - 1C1D2B476CB71FED19A90525 /* nss.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = nss.xcodeproj; path = ../third_party/nss/nss.xcodeproj; sourceTree = SOURCE_ROOT; }; - 1C275EF161AD18A51486855F /* client_app.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_app.h; sourceTree = ""; }; - 1C5196D5A93468A76CA3C7F1 /* hi */ = {isa = PBXFileReference; lastKnownFileType = text; name = hi; path = hi.lproj/locale.pak; sourceTree = ""; }; - 1C5AE824CF8FB2E013C771FB /* resource_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = resource_handler_cpptoc.cc; sourceTree = ""; }; - 1C6366E363E4421EDFB9EB05 /* menu_creator_runner_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = menu_creator_runner_mac.mm; sourceTree = ""; }; - 1C834CCB1E55E906499F26DE /* id */ = {isa = PBXFileReference; lastKnownFileType = text; name = id; path = id.lproj/locale.pak; sourceTree = ""; }; - 1C8EB17A5EB1BE9AF0E29160 /* cef_resources.grd */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_resources.grd; sourceTree = ""; }; - 1CCEA731C691044D678F8B9D /* scheme_registrar_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_registrar_cpptoc.cc; sourceTree = ""; }; - 1D9B27BE6DA55ACB43ED477A /* context_menu_params_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = context_menu_params_ctocpp.cc; sourceTree = ""; }; - 1DBB070EBD1333BBE5C68D1C /* crypto.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = crypto.xcodeproj; path = ../crypto/crypto.xcodeproj; sourceTree = SOURCE_ROOT; }; - 1E9256FD015F259D83BC5F28 /* __init__.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = __init__.py; sourceTree = ""; }; - 1EB03115DE936B3FC248AB72 /* before_download_callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = before_download_callback_ctocpp.h; sourceTree = ""; }; - 1EB563F48D15B2AA41F39E0B /* command_line_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = command_line_unittest.cc; sourceTree = ""; }; - 1EEBC9008E31713FA7F05FC9 /* jsdialog_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = jsdialog_handler_cpptoc.h; sourceTree = ""; }; - 1F32D37DE39EA6518CBF7A97 /* main_delegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = main_delegate.h; sourceTree = ""; }; - 1F637E97023288AC42336958 /* urlrequest_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = urlrequest_ctocpp.cc; sourceTree = ""; }; - 1FF3A7904AAC029FCC596CCB /* v8_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8_impl.h; sourceTree = ""; }; - 2000433F0589FE061FBFC7B7 /* event_disposition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = event_disposition.h; sourceTree = ""; }; - 201DD4C6FAF3E4CE86D37388 /* cef_paths.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_paths.gypi; sourceTree = ""; }; - 208F10822055563A9A88F9CB /* cef_unittests Helper.app */ = {isa = PBXFileReference; lastKnownFileType = wrapper.application; path = "cef_unittests Helper.app"; sourceTree = ""; }; - 208F7C728B9FBF8EA807E1E8 /* webkit_strings_mr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_mr.pak; sourceTree = ""; }; - 20B9C1471565555B56117D65 /* response_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = response_manager.h; sourceTree = ""; }; - 20BA4A45C8E834D3CBD09AD1 /* render_urlrequest_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = render_urlrequest_impl.h; sourceTree = ""; }; - 20F593B2668252D45B5FC494 /* focus_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = focus_handler_cpptoc.h; sourceTree = ""; }; - 217AE35B8A9BA24CD3E26EFA /* Atom.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Atom.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 21B00D3F02764EF9434371B9 /* stream_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = stream_impl.cc; sourceTree = ""; }; - 21CD3E93FEA7E8ABD82BFBAF /* devtools_resources.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = devtools_resources.xcodeproj; path = ../content/browser/debugger/devtools_resources.xcodeproj; sourceTree = SOURCE_ROOT; }; - 22912DF4A93A53C0E7D2C576 /* scheme_handler_factory_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_handler_factory_ctocpp.cc; sourceTree = ""; }; - 2362E106BA358E24CDBFA2D3 /* ui_strings_fr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_fr.pak; sourceTree = ""; }; - 2402718FB1781B628D8E9890 /* gpu.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = gpu.xcodeproj; path = ../gpu/gpu.xcodeproj; sourceTree = SOURCE_ROOT; }; - 24048A9014E601FAE7887602 /* cef_app.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_app.h; sourceTree = ""; }; - 24479F1AE7EB2CCF6878BC67 /* urlrequest_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = urlrequest_unittest.cc; sourceTree = ""; }; - 24579E9B79C662488A6C4DA6 /* geolocation_callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = geolocation_callback_ctocpp.cc; sourceTree = ""; }; - 2486CD197F535BFE0E1F6A78 /* NSString+Utils.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = "NSString+Utils.mm"; sourceTree = ""; }; - 24B5217D196DBD2A39619EED /* policy_template_generator_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = policy_template_generator_unittest.py; sourceTree = ""; }; - 255110884F82A5FF3A20FA2D /* chrome_html.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = chrome_html.py; sourceTree = ""; }; - 258191CFC8F133D6A1577F7E /* geolocation_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = geolocation_handler_ctocpp.h; sourceTree = ""; }; - 25B6EE578237AB8259011D6C /* webkit_strings_kn.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_kn.pak; sourceTree = ""; }; - 25EEC66C5B03F5672152ACCB /* all.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = all.xcodeproj; path = "../third_party/v8-i18n/build/all.xcodeproj"; sourceTree = SOURCE_ROOT; }; - 261D817CE1958F87B4F02BF4 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; }; - 262BD76496AAB06FA64AC8A7 /* task_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = task_impl.cc; sourceTree = ""; }; - 26467F2D5FE71216BABF0212 /* cef_zip_reader_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_zip_reader_capi.h; sourceTree = ""; }; - 26FED33C81845F6E153FDFC0 /* cef_strings_te.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_te.pak; sourceTree = ""; }; - 27A7579E4514158F63A538E1 /* dom_test.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dom_test.cpp; sourceTree = ""; }; - 27F20B4EA7E219C534D26F81 /* cef_string_visitor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_visitor.h; sourceTree = ""; }; - 2887799486DC2264974AAA31 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text; name = ar; path = ar.lproj/locale.pak; sourceTree = ""; }; - 28A442512D6FDA74492B0849 /* context_menu_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context_menu_handler_ctocpp.h; sourceTree = ""; }; - 28BCD824953EF6C08B5C9158 /* cef_path_util_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_path_util_capi.h; sourceTree = ""; }; - 28E1959412BAB2B5F1226BCD /* cef_scheme.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_scheme.h; sourceTree = ""; }; - 28ECA57957568EE70BAF8F09 /* cef_strings_am.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_am.pak; sourceTree = ""; }; - 29166ED0F0896A7EB34736BD /* webkit_strings_pl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_pl.pak; sourceTree = ""; }; - 298E681B338969706F4D6E75 /* cef_geolocation_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_geolocation_handler_capi.h; sourceTree = ""; }; - 29F76CC8AE36885C4BFA2891 /* cef_menu_model_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_menu_model_capi.h; sourceTree = ""; }; - 2A3EC5E90DB5938F169F8A1C /* ui_strings_da.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_da.pak; sourceTree = ""; }; - 2A80AEB3699E699F41429EC0 /* grit_target.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = grit_target.gypi; path = ../build/grit_target.gypi; sourceTree = ""; }; - 2AA359A707FDEBCD53258B83 /* domnode_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domnode_cpptoc.cc; sourceTree = ""; }; - 2AA818CBAF5F61D7A21B18D7 /* expat.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = expat.xcodeproj; path = ../third_party/expat/expat.xcodeproj; sourceTree = SOURCE_ROOT; }; - 2B63F6058224C1F0584B9A68 /* app_locale_settings_fr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_fr.pak; sourceTree = ""; }; - 2BB627122277A2433EBFB9E3 /* v8accessor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8accessor_cpptoc.cc; sourceTree = ""; }; - 2BDFA0D019DB383FCBE2863E /* gtest.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = gtest.xcodeproj; path = ../testing/gtest.xcodeproj; sourceTree = SOURCE_ROOT; }; - 2BE5DEB2BA0ECEB7B1A7BEC0 /* keyboard_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = keyboard_handler_cpptoc.h; sourceTree = ""; }; - 2C46051D65EF1F90D34F4D23 /* cef_load_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_load_handler_capi.h; sourceTree = ""; }; - 2C5DCA0E34DEC39C40C17F5C /* values_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = values_impl.cc; sourceTree = ""; }; - 2C62ACF1F0A549F0A2051AB8 /* process_message_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = process_message_cpptoc.h; sourceTree = ""; }; - 2D0218D9DF2BD9D2F1CC3768 /* content_resources.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = content_resources.pak; sourceTree = ""; }; - 2D1746EDD846025A7BBCF1F5 /* resource_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = resource_context.cc; sourceTree = ""; }; - 2D7ECB9F3062F8D36F88D925 /* cookie_visitor_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cookie_visitor_ctocpp.h; sourceTree = ""; }; - 2D953328A837658D8BC680C6 /* libjingle.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libjingle.xcodeproj; path = ../third_party/libjingle/libjingle.xcodeproj; sourceTree = SOURCE_ROOT; }; - 2DA4661D161001F0020E73D6 /* string_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_unittest.cc; sourceTree = ""; }; - 2DD425A12F28FEF717511181 /* cef_proxy_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_proxy_handler.h; sourceTree = ""; }; - 2DF0099F0EE8FE9B392AACC4 /* zlib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = zlib.xcodeproj; path = ../third_party/zlib/zlib.xcodeproj; sourceTree = SOURCE_ROOT; }; - 2E81A09EA187C5ABA0594B81 /* cef_byte_read_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_byte_read_handler.h; sourceTree = ""; }; - 2EB9F9BD145BFF7BA721058A /* navigate_params.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = navigate_params.h; sourceTree = ""; }; - 2EC90772970F0A499BBC2294 /* grit_action.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = grit_action.gypi; path = ../build/grit_action.gypi; sourceTree = ""; }; - 2F4E80723D53CD819926DBBC /* ms */ = {isa = PBXFileReference; lastKnownFileType = text; name = ms; path = ms.lproj/locale.pak; sourceTree = ""; }; - 2F9C3E04A4E35C45B630AEC3 /* v8accessor_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8accessor_ctocpp.h; sourceTree = ""; }; - 2F9D1C00603D4F8A5C80D756 /* ui_strings_id.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_id.pak; sourceTree = ""; }; - 2FA8C86FE90064CC6AD204B8 /* webkit_strings_de.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_de.pak; sourceTree = ""; }; - 2FF25DEDFC25519FC2068EB6 /* resize.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = resize.py; sourceTree = ""; }; - 308A839E957D36AE47662CB5 /* ui_strings_ko.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_ko.pak; sourceTree = ""; }; - 30CDEE9DE8D28F6CEA27CE6B /* resource_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_handler_cpptoc.h; sourceTree = ""; }; - 316413852D2E429AB85DC6BE /* reg_writer_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = reg_writer_unittest.py; sourceTree = ""; }; - 31C96610709A0280F2673DD6 /* cef_life_span_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_life_span_handler_capi.h; sourceTree = ""; }; - 3211D990A0868E4DA5F05C37 /* v8accessor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8accessor_cpptoc.h; sourceTree = ""; }; - 3289C0F1EBDFDB24A36905AC /* cef_origin_whitelist.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_origin_whitelist.h; sourceTree = ""; }; - 32E78C47B68A966E2251645E /* cef_cookie.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_cookie.h; sourceTree = ""; }; - 33191A3C80EE9FADC9681AC1 /* app_locale_settings_hu.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_hu.pak; sourceTree = ""; }; - 33332EA2AC04ED29DEF2B062 /* txt.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = txt.py; sourceTree = ""; }; - 334689EC756D47C76DABB010 /* libvpx.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libvpx.xcodeproj; path = ../third_party/libvpx/libvpx.xcodeproj; sourceTree = SOURCE_ROOT; }; - 335ADC702C533D5F128D5BA7 /* common.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = common.gypi; path = ../build/common.gypi; sourceTree = ""; }; - 335F63827821FB9FB71D0599 /* cefclient.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = cefclient.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 33D2D9A353D54120D3468266 /* gl.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = gl.xcodeproj; path = ../ui/gl/gl.xcodeproj; sourceTree = SOURCE_ROOT; }; - 33DD50DB2E11BEE14F91DCCE /* webkit_strings_pt-PT.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "webkit_strings_pt-PT.pak"; sourceTree = ""; }; - 3421E2BBB3DF1070D5E4BD87 /* context_menu_params_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context_menu_params_cpptoc.h; sourceTree = ""; }; - 343398266DEB232FF344BE97 /* grit_runner.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = grit_runner.py; sourceTree = ""; }; - 34342431CF0B291A417AB3DC /* dom_document_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dom_document_impl.cc; sourceTree = ""; }; - 348B64EB025FFE2A7337DC68 /* xmlhttprequest.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = xmlhttprequest.html; sourceTree = ""; }; - 3498BD423E02FABE1EE83BB8 /* devtools_scheme_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = devtools_scheme_handler.h; sourceTree = ""; }; - 34C9C80A8A51D6228A02CE15 /* ffmpeg.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ffmpeg.xcodeproj; path = ../third_party/ffmpeg/ffmpeg.xcodeproj; sourceTree = SOURCE_ROOT; }; - 34E7B06FC2654047E51AA435 /* v8handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8handler_cpptoc.h; sourceTree = ""; }; - 34F700726B1ECBCC4D64D776 /* reg_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = reg_writer.py; sourceTree = ""; }; - 3555939C4755250EAA5AE2D0 /* libcef_static.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libcef_static.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 356E1B48A82563540725E857 /* cef_strings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_strings.h; sourceTree = ""; }; - 35FBEC5C8B25A9F051B48A4D /* context_menu_params_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context_menu_params_ctocpp.h; sourceTree = ""; }; - 3640DD4BA47FFCE38CB2153D /* cef_stream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_stream.h; sourceTree = ""; }; - 36997FB0DD94284E4BB95802 /* plist_helper.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = plist_helper.py; sourceTree = ""; }; - 36A2BF77DDB0DD644017E2CE /* app_locale_settings_es.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_es.pak; sourceTree = ""; }; - 36E584D217689689EE7C0B2E /* client_renderer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_renderer.cpp; sourceTree = ""; }; - 36EE862F886D7E5F8DD66BF6 /* ui.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ui.xcodeproj; path = ../ui/ui.xcodeproj; sourceTree = SOURCE_ROOT; }; - 373AC737314C99FC380A2C27 /* resource_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_context.h; sourceTree = ""; }; - 37477D39B7F50223303252D7 /* cef_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_types.h; sourceTree = ""; }; - 3756CB6513E7539C28E1EAC8 /* resource_request_job.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = resource_request_job.cc; sourceTree = ""; }; - 378DA12B5CDE121479554F64 /* lazy_re_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = lazy_re_unittest.py; sourceTree = ""; }; - 37E8B79CC806BBF17FDB37C0 /* browser_main.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_main.cc; sourceTree = ""; }; - 37EEED859E375D03300DA2E2 /* response_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = response_ctocpp.cc; sourceTree = ""; }; - 380B3BF381D78DB573A92FDA /* ui_strings_uk.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_uk.pak; sourceTree = ""; }; - 3825964A1CB210151CB59E5A /* zip_reader_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zip_reader_impl.h; sourceTree = ""; }; - 38290CC3CE5D634568EF6050 /* cef_strings_en-GB.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "cef_strings_en-GB.pak"; sourceTree = ""; }; - 387E6456D80AA7C58C2C2D83 /* app_locale_settings_en-US.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "app_locale_settings_en-US.pak"; sourceTree = ""; }; - 38A059AD263AA05F79A8D5E8 /* structure_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = structure_unittest.py; sourceTree = ""; }; - 394C924B399DD9EB11D4EA90 /* binary_value_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = binary_value_cpptoc.h; sourceTree = ""; }; - 394ED20393908DD4847D413E /* __init__.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = __init__.py; sourceTree = ""; }; - 39D2CC1ED178EB7C430ACCF4 /* webkit_strings_sv.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_sv.pak; sourceTree = ""; }; - 39E8E123C0A0556E41BB6D24 /* ui_strings_pt-PT.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "ui_strings_pt-PT.pak"; sourceTree = ""; }; - 3A045FCB7D7264E8890109A5 /* cef_ptr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_ptr.h; sourceTree = ""; }; - 3A9A1DB9915BB6FD0AB526A1 /* browser_settings.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_settings.cc; sourceTree = ""; }; - 3AE54F845BE947BBE2F671CD /* include.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = include.py; sourceTree = ""; }; - 3B15E335C3E87027FF66D749 /* cefclient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cefclient.h; sourceTree = ""; }; - 3BAFE6C07BA55E84B964C109 /* cef_context_menu_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_context_menu_handler_capi.h; sourceTree = ""; }; - 3BD182E8FB7A3E22134DF860 /* event_disposition.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = event_disposition.cc; sourceTree = ""; }; - 3BF77612B9FEC6BF25A6058B /* v8handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8handler_ctocpp.h; sourceTree = ""; }; - 3C04F16E9C7F9976C62C5507 /* cef_strings_hr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_hr.pak; sourceTree = ""; }; - 3C39C0CA9179567B35023165 /* app_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = app_ctocpp.cc; sourceTree = ""; }; - 3C71276E1976DF076B0A55B4 /* ui_strings_zh-CN.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "ui_strings_zh-CN.pak"; sourceTree = ""; }; - 3C894B3DABF6A17A1BA3CB68 /* cef_base_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_base_capi.h; sourceTree = ""; }; - 3CD3016562E16F98BD1F566B /* clique.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = clique.py; sourceTree = ""; }; - 3D04DBAC9593A9461C8ACB56 /* app_locale_settings_da.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_da.pak; sourceTree = ""; }; - 3D3157B668F5872BF7A22811 /* command_buffer.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = command_buffer.xcodeproj; path = ../gpu/command_buffer/command_buffer.xcodeproj; sourceTree = SOURCE_ROOT; }; - 3D51C5F18F401B6CDA5A660F /* context_menu_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = context_menu_handler_ctocpp.cc; sourceTree = ""; }; - 3D62F86A77EE5E930F24F3B3 /* domvisitor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domvisitor_cpptoc.cc; sourceTree = ""; }; - 3D8C3734F4BDB05000A0B9BC /* doc_writer_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = doc_writer_unittest.py; sourceTree = ""; }; - 3DB9E8B5EE2C9759E6EA76F6 /* cef_client_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_client_capi.h; sourceTree = ""; }; - 3E0E0DB9439B50E58A406601 /* ui_strings_ru.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_ru.pak; sourceTree = ""; }; - 3E3D7C67B9F21F228D244464 /* sqlite.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = sqlite.xcodeproj; path = ../third_party/sqlite/sqlite.xcodeproj; sourceTree = SOURCE_ROOT; }; - 3E5A0154F0820BB645B7B043 /* write_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = write_handler_ctocpp.h; sourceTree = ""; }; - 3E5C4D7D7C3CBCEF72F2384A /* newgrd.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = newgrd.py; sourceTree = ""; }; - 3ED85DBA0FE48F4029D02617 /* cef_display_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_display_handler_capi.h; sourceTree = ""; }; - 3F39DB28B8AD57286FA171CB /* urlrequest_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = urlrequest_ctocpp.h; sourceTree = ""; }; - 3F3E5D65FBA53AD358596510 /* cef_task_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_task_capi.h; sourceTree = ""; }; - 40084DD23D8A663A21AFEE0F /* cookie_manager_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cookie_manager_ctocpp.cc; sourceTree = ""; }; - 403DF4C0E5AB39FF055E4392 /* v8handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8handler_cpptoc.cc; sourceTree = ""; }; - 40EA4C2F8133B05D9D7E5A83 /* gmock.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = gmock.xcodeproj; path = ../testing/gmock.xcodeproj; sourceTree = SOURCE_ROOT; }; - 411B7B4E82F9CE8BCDB26F59 /* http_header_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = http_header_utils.h; sourceTree = ""; }; - 4167C920D1424F0634762262 /* cef_strings_lt.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_lt.pak; sourceTree = ""; }; - 420F3C36CE7631034364E422 /* __init__.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = __init__.py; sourceTree = ""; }; - 421637DBD3560D81535E4C3A /* WTF.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WTF.xcodeproj; path = ../third_party/WebKit/Source/WTF/WTF.gyp/WTF.xcodeproj; sourceTree = SOURCE_ROOT; }; - 4250DE201EE11DF56C6BA191 /* load_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = load_handler_ctocpp.cc; sourceTree = ""; }; - 426A81ACD2839880C079F32B /* unit.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = unit.py; sourceTree = ""; }; - 427D3A7ABEF53DE52685F32F /* libcups.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libcups.dylib; path = usr/lib/libcups.dylib; sourceTree = SDKROOT; }; - 42B0A821229EFB10F968E57F /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = ""; }; - 42BA615544865FC9F7795548 /* icu.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = icu.xcodeproj; path = ../third_party/icu/icu.xcodeproj; sourceTree = SOURCE_ROOT; }; - 42DE707AD9ECC0C360C2142A /* webkit_strings_fr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_fr.pak; sourceTree = ""; }; - 42F5E5FEA30EA64D92C39B72 /* auth_callback_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = auth_callback_cpptoc.h; sourceTree = ""; }; - 4335E893FC259036D8785066 /* content_resources.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = content_resources.xcodeproj; path = ../content/content_resources.xcodeproj; sourceTree = SOURCE_ROOT; }; - 43FC311667CE29FE323BFE5D /* PRESUBMIT.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = PRESUBMIT.py; sourceTree = ""; }; - 44382DD411BD299BDE154EDF /* ui_strings_et.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_et.pak; sourceTree = ""; }; - 44541A478EE0F105D27F1AF0 /* cef_strings_ta.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_ta.pak; sourceTree = ""; }; - 448DDF4F4E28EDFB07CFE568 /* preprocess_interface.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = preprocess_interface.py; sourceTree = ""; }; - 44A723FB55027DB9CEDE41A6 /* ui_strings_fa.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_fa.pak; sourceTree = ""; }; - 44DFD12329D6AF141C7803A7 /* webkit_strings_bg.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_bg.pak; sourceTree = ""; }; - 452131F0A02F514C887367A8 /* webkit_strings_te.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_te.pak; sourceTree = ""; }; - 4529EA2982A94B6A373FEBF8 /* auth_callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = auth_callback_ctocpp.cc; sourceTree = ""; }; - 4591B1B97998120F52F85520 /* rc_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = rc_unittest.py; sourceTree = ""; }; - 45B1C90753578D3F409B5445 /* scheme_handler_factory_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scheme_handler_factory_cpptoc.h; sourceTree = ""; }; - 45D4A61412E9D1F5B0824C4E /* muppet_strings_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = muppet_strings_unittest.py; sourceTree = ""; }; - 461BAAD82F8AB804176FDFE3 /* leveldatabase.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = leveldatabase.xcodeproj; path = ../third_party/leveldatabase/leveldatabase.xcodeproj; sourceTree = SOURCE_ROOT; }; - 46281DC2D06840820B4EC4AC /* cef_strings_cs.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_cs.pak; sourceTree = ""; }; - 46B44C3D02C7D9175C39DEC6 /* callback_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = callback_cpptoc.cc; sourceTree = ""; }; - 46D7068EB7F17F74723CA1B7 /* cookie_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cookie_unittest.cc; sourceTree = ""; }; - 46E883C7AF1E84BD492C9DFC /* xml_formatted_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = xml_formatted_writer.py; sourceTree = ""; }; - 47601D042653DA09EF8A0C8B /* localstorage.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = localstorage.html; sourceTree = ""; }; - 476478BD89A27581DFA1369F /* cef_pack_strings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_pack_strings.h; sourceTree = ""; }; - 476BDAB24D957D6802BC97D8 /* app_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = app_cpptoc.cc; sourceTree = ""; }; - 47A2DB909734C51FF232F713 /* focus_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = focus_handler_ctocpp.cc; sourceTree = ""; }; - 47F9DE33B3520A33631E64E7 /* process_message_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = process_message_ctocpp.cc; sourceTree = ""; }; - 48431A857D81049FAA37A88E /* js_map_format.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = js_map_format.py; sourceTree = ""; }; - 486CCA5D23871D838C4679B9 /* cef_render_process_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_render_process_handler.h; sourceTree = ""; }; - 486DAB7574B9E13840732E6D /* rc.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = rc.py; sourceTree = ""; }; - 48F9EEAD7EF4135C5C8BC961 /* webkit_strings_es.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_es.pak; sourceTree = ""; }; - 49AEA50476542BABAA469E49 /* event_utils.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = event_utils.mm; sourceTree = ""; }; - 49B228FEAE0E4BFBA9BB2266 /* download_manager_delegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_manager_delegate.h; sourceTree = ""; }; - 49C23F1EF21BEFFF47923163 /* client_app_delegates.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_app_delegates.cpp; sourceTree = ""; }; - 4A8F5A7994245C71941FF80A /* sv */ = {isa = PBXFileReference; lastKnownFileType = text; name = sv; path = sv.lproj/locale.pak; sourceTree = ""; }; - 4AAF21B270EDC337AAB2A1BC /* response_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = response_ctocpp.h; sourceTree = ""; }; - 4AC4CE6DD815BB901C3108F5 /* stream_reader_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stream_reader_ctocpp.h; sourceTree = ""; }; - 4AFA6ADB70815EFEBB45B818 /* stream_reader_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stream_reader_cpptoc.h; sourceTree = ""; }; - 4B4010CB2AD4974D4C8F8DC8 /* cef_app_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_app_capi.h; sourceTree = ""; }; - 4B5ADD9D75499F753CF4B5C6 /* plist_strings_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = plist_strings_writer.py; sourceTree = ""; }; - 4B66B0B8539132668FAF09E6 /* interface.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = interface.py; sourceTree = ""; }; - 4BBD9CB783AC852918EFEAAD /* cef_types_wrappers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_types_wrappers.h; sourceTree = ""; }; - 4BFBD85606BCD5295F158F56 /* webkit_strings_zh-CN.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "webkit_strings_zh-CN.pak"; sourceTree = ""; }; - 4C2E0E8BAE74F157CF8DE872 /* release.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = release.gypi; path = ../build/release.gypi; sourceTree = ""; }; - 4D235103EA04209B53D185B3 /* cef_strings_it.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_it.pak; sourceTree = ""; }; - 4DB1B86AAC941216FCA32E15 /* browser_main_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = browser_main_mac.mm; sourceTree = ""; }; - 4E2E4DD63F79536D568A7268 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; }; - 4EB85F5F7EB3A7B3221230A6 /* ppapi.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ppapi.xcodeproj; path = ../ppapi/ppapi.xcodeproj; sourceTree = SOURCE_ROOT; }; - 4EFD9E6CCD9D5AE5E19CBE7B /* app_locale_settings_en-GB.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "app_locale_settings_en-GB.pak"; sourceTree = ""; }; - 4EFE292D06E344DCCB3F36DA /* ca */ = {isa = PBXFileReference; lastKnownFileType = text; name = ca; path = ca.lproj/locale.pak; sourceTree = ""; }; - 4F0955093BC13E5E2267CBBC /* cef_download_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_download_handler.h; sourceTree = ""; }; - 4F303C29F3D1E527A63C3797 /* media.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = media.xcodeproj; path = ../media/media.xcodeproj; sourceTree = SOURCE_ROOT; }; - 4F41E3D04AC393353B1EF8B1 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; - 4F44FF29D7C26F262CD730CA /* download_manager_delegate.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_manager_delegate.cc; sourceTree = ""; }; - 4F477F6CB38631F10E929F69 /* url_network_delegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = url_network_delegate.h; sourceTree = ""; }; - 4F81A5C061994A3CF973DCD9 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; }; - 4FB77434E9211D828D8900D7 /* cefclient.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = cefclient.icns; sourceTree = ""; }; - 4FD83B3E31064A685C29F6A0 /* url_request_context_getter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = url_request_context_getter.h; sourceTree = ""; }; - 4FF6DCE2C8423908E6D32EFA /* v8exception_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8exception_ctocpp.h; sourceTree = ""; }; - 50066846B94BBDC728831F61 /* cef_browser_process_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_browser_process_handler_capi.h; sourceTree = ""; }; - 500B6AC913CA493D51567061 /* cef_task.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_task.h; sourceTree = ""; }; - 50120FB7D2C144CF82F14F53 /* interface.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = interface.py; sourceTree = ""; }; - 5060C2094E2CEBD78D98E36F /* webkit_strings_hr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_hr.pak; sourceTree = ""; }; - 5077ADEACE5517E5F138A071 /* th */ = {isa = PBXFileReference; lastKnownFileType = text; name = th; path = th.lproj/locale.pak; sourceTree = ""; }; - 50904314745D75720421875B /* disposition_utils.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = disposition_utils.cc; sourceTree = ""; }; - 50B64687B1239AFA23F8E464 /* cef_string_visitor_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_visitor_capi.h; sourceTree = ""; }; - 50DA499BC7B870350F0B702F /* menu_controller.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = menu_controller.h; sourceTree = ""; }; - 50FDEBC89683ECEDA4ADB6A8 /* app_locale_settings_th.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_th.pak; sourceTree = ""; }; - 51010D89047ECE793711047F /* tracker.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = tracker.h; sourceTree = ""; }; - 511DFC813E6674C7EA914805 /* javascript_dialog_creator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = javascript_dialog_creator.cc; sourceTree = ""; }; - 511EC264157FFCCDE8CCC1C2 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; - 518172B054CD1F54D77451B4 /* time_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = time_util.h; sourceTree = ""; }; - 51AE0CA1355F7A0775D3A1D0 /* browser_host_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_host_impl.cc; sourceTree = ""; }; - 51EE88270035C12D12B0B3A7 /* rc2grd_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = rc2grd_unittest.py; sourceTree = ""; }; - 51FCD3E7D567DF1A48B76769 /* base_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = base_cpptoc.h; sourceTree = ""; }; - 521CF1A5BF607EC6D5628149 /* __init__.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = __init__.py; sourceTree = ""; }; - 5232F8242937DE8B5E28F994 /* browser_main.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_main.h; sourceTree = ""; }; - 523BF7F077DA578B4191F087 /* cef_strings_mr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_mr.pak; sourceTree = ""; }; - 5243D729B37F95262AC8F6FD /* urlrequest_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = urlrequest_impl.cc; sourceTree = ""; }; - 5254CA911DB271FD83811B90 /* devtools_discovery_page.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = devtools_discovery_page.html; sourceTree = ""; }; - 52AC11600DD3A1C9B6499C87 /* jsdialog_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = jsdialog_unittest.cc; sourceTree = ""; }; - 52D6F3198D44B31AF5068E98 /* html_inline.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = html_inline.py; sourceTree = ""; }; - 5323D57C484D43060D172B7C /* focus_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = focus_handler_ctocpp.h; sourceTree = ""; }; - 53488D368BB9562703A75203 /* cef_strings_nb.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_nb.pak; sourceTree = ""; }; - 5400F37F18ACCCBFE7562D10 /* string_multimap_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_multimap_impl.cc; sourceTree = ""; }; - 541553E5FE02113AC639ECD1 /* main_delegate.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main_delegate.cc; sourceTree = ""; }; - 5443183CF36A8753D44E27DB /* domnode_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domnode_cpptoc.h; sourceTree = ""; }; - 54A6B02FA001B6569F481D8F /* adml_writer_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = adml_writer_unittest.py; sourceTree = ""; }; - 54E670EE54F4600111F1A3BE /* menu_model_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = menu_model_ctocpp.cc; sourceTree = ""; }; - 55CC2E6AF87F44E121C68ABE /* buildinfo.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = buildinfo.py; sourceTree = ""; }; - 55DB375A3CC916F84D8CCE4A /* v8.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = v8.xcodeproj; path = ../v8/tools/gyp/v8.xcodeproj; sourceTree = SOURCE_ROOT; }; - 55E5C055CA03407284B1E92C /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; }; - 55ED39C002EBB5CCD16E0BA3 /* ui_strings_lv.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_lv.pak; sourceTree = ""; }; - 5613ACDDE51DE1A506D91AE5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 561BF6A655EF750B0F26C0F7 /* jsdialog_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = jsdialog_handler_ctocpp.cc; sourceTree = ""; }; - 565D44D754C3A2BDA29B7E25 /* scheme_test.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scheme_test.h; sourceTree = ""; }; - 567A85368C6CF8CF07878874 /* webkit_strings_es-419.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "webkit_strings_es-419.pak"; sourceTree = ""; }; - 57660E666F3E2F8437F136E7 /* cef_command_line_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_command_line_capi.h; sourceTree = ""; }; - 577E4529B37A372EC7982CCD /* cef_strings_zh-CN.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "cef_strings_zh-CN.pak"; sourceTree = ""; }; - 57A26B6D62FCA51F8C4DC37D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - 57A73EB7B742ECF9233F5E3C /* client_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_renderer.h; sourceTree = ""; }; - 57DAB1E10A9A44D749F451E2 /* webkit_strings_hu.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_hu.pak; sourceTree = ""; }; - 585D881341ADB1E66C55A49C /* ui_strings_de.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_de.pak; sourceTree = ""; }; - 585DEF23D9BFD4D198D6EA33 /* ui_strings_ml.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_ml.pak; sourceTree = ""; }; - 586069E4DE0F00ABACB87AEF /* web_plugin_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = web_plugin_impl.cc; sourceTree = ""; }; - 588E6DF15E9D2FF032287599 /* devtools_resources.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = devtools_resources.h; sourceTree = ""; }; - 58E1C7A6EE126C2D92CE13DD /* download_manager_delegate_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = download_manager_delegate_mac.mm; sourceTree = ""; }; - 58EAA82466055251156313DB /* cefclient Helper.app */ = {isa = PBXFileReference; lastKnownFileType = wrapper.application; path = "cefclient Helper.app"; sourceTree = ""; }; - 59794A1EE30CB19313E4C75C /* cef_xml_reader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_xml_reader.h; sourceTree = ""; }; - 59C38FB9F040D2D6A36C9F79 /* v8value_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8value_ctocpp.h; sourceTree = ""; }; - 59EAB9E13038989009194B97 /* webkit_chromium_resources.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_chromium_resources.pak; sourceTree = ""; }; - 5A208C2BA07A723EA111E6FE /* response_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = response_impl.h; sourceTree = ""; }; - 5AD9CBEEB6751780A250053B /* command_line_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = command_line_ctocpp.h; sourceTree = ""; }; - 5B6A2744649C07D4164F6649 /* resource_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = resource_handler_ctocpp.cc; sourceTree = ""; }; - 5B71AA10477E9E5993D8F79B /* ru */ = {isa = PBXFileReference; lastKnownFileType = text; name = ru; path = ru.lproj/locale.pak; sourceTree = ""; }; - 5BBDA43E2EEAC35BBC7E9207 /* cef_process_message_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_process_message_capi.h; sourceTree = ""; }; - 5BD5BBF7DBC575DC17C35D72 /* cef_xml_object.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_xml_object.h; sourceTree = ""; }; - 5BE98613E89F29801EBFFEC3 /* webkit_strings_nb.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_nb.pak; sourceTree = ""; }; - 5C73B895D250886CB5582389 /* domaccess.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = domaccess.html; sourceTree = ""; }; - 5C92D3A27E73BD53BB4E2F25 /* menu_creator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = menu_creator.cc; sourceTree = ""; }; - 5CE0453C5A2622362B584F68 /* scheme_registrar_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_registrar_impl.cc; sourceTree = ""; }; - 5D0959B70633F8D90C216DDF /* ui_strings_en-GB.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "ui_strings_en-GB.pak"; sourceTree = ""; }; - 5D8769F23C7A85537ACD9C04 /* webkit_strings_id.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_id.pak; sourceTree = ""; }; - 5D9B72F98520D246C6C638AD /* skeleton_gatherer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = skeleton_gatherer.py; sourceTree = ""; }; - 5DA409E878B3995C3EB7E55B /* modules.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = modules.xcodeproj; path = ../third_party/webrtc/modules/modules.xcodeproj; sourceTree = SOURCE_ROOT; }; - 5E15A40C287847BB8E1910B1 /* message.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = message.py; sourceTree = ""; }; - 5E3EFC4ADFF566FEB0AAE6E4 /* resource_util_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = resource_util_mac.mm; sourceTree = ""; }; - 5E46501D71E2CB64BE224B5D /* dom_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dom_unittest.cc; sourceTree = ""; }; - 5E7E4D55681ECE4B05F2414C /* data_pack_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = data_pack_unittest.py; sourceTree = ""; }; - 5EB77B80F2135DA9BDEE4387 /* cef_context_menu_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_context_menu_handler.h; sourceTree = ""; }; - 5F1F81C6FC28B3E39FC17988 /* xml_reader_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = xml_reader_cpptoc.cc; sourceTree = ""; }; - 5F2B2BFABAAE633D56780C3F /* command_line_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = command_line_impl.cc; sourceTree = ""; }; - 5F4B6A88DBE351CE983397EB /* scheme_handler_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_handler_unittest.cc; sourceTree = ""; }; - 5F71AEFBBD062CE8E4B035CD /* string_visitor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_visitor_cpptoc.cc; sourceTree = ""; }; - 5F7BB33A9B300F224F9555C9 /* cef_v8_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_v8_capi.h; sourceTree = ""; }; - 5FA82BA0F4237B9D72F3F4AB /* context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = context.cc; sourceTree = ""; }; - 5FAC99DFA973BEE73C9D81E9 /* webkit_strings_ro.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_ro.pak; sourceTree = ""; }; - 60094E2013060E84B9F0A442 /* request_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = request_impl.h; sourceTree = ""; }; - 604AD17ACC7B9777DE1303D5 /* cef_resource_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_resource_handler_capi.h; sourceTree = ""; }; - 60500211E4E81B16B827F3A8 /* download_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_handler_ctocpp.h; sourceTree = ""; }; - 60BDE740DC8E69DC493B2F84 /* zh_CN */ = {isa = PBXFileReference; lastKnownFileType = text; name = zh_CN; path = zh_CN.lproj/locale.pak; sourceTree = ""; }; - 60D541BCDBD964C84437C645 /* string_types_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_types_impl.cc; sourceTree = ""; }; - 60FDBC13FBB130A5982C0CC1 /* cef_unittests.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = cef_unittests.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 610B4D7BD43F5228DDA22ED7 /* cef_process_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_process_util.h; sourceTree = ""; }; - 617F27E76D033D2C52956AB8 /* web_plugin_info_visitor_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = web_plugin_info_visitor_ctocpp.h; sourceTree = ""; }; - 618CA731E5FCE115CCD258F3 /* app_locale_settings_mr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_mr.pak; sourceTree = ""; }; - 621075EE773DB9ADF51EEFAE /* app_locale_settings_ms.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_ms.pak; sourceTree = ""; }; - 621C08700150DEB6EBBBF8CC /* post_data_element_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = post_data_element_ctocpp.cc; sourceTree = ""; }; - 624D01F77B976B95E0FAC6E8 /* app_locale_settings_tr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_tr.pak; sourceTree = ""; }; - 62BD83A69788540F5493CC6D /* app_locale_settings_bn.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_bn.pak; sourceTree = ""; }; - 62D155EAC030B92E5833CC71 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text; name = cs; path = cs.lproj/locale.pak; sourceTree = ""; }; - 62E38C90F6ACF232E9540430 /* cef_proxy_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_proxy_handler_capi.h; sourceTree = ""; }; - 63589532FDDE3888E6D68564 /* content.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = content.xcodeproj; path = ../content/content.xcodeproj; sourceTree = SOURCE_ROOT; }; - 639AAEAA42A9B69771AFDAE1 /* dom_test.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dom_test.h; sourceTree = ""; }; - 63D5643A6EAC02B3D51EDFBB /* cef_zip_reader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_zip_reader.h; sourceTree = ""; }; - 641751712624080410E91CB3 /* count.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = count.py; sourceTree = ""; }; - 646366A7F1714B899E3340BA /* callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = callback_ctocpp.h; sourceTree = ""; }; - 648CCECC870023D06F575757 /* libresolv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libresolv.dylib; path = usr/lib/libresolv.dylib; sourceTree = SDKROOT; }; - 64D04DE76C59E3FB85DFA72C /* base_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = base_unittest.py; sourceTree = ""; }; - 64E0007CFC11C8A546F99276 /* v8context_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8context_cpptoc.cc; sourceTree = ""; }; - 6569C982849C795FA1D77C0D /* ui_strings_te.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_te.pak; sourceTree = ""; }; - 65EC939FBA72F086E83B5E67 /* cef_strings_fake-bidi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "cef_strings_fake-bidi.pak"; sourceTree = ""; }; - 66321C17937EFD7899A0C371 /* request_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = request_ctocpp.h; sourceTree = ""; }; - 668C83DE4FD97FDAF9A1743C /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; - 6741F51DA01588D368B31427 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text; name = hr; path = hr.lproj/locale.pak; sourceTree = ""; }; - 679EE00993C436A33C876FE8 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; }; - 67E2346E369D700890BAC5F2 /* browser_message_filter.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_message_filter.cc; sourceTree = ""; }; - 6899516D68CBC48011638AA3 /* download_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_handler_cpptoc.cc; sourceTree = ""; }; - 68BC095520583C85894071BD /* grit_info.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = grit_info.py; sourceTree = ""; }; - 694DE4CBA4F0460BAAB3ACBB /* scons.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = scons.py; sourceTree = ""; }; - 696A201AD5DADB31D39F9821 /* app_locale_settings_kn.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_kn.pak; sourceTree = ""; }; - 698C6F90A03997EC66CFABA1 /* ffmpegsumo.so */ = {isa = PBXFileReference; lastKnownFileType = text; path = ffmpegsumo.so; sourceTree = ""; }; - 6991125C79C2BFE97903DCF9 /* sfntly.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = sfntly.xcodeproj; path = ../third_party/sfntly/sfntly.xcodeproj; sourceTree = SOURCE_ROOT; }; - 69C419E03B9AAA605E8ED2DA /* repack_locales.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = repack_locales.py; sourceTree = ""; }; - 69C916786797700DC9969DA2 /* ui_strings_pl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_pl.pak; sourceTree = ""; }; - 6A120E36DD430329E402BAD5 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text; name = sl; path = sl.lproj/locale.pak; sourceTree = ""; }; - 6A3B8076CA7CD96C8E25A966 /* openmax.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = openmax.xcodeproj; path = ../third_party/openmax/openmax.xcodeproj; sourceTree = SOURCE_ROOT; }; - 6A42142B50855298FBE0CB4E /* browser_host_impl_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = browser_host_impl_mac.mm; sourceTree = ""; }; - 6A5D0244576BE203CC940B0F /* cef_values.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_values.h; sourceTree = ""; }; - 6A8A5FC8599E16C4CE106A47 /* ots.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ots.xcodeproj; path = ../third_party/ots/ots.xcodeproj; sourceTree = SOURCE_ROOT; }; - 6AAF07370A423CF8AC644D16 /* lt */ = {isa = PBXFileReference; lastKnownFileType = text; name = lt; path = lt.lproj/locale.pak; sourceTree = ""; }; - 6ABBA458072A19A85269F56F /* test_suite_all.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = test_suite_all.py; sourceTree = ""; }; - 6B2EBA3530CDC6B770ADE84A /* cef_strings_sv.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_sv.pak; sourceTree = ""; }; - 6B3D4F2A31928792F3A97970 /* string_visitor_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = string_visitor_ctocpp.h; sourceTree = ""; }; - 6B5367A2A25C39A54B3D8E29 /* xml_reader_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = xml_reader_unittest.cc; sourceTree = ""; }; - 6B57B9E2B3A48DA03AE7AE74 /* disposition_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = disposition_utils.h; sourceTree = ""; }; - 6BA5FC1DD74344A5BE308E65 /* cef_focus_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_focus_handler_capi.h; sourceTree = ""; }; - 6C06B951A9E79A8C04E770F1 /* request_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = request_unittest.cc; sourceTree = ""; }; - 6C401F20E3AC9FF553252DC8 /* javascript_dialog_creator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = javascript_dialog_creator.h; sourceTree = ""; }; - 6CDFE332A71B9843DDFC84A0 /* client_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_handler.h; sourceTree = ""; }; - 6CE1EC98D36F4A66660D5948 /* test_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = test_util.h; sourceTree = ""; }; - 6CEE8EFAD8AE1F9992935CB5 /* cef_browser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_browser.h; sourceTree = ""; }; - 6D19A7B6453E43B9F0979372 /* resource_dispatcher_host_delegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_dispatcher_host_delegate.h; sourceTree = ""; }; - 6D811744DC5B0D7A3138A2A8 /* webkit_strings_sw.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_sw.pak; sourceTree = ""; }; - 6DE552DE833DCAC5A7DF4BE7 /* es_419 */ = {isa = PBXFileReference; lastKnownFileType = text; name = es_419; path = es_419.lproj/locale.pak; sourceTree = ""; }; - 6DF28A5F1DB6F9C73A1E6F57 /* life_span_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = life_span_handler_cpptoc.cc; sourceTree = ""; }; - 6DFCAB3FE3A07471E7E8DF7A /* path_util_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = path_util_impl.cc; sourceTree = ""; }; - 6E2EF60B78CBC85EA7267E5B /* cef_urlrequest_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_urlrequest_capi.h; sourceTree = ""; }; - 6E33046A4EDB56251FF60662 /* libcef.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libcef.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; - 6E8884157B62992B4215B66A /* webkit_strings_ar.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_ar.pak; sourceTree = ""; }; - 6EBBB1D6E6BAD26E07BFF9F2 /* app_locale_settings_ta.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_ta.pak; sourceTree = ""; }; - 6EDDEACC058D3A3FC188F4BC /* post_data_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = post_data_ctocpp.cc; sourceTree = ""; }; - 6EE3CEA7D97DE0E4E9F7C92B /* urlrequest_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = urlrequest_cpptoc.cc; sourceTree = ""; }; - 6EFE5DB322697063C5273BB5 /* cef_paths2.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_paths2.gypi; sourceTree = ""; }; - 6F0E17598B497B0F9754066C /* c_format.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = c_format.py; sourceTree = ""; }; - 6F285D14138F575EB07E3D6B /* xmb_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = xmb_unittest.py; sourceTree = ""; }; - 6F607F245C208EB8A961B1F4 /* app_locale_settings_ro.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_ro.pak; sourceTree = ""; }; - 6FCE946FA0283D08BACC1771 /* misc_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = misc_unittest.py; sourceTree = ""; }; - 70459A5B49BE23629CC0DBC4 /* chrome_scaled_image.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = chrome_scaled_image.py; sourceTree = ""; }; - 705846BB8F452399EFCF2451 /* build_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = build_unittest.py; sourceTree = ""; }; - 7074163F5AAED437A99C2E10 /* life_span_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = life_span_handler_ctocpp.h; sourceTree = ""; }; - 710DB1EC856181BE60FC17CC /* list_value_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = list_value_ctocpp.h; sourceTree = ""; }; - 712BB594138FAD0EA6092CB9 /* scheme_test.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_test.cpp; sourceTree = ""; }; - 715EF92D9C1E94128B193C88 /* build.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = build.py; sourceTree = ""; }; - 71682F05AB957D4FB877358C /* speech_proto.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = speech_proto.xcodeproj; path = ../content/browser/speech/proto/speech_proto.xcodeproj; sourceTree = SOURCE_ROOT; }; - 718379D5B4EC037834401B14 /* menu_model_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = menu_model_impl.h; sourceTree = ""; }; - 71CA3191CD43BF1BF3DDC918 /* thread_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = thread_util.h; sourceTree = ""; }; - 71F7F7EF3478453D96C1C5D7 /* cef_strings_sl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_sl.pak; sourceTree = ""; }; - 72540D05FC3553AD383B2F3F /* list_value_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = list_value_ctocpp.cc; sourceTree = ""; }; - 726AD028360CE3C2B2DD85F5 /* preprocess_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = preprocess_unittest.py; sourceTree = ""; }; - 729A2C7E82535377AF318E1C /* ui_strings_sk.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_sk.pak; sourceTree = ""; }; - 72B1A066321F72C7B897FE4C /* buildinfo_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = buildinfo_unittest.py; sourceTree = ""; }; - 72C7E6EF7FA246FD7F6588CA /* io.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = io.py; sourceTree = ""; }; - 72F60CEAFFDEE60993320A54 /* misc.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = misc.py; sourceTree = ""; }; - 72FB6EEF729DD9BE4DE9913C /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = ""; }; - 731F5270DCA0C5F127CDB37C /* response_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = response_impl.cc; sourceTree = ""; }; - 73467F9CB00DFEDF2093D88B /* pl */ = {isa = PBXFileReference; lastKnownFileType = text; name = pl; path = pl.lproj/locale.pak; sourceTree = ""; }; - 737E0164E14751345C26E7B7 /* tclib.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = tclib.py; sourceTree = ""; }; - 738990D27BC0E432A3588FAD /* webkit_resources.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = webkit_resources.h; sourceTree = ""; }; - 7400FF71541B599F6E09045A /* app_locale_settings_sl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_sl.pak; sourceTree = ""; }; - 741FA37F8AA91FDCA7F7D0EF /* domevent_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domevent_cpptoc.h; sourceTree = ""; }; - 746B2C1A2751D807C992896A /* cef_callback_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_callback_capi.h; sourceTree = ""; }; - 748471578ED2BCF616FE627B /* cef_resource_bundle_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_resource_bundle_handler_capi.h; sourceTree = ""; }; - 74EF14161F0A734FCB88E4D8 /* da */ = {isa = PBXFileReference; lastKnownFileType = text; name = da; path = da.lproj/locale.pak; sourceTree = ""; }; - 750C4EE3154FC1DDFA918C65 /* menu_model_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = menu_model_ctocpp.h; sourceTree = ""; }; - 7561B5E1D6E73275673FA6F4 /* pseudo.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = pseudo.py; sourceTree = ""; }; - 7569642FE0516CE15E0EB10B /* frame_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = frame_impl.cc; sourceTree = ""; }; - 75C5A31CBBB197ED3436E4F2 /* download_item_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_item_cpptoc.cc; sourceTree = ""; }; - 75D67087AD73BEE4616C28F1 /* scheme_registrar_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_registrar_ctocpp.cc; sourceTree = ""; }; - 7617F7356CF67916645EB77F /* cef_strings_pt-BR.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "cef_strings_pt-BR.pak"; sourceTree = ""; }; - 761F9B6F7D9C5D58B7800485 /* context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context.h; sourceTree = ""; }; - 7657BFF87514B88894C02714 /* zip_reader_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zip_reader_ctocpp.h; sourceTree = ""; }; - 765F54EF5B25F19B12554C17 /* cookie_visitor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cookie_visitor_cpptoc.h; sourceTree = ""; }; - 767F7EE6C0A57FDC0A2BCF1C /* QTKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; }; - 76E444CBCD615065EED446E0 /* webkit_strings_pt-BR.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "webkit_strings_pt-BR.pak"; sourceTree = ""; }; - 771A5322D55C430A25BFB6DE /* request_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = request_handler_cpptoc.cc; sourceTree = ""; }; - 77394B70985CB75AE307ED79 /* cef_resource_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_resource_handler.h; sourceTree = ""; }; - 77447207CC3EC0AF7BB29C8F /* cef_strings_tr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_tr.pak; sourceTree = ""; }; - 78A73BE9C6C0FCF92CB7CB09 /* domevent_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domevent_ctocpp.h; sourceTree = ""; }; - 78B16B5577F0099FE17A1B76 /* xtb_reader_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = xtb_reader_unittest.py; sourceTree = ""; }; - 78D08A88F7CD548C7B49CC11 /* cef_url.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_url.h; sourceTree = ""; }; - 79234382345BA3C64994D511 /* cef_tuple.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_tuple.h; sourceTree = ""; }; - 794985FF05FCCFB42BFAD90F /* cef_strings_vi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_vi.pak; sourceTree = ""; }; - 796D220B79FC44A95CE17BDE /* te */ = {isa = PBXFileReference; lastKnownFileType = text; name = te; path = te.lproj/locale.pak; sourceTree = ""; }; - 79CF3557612C4997DAB1A862 /* allocator.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = allocator.xcodeproj; path = ../base/allocator/allocator.xcodeproj; sourceTree = SOURCE_ROOT; }; - 79CF4C48CC4458DFB82FF6A5 /* cef_strings_et.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_et.pak; sourceTree = ""; }; - 79D9F5E9B68280119AB412F5 /* post_data_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = post_data_ctocpp.h; sourceTree = ""; }; - 79DA1DA7F891159BACFC01F9 /* auth_callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = auth_callback_ctocpp.h; sourceTree = ""; }; - 7A7D3194355A8B0B087AB0F7 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text; name = ko; path = ko.lproj/locale.pak; sourceTree = ""; }; - 7AEB3EE43AF0938894DE8C2B /* web_plugin_info_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = web_plugin_info_cpptoc.cc; sourceTree = ""; }; - 7AF2CED60ABFFC142836AD41 /* app_locale_settings_ja.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_ja.pak; sourceTree = ""; }; - 7AF4BB98B58929D0BFDC2D3C /* webkit_strings_lt.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_lt.pak; sourceTree = ""; }; - 7AF867AA9FC440565FAC0950 /* webkit_strings_it.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_it.pak; sourceTree = ""; }; - 7B45BEE2E7E45FA556D3FC44 /* post_data_element_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = post_data_element_ctocpp.h; sourceTree = ""; }; - 7B65E2D31221886EBDF33C1E /* cef_render_process_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_render_process_handler_capi.h; sourceTree = ""; }; - 7B741C9DBC45EA55A3B1B633 /* test_suite.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = test_suite.cc; sourceTree = ""; }; - 7C28C9975417680D544A5BA4 /* libwebp.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libwebp.xcodeproj; path = ../third_party/libwebp/libwebp.xcodeproj; sourceTree = SOURCE_ROOT; }; - 7C75D1B55249E9B2D60AED98 /* cef_string_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_types.h; sourceTree = ""; }; - 7D4274E53C774448014738F7 /* chrome_html_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = chrome_html_unittest.py; sourceTree = ""; }; - 7DF1D2D0221960F8BFD30EEE /* binary_value_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = binary_value_ctocpp.h; sourceTree = ""; }; - 7E0D94AA2AA4A03F0193832B /* plist_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = plist_writer.py; sourceTree = ""; }; - 7E9C21B18AE55F7B6C178E61 /* webkit_strings_ru.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_ru.pak; sourceTree = ""; }; - 7F1DCC53C9DB0A1C4F1ECE2C /* keyboard_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = keyboard_handler_ctocpp.cc; sourceTree = ""; }; - 7F495BA8C8C936D373D7924B /* process_message_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = process_message_impl.h; sourceTree = ""; }; - 7FCC66352C9D74203077F2BA /* http_header_utils.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = http_header_utils.cc; sourceTree = ""; }; - 7FF808AAC31F250C348EC7C4 /* cef_strings_id.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_id.pak; sourceTree = ""; }; - 806ECE12D0E1388D810EAFB6 /* cef_xml_reader_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_xml_reader_capi.h; sourceTree = ""; }; - 807894F2C9EC4212FB1BD2CB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 80945157DB28BE61632B1E36 /* resource_bundle_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_bundle_handler_ctocpp.h; sourceTree = ""; }; - 80E1D3C0C90A9611E57BDE85 /* tclib.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = tclib.py; sourceTree = ""; }; - 80FABF2C108132E99FF6CD2C /* filename_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = filename_unittest.py; sourceTree = ""; }; - 8105CA51505C648E67552EC4 /* download_item_callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_item_callback_ctocpp.h; sourceTree = ""; }; - 81083F64C1E316C4C7B97590 /* __init__.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = __init__.py; sourceTree = ""; }; - 8170973032F443C76652C300 /* cef_display_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_display_handler.h; sourceTree = ""; }; - 81B31A421FA8B15344436AA7 /* common_audio.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = common_audio.xcodeproj; path = ../third_party/webrtc/common_audio/common_audio.xcodeproj; sourceTree = SOURCE_ROOT; }; - 81E23DC5D3BDCD65A0767A73 /* cef_runnable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_runnable.h; sourceTree = ""; }; - 8203F74736B14AD3D84B5215 /* resource_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_handler_ctocpp.h; sourceTree = ""; }; - 821F22742E14E5EBB9BD5C10 /* gu */ = {isa = PBXFileReference; lastKnownFileType = text; name = gu; path = gu.lproj/locale.pak; sourceTree = ""; }; - 82D9267508954B762CA4DA09 /* empty.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = empty.py; sourceTree = ""; }; - 82DACC558D6C9791E80B0D9A /* scheme_registrar_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scheme_registrar_impl.h; sourceTree = ""; }; - 832FB47A11CB7F9D7006944F /* context_menu_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = context_menu_handler_cpptoc.cc; sourceTree = ""; }; - 83813FFC96ED9BA50A4F2072 /* zh_TW */ = {isa = PBXFileReference; lastKnownFileType = text; name = zh_TW; path = zh_TW.lproj/locale.pak; sourceTree = ""; }; - 83A8579EFC53B0B57F009E48 /* cef_string_wrappers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_wrappers.h; sourceTree = ""; }; - 83A8EF06FD1C6CF08CBCBE1B /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; }; - 842C3CD9BAE3CEF1F7B482F1 /* web_plugin_info_visitor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = web_plugin_info_visitor_cpptoc.h; sourceTree = ""; }; - 847CD6CDF3ECAD677675D7AF /* cef_strings_sk.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_sk.pak; sourceTree = ""; }; - 84BA24AC65D242008E562F4A /* urlrequest_client_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = urlrequest_client_cpptoc.cc; sourceTree = ""; }; - 84C7CFBD54B4BF935F72B506 /* scheme_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_impl.cc; sourceTree = ""; }; - 84EA5424F8B6B4C6138402A8 /* adml_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = adml_writer.py; sourceTree = ""; }; - 8508EC329657CF53E16F1D01 /* cef_resources.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_resources.pak; sourceTree = ""; }; - 850FF5EF5174D22356396681 /* ui_strings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ui_strings.h; sourceTree = ""; }; - 8510CB875D2FF04CC72D31FB /* writer_unittest_common.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = writer_unittest_common.py; sourceTree = ""; }; - 852E3E9379EE3E0A9039D014 /* BogoFP.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = BogoFP.py; sourceTree = ""; }; - 858C2D5C8CC42547CFC86498 /* app_locale_settings_es-419.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "app_locale_settings_es-419.pak"; sourceTree = ""; }; - 85AE1E1E67C77F50EA88BD66 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text; name = vi; path = vi.lproj/locale.pak; sourceTree = ""; }; - 86184CB258BD6D57B44C5733 /* cef_strings_ml.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_ml.pak; sourceTree = ""; }; - 861B32FB07E1CC6FE369E3C6 /* keyboard_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = keyboard_handler_ctocpp.h; sourceTree = ""; }; - 8655427EA10E4D926EEAF92A /* PRESUBMIT.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = PRESUBMIT.py; sourceTree = ""; }; - 86F590426D755AA5BA84C09E /* jsdialog_callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = jsdialog_callback_ctocpp.h; sourceTree = ""; }; - 86FD5E59321079A429D3F6A7 /* app_locale_settings_lt.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_lt.pak; sourceTree = ""; }; - 87A4D3C6BA9F10864D1F273D /* cef_strings_hi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_hi.pak; sourceTree = ""; }; - 87F45A638FBE61B6FDF891DC /* WebKit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WebKit.xcodeproj; path = ../third_party/WebKit/Source/WebKit/chromium/WebKit.xcodeproj; sourceTree = SOURCE_ROOT; }; - 8817D7F4FBBA2D42EF516513 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; }; - 88D2B183F026169B59F0AF61 /* cef_strings_ca.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_ca.pak; sourceTree = ""; }; - 88E0D3C1C49E1286F9B4ED96 /* domevent_listener_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domevent_listener_ctocpp.h; sourceTree = ""; }; - 88E59696A3A0233E5E0F880F /* cef_dom.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_dom.h; sourceTree = ""; }; - 89220459E7C4ACEA47FE8D44 /* display_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = display_handler_cpptoc.cc; sourceTree = ""; }; - 8948E45DD951A069CAF5AC80 /* cef_types_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_types_mac.h; sourceTree = ""; }; - 8979600041C4474AD19BD3DC /* release_impl.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = release_impl.gypi; path = ../build/internal/release_impl.gypi; sourceTree = ""; }; - 89B77017A9EC70BA421EFAF7 /* cef_byte_read_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cef_byte_read_handler.cc; sourceTree = ""; }; - 8A15B1BB8A62EC95076E6DEC /* webkit_strings_hi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_hi.pak; sourceTree = ""; }; - 8A1657A5074BE6A5ACFBDA57 /* cef_strings_de.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_de.pak; sourceTree = ""; }; - 8A1A6FA2F84381B4C6F7645E /* plist_strings_writer_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = plist_strings_writer_unittest.py; sourceTree = ""; }; - 8A59126EFE9C5D97F374F4E3 /* ui_strings_hu.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_hu.pak; sourceTree = ""; }; - 8A8806D9491FFB692E6B67CE /* ppapi_internal.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ppapi_internal.xcodeproj; path = ../ppapi/ppapi_internal.xcodeproj; sourceTree = SOURCE_ROOT; }; - 8A8F46D578D570415EBDE473 /* binary_value_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = binary_value_cpptoc.cc; sourceTree = ""; }; - 8A9A71B5AC55058C531A10FA /* display_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = display_handler_cpptoc.h; sourceTree = ""; }; - 8AA64D0F18ADA015BFE201A5 /* json_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = json_writer.py; sourceTree = ""; }; - 8AA6E9DC8966C36467FEA316 /* webkit_strings_tr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_tr.pak; sourceTree = ""; }; - 8AED9F7315C52F2A620486CD /* cef.gyp */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef.gyp; sourceTree = ""; }; - 8B0D5DB6543C85BC22C1EA1A /* zip_reader_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zip_reader_cpptoc.h; sourceTree = ""; }; - 8B5021FC3D1392A6EAB8E5D3 /* postprocess_interface.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = postprocess_interface.py; sourceTree = ""; }; - 8B956AE1B815ACBF853C38A5 /* content_renderer_client.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = content_renderer_client.cc; sourceTree = ""; }; - 8BA02D444B3792D97FDCEECE /* cef_switches.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cef_switches.cc; sourceTree = ""; }; - 8C0C651ED6C209FA6A64751A /* domvisitor_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domvisitor_ctocpp.cc; sourceTree = ""; }; - 8C138B705D2D3C374E61DB8B /* cef_string_list.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_list.h; sourceTree = ""; }; - 8C92E6384542431595EF50A7 /* life_span_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = life_span_handler_ctocpp.cc; sourceTree = ""; }; - 8CB4088B971ED0D651106CD1 /* cookie_manager_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cookie_manager_ctocpp.h; sourceTree = ""; }; - 8CF0FFC054798BB8914DDBD8 /* data_pack.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = data_pack.py; sourceTree = ""; }; - 8D08F86EAC1279F520694642 /* frame_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = frame_impl.h; sourceTree = ""; }; - 8D290D79F3EF4612A4721B41 /* grd_reader_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = grd_reader_unittest.py; sourceTree = ""; }; - 8DD5724290D4064CB1982F99 /* cef_frame_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_frame_capi.h; sourceTree = ""; }; - 8DF06BB0F4FB0F0B2222B9E2 /* ui_resources_standard.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_resources_standard.pak; sourceTree = ""; }; - 8E14B6DD6174354A3AA97B3C /* cef_jsdialog_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_jsdialog_handler_capi.h; sourceTree = ""; }; - 8E197CF075AE60301D046E20 /* keyboard_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = keyboard_handler_cpptoc.cc; sourceTree = ""; }; - 8E4CDC7E28233AAF8A1353E0 /* ui_strings_sw.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_sw.pak; sourceTree = ""; }; - 8E7F353C35FE393BB527D3D4 /* url_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = url_unittest.cc; sourceTree = ""; }; - 8EC24B77969614A9E69D79F8 /* ui_strings_zh-TW.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "ui_strings_zh-TW.pak"; sourceTree = ""; }; - 8ECFAA9E466819116DFF920F /* flac.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = flac.xcodeproj; path = ../third_party/flac/flac.xcodeproj; sourceTree = SOURCE_ROOT; }; - 8F1DDCCC2B12987556CB7A6B /* browser_host_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_host_impl.h; sourceTree = ""; }; - 8F4A872B2216AC98AC00121B /* string_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = string_util.h; sourceTree = ""; }; - 8F6D40B2CD10D34AD8F714F3 /* cef_strings_th.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_th.pak; sourceTree = ""; }; - 8FAB2B3DA1D71DE9B41ED544 /* domdocument_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domdocument_ctocpp.cc; sourceTree = ""; }; - 8FC259076BAAC6707AF40AB9 /* modp_b64.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = modp_b64.xcodeproj; path = ../third_party/modp_b64/modp_b64.xcodeproj; sourceTree = SOURCE_ROOT; }; - 8FC487E61971FF8B957CF876 /* browser_process_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_process_handler_cpptoc.cc; sourceTree = ""; }; - 8FD3BF1B5EEC371550873F4F /* render_process_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = render_process_handler_cpptoc.h; sourceTree = ""; }; - 903BF2598ED5B457D394EB6F /* app_locale_settings_fi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_fi.pak; sourceTree = ""; }; - 90482E31FC042C40AA27CBB6 /* tr_html.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = tr_html.py; sourceTree = ""; }; - 904D5B141FB66F69474E0938 /* app_locale_settings_et.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_et.pak; sourceTree = ""; }; - 907CCE9710B29FF62EBB8C9C /* content_browser_client.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = content_browser_client.h; sourceTree = ""; }; - 9084B9878C73E390FE28F4EA /* client_app_delegates.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_app_delegates.cc; sourceTree = ""; }; - 90899D9D0DBCB27C66786692 /* context_menu_params_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context_menu_params_impl.h; sourceTree = ""; }; - 913E0B3B78A79604B8375494 /* libpng.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libpng.xcodeproj; path = ../third_party/libpng/libpng.xcodeproj; sourceTree = SOURCE_ROOT; }; - 914996F06142B7006F4C1AC7 /* build_angle.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = build_angle.xcodeproj; path = ../third_party/angle/src/build_angle.xcodeproj; sourceTree = SOURCE_ROOT; }; - 915A3F2F5BBCBA69CCA50C98 /* menu_model_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = menu_model_cpptoc.h; sourceTree = ""; }; - 915F17714BF54A96E694861D /* urlrequest_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = urlrequest_cpptoc.h; sourceTree = ""; }; - 9198D923FBC2970445FD08FB /* thread_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = thread_util.h; sourceTree = ""; }; - 91CA13A8DA1C53EA4CE12B1D /* browser_message_loop.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_message_loop.cc; sourceTree = ""; }; - 91D140738ACF233F694087D9 /* browser_message_loop.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_message_loop.h; sourceTree = ""; }; - 91E2C46974E5764CA2E00400 /* callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = callback_ctocpp.cc; sourceTree = ""; }; - 922A9087E94112E092CFF3D5 /* dictionary_value_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dictionary_value_ctocpp.h; sourceTree = ""; }; - 92563765E3EC9386F575B2E5 /* ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ctocpp.h; sourceTree = ""; }; - 92D415BA4DE9FDB56C848F0E /* cef_resources.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_resources.h; sourceTree = ""; }; - 92F71012F60E65800C7FA7EF /* domvisitor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domvisitor_cpptoc.h; sourceTree = ""; }; - 93817B77718BE477E11D1B77 /* fa */ = {isa = PBXFileReference; lastKnownFileType = text; name = fa; path = fa.lproj/locale.pak; sourceTree = ""; }; - 93D902B73577832D18BF75BB /* browser_host_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_host_ctocpp.cc; sourceTree = ""; }; - 9407ED90778DCAA2D95996E5 /* content_renderer_client.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = content_renderer_client.h; sourceTree = ""; }; - 941319F6C213FD2E5AF1379C /* skia.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = skia.xcodeproj; path = ../skia/skia.xcodeproj; sourceTree = SOURCE_ROOT; }; - 9450B68BEE27937EBAE05C64 /* webkit_resources.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_resources.pak; sourceTree = ""; }; - 94BB6DD0AB6105482AF28EEC /* request_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = request_handler_ctocpp.h; sourceTree = ""; }; - 94FC67A94B7C6A0594A768BB /* time_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = time_impl.cc; sourceTree = ""; }; - 9512A66AA48EE8FDA49979EE /* run_all_unittests.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = run_all_unittests.cc; sourceTree = ""; }; - 954C19699583BDE91C91EAD1 /* process_message_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = process_message_ctocpp.h; sourceTree = ""; }; - 957CAFCC3E62D16A6A9A7001 /* string_visitor_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = string_visitor_cpptoc.h; sourceTree = ""; }; - 95C841C5F5D8E955AD0C8442 /* geolocation_callback_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = geolocation_callback_cpptoc.cc; sourceTree = ""; }; - 96863EC71FE8C19086ECC663 /* cef_export.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_export.h; sourceTree = ""; }; - 96B6939FEEAE9C41E03CC563 /* libWebKitSystemInterfaceLeopardPrivateExtern.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libWebKitSystemInterfaceLeopardPrivateExtern.a; path = libWebKitSystemInterfaceLeopardPrivateExtern.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 972C388FC6C6D3094DB8E222 /* stream_writer_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stream_writer_ctocpp.h; sourceTree = ""; }; - 97982721950E57F089FF3B7B /* Atom Helper.app */ = {isa = PBXFileReference; lastKnownFileType = wrapper.application; path = "Atom Helper.app"; sourceTree = ""; }; - 980462CA3EBC9C7A46664528 /* cef_zip_archive.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_zip_archive.h; sourceTree = ""; }; - 98AF0BBBB8A81ABFFF43B0A9 /* xtb_reader.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = xtb_reader.py; sourceTree = ""; }; - 993D5FB77B5591A0FFDF0D3A /* dynamic_annotations.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = dynamic_annotations.xcodeproj; path = ../base/third_party/dynamic_annotations/dynamic_annotations.xcodeproj; sourceTree = SOURCE_ROOT; }; - 9957A9B688C530DBDCD91F85 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text; name = ja; path = ja.lproj/locale.pak; sourceTree = ""; }; - 997FB6FDE34A9EF10B934290 /* cef_stream_resource_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cef_stream_resource_handler.cc; sourceTree = ""; }; - 99985A0B3AAA0CE9A2F58DBC /* value_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = value_base.h; sourceTree = ""; }; - 99A3E952F601D81D63364C9E /* download_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_handler_ctocpp.cc; sourceTree = ""; }; - 99BE64627B2516968DA69C99 /* rc2grd.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = rc2grd.py; sourceTree = ""; }; - 99C8F07ADEC000D37DBAB1B1 /* jsdialog_callback_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = jsdialog_callback_cpptoc.h; sourceTree = ""; }; - 9A1ABE45349A3F80FF5DF30C /* webkit_strings_nl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_nl.pak; sourceTree = ""; }; - 9A50288704E7307F0E12CC53 /* geolocation_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = geolocation_handler_cpptoc.h; sourceTree = ""; }; - 9A8F4C8FC2E2DD2655298862 /* webkit_strings_cs.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_cs.pak; sourceTree = ""; }; - 9AA86EF695031C709EB48301 /* navigation_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = navigation_unittest.cc; sourceTree = ""; }; - 9AAB3640AEBCF8CDB6E3EBEB /* transfer_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = transfer_util.h; sourceTree = ""; }; - 9AC1D088FA80D3B2A81ECBA2 /* zip_reader_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = zip_reader_unittest.cc; sourceTree = ""; }; - 9AD2908E3E658119AC780B55 /* run_all_unittests_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = run_all_unittests_mac.mm; sourceTree = ""; }; - 9B4BBCC00C0C1A2BEEFA0D01 /* mach_override.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = mach_override.xcodeproj; path = ../third_party/mach_override/mach_override.xcodeproj; sourceTree = SOURCE_ROOT; }; - 9B828287DA08C00BF1CBA0BC /* task_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = task_ctocpp.h; sourceTree = ""; }; - 9B984E9924117932C6ABE9EE /* ui_strings_gu.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_gu.pak; sourceTree = ""; }; - 9BBD0B469DFDB884D93F96E4 /* NSURL+Utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSURL+Utils.h"; sourceTree = ""; }; - 9BC2A3979FF4D29EA9037A8A /* cookie_manager_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cookie_manager_impl.h; sourceTree = ""; }; - 9BDB4C89AB31661B24EC5AD7 /* libcef_dll_wrapper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libcef_dll_wrapper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9BFDA1D8AF3C3A8C3A0DDA99 /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_util.h; sourceTree = ""; }; - 9CF13FE6393B8398A8AA18AC /* zip_reader_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = zip_reader_ctocpp.cc; sourceTree = ""; }; - 9CF3DD0952B8129AD957046A /* frame_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = frame_cpptoc.cc; sourceTree = ""; }; - 9D026DB1DED7CFBFCC17DE88 /* json_writer_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = json_writer_unittest.py; sourceTree = ""; }; - 9D2B8499E56DBC7273B71185 /* domevent_listener_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domevent_listener_cpptoc.cc; sourceTree = ""; }; - 9D6481C14038928657DE4402 /* jsdialog_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = jsdialog_handler_cpptoc.cc; sourceTree = ""; }; - 9D8B23565B040C2C45D8D3A2 /* process_message_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = process_message_cpptoc.cc; sourceTree = ""; }; - 9DE09E60E64A6105D0908294 /* v8context_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8context_ctocpp.cc; sourceTree = ""; }; - 9E4F1653A19D8EBC682547EE /* diff_structures.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = diff_structures.py; sourceTree = ""; }; - 9E5BA8A7091C891C1E9C1E67 /* cef_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_base.h; sourceTree = ""; }; - 9EACAEEEA145DFC35216514B /* ui_resources_standard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ui_resources_standard.h; sourceTree = ""; }; - 9EDC3A8C460020AA8C9D16D4 /* cookie_manager_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cookie_manager_cpptoc.h; sourceTree = ""; }; - 9EDDA92B6B176C1235419654 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text; name = nl; path = nl.lproj/locale.pak; sourceTree = ""; }; - 9F34C73D7E412A438C0810ED /* domnode_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domnode_ctocpp.cc; sourceTree = ""; }; - 9F5671B07D6ECD145A54BCAF /* cef_keyboard_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_keyboard_handler.h; sourceTree = ""; }; - 9F7159CBC485389851637A19 /* Atom Helper.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Atom Helper.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - 9F84468F6827D8F99B734EA6 /* url_request_interceptor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = url_request_interceptor.cc; sourceTree = ""; }; - 9F8DF3A8D0D5CBD2B5BE5E4E /* cef_messages.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_messages.h; sourceTree = ""; }; - 9FDCE1753EAB6DD51D5E88E8 /* cef_string_multimap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_multimap.h; sourceTree = ""; }; - A00B7334CB894C79096EA117 /* cef_strings_ko.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_ko.pak; sourceTree = ""; }; - A01E24D255497ECA6A00724B /* ui_strings_it.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_it.pak; sourceTree = ""; }; - A0D6B5F3B9D45FF5550586F2 /* variant.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = variant.py; sourceTree = ""; }; - A0ED4067E8EF944312A58B3B /* cef_path_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_path_util.h; sourceTree = ""; }; - A0FAA9FA17E7293DE5B0C4BC /* app_locale_settings_ar.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_ar.pak; sourceTree = ""; }; - A10811BEC263444916496808 /* plist_writer_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = plist_writer_unittest.py; sourceTree = ""; }; - A118A80152C4BFB2B86A7B82 /* mock_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = mock_writer.py; sourceTree = ""; }; - A1283A9BC3CE73AC0A600339 /* app_locale_settings_ru.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_ru.pak; sourceTree = ""; }; - A128B3C4C3B4EE24533CE3F1 /* resource_dispatcher_host_delegate.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = resource_dispatcher_host_delegate.cc; sourceTree = ""; }; - A12D4AF9EF7B9099616E9B3B /* context_menu_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context_menu_handler_cpptoc.h; sourceTree = ""; }; - A13F63777B8D71B83A24E479 /* webkit_strings_et.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_et.pak; sourceTree = ""; }; - A20BA18DE54D9DF5B47E2884 /* pt_BR */ = {isa = PBXFileReference; lastKnownFileType = text; name = pt_BR; path = pt_BR.lproj/locale.pak; sourceTree = ""; }; - A2154ED96A97D207C4234EB2 /* surface.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = surface.xcodeproj; path = ../ui/surface/surface.xcodeproj; sourceTree = SOURCE_ROOT; }; - A21CFD1232932A6603B36EC5 /* ui_resources.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ui_resources.h; sourceTree = ""; }; - A2248098B30E4E5EB34CC368 /* cef_process_message.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_process_message.h; sourceTree = ""; }; - A23E588983D78761008F698D /* cef_strings_ro.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_ro.pak; sourceTree = ""; }; - A2542629E10750A9BC3BA215 /* cef_string_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string_map.h; sourceTree = ""; }; - A257D2FA79DFA717AA262734 /* policy_template_generator.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = policy_template_generator.py; sourceTree = ""; }; - A287C0A02FC93659AE3E9641 /* it */ = {isa = PBXFileReference; lastKnownFileType = text; name = it; path = it.lproj/locale.pak; sourceTree = ""; }; - A35179157274998BF0E609EC /* render_process_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = render_process_handler_ctocpp.h; sourceTree = ""; }; - A37B1202E9711AA83BFEA7FF /* cef_version.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_version.h; sourceTree = ""; }; - A40423FE7F5F0631781C1E2D /* cef_process_util_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_process_util_capi.h; sourceTree = ""; }; - A4649F89C716B218DD3268AB /* webkit_strings_ca.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_ca.pak; sourceTree = ""; }; - A4D2D5B95485DA3DF25972C8 /* transfer_util.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = transfer_util.cpp; sourceTree = ""; }; - A5189377EEEF134DACA8E6A3 /* request_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = request_handler_ctocpp.cc; sourceTree = ""; }; - A53019239E548876C20B9BE5 /* libcef_dll2.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = libcef_dll2.cc; sourceTree = ""; }; - A53D5848A69C0706241C7CCB /* process_util_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = process_util_impl.cc; sourceTree = ""; }; - A555FB4AFD31F904481AEF3C /* binding_test.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = binding_test.cpp; sourceTree = ""; }; - A5BF66C52CD8EF1AFBE82C1D /* content_resources.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = content_resources.h; sourceTree = ""; }; - A5F1211ECDBE15E114653097 /* client_app.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_app.cpp; sourceTree = ""; }; - A613E999829F80C375BF561C /* ui_strings_hi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_hi.pak; sourceTree = ""; }; - A68D29BEFC7E90D722724A31 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; - A6FFECB794D4143BFF69086A /* origin_whitelist_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = origin_whitelist_impl.cc; sourceTree = ""; }; - A70A59BED39A129DB3674488 /* proxy_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = proxy_handler_ctocpp.cc; sourceTree = ""; }; - A7150BB7F6260DC5E3D6014F /* response_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = response_manager.cc; sourceTree = ""; }; - A71F417316E73DD2C81FA6F4 /* cef_strings_fr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_fr.pak; sourceTree = ""; }; - A722D7364A5D7B7D04F322B1 /* download_item_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_item_ctocpp.h; sourceTree = ""; }; - A723747B248AA1603A6105B5 /* cef_application_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_application_mac.h; sourceTree = ""; }; - A7326AE828A2573E6E9A3C1A /* cef_strings_sr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_sr.pak; sourceTree = ""; }; - A7A7E4D5F6C691F87DADD0CC /* read_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = read_handler_ctocpp.cc; sourceTree = ""; }; - A7E5CBDB0B03EA4186699A8E /* cefclient_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = cefclient_mac.mm; sourceTree = ""; }; - A829A9477B7F5226C12126E6 /* sqlite_diagnostics_stub.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = sqlite_diagnostics_stub.cc; sourceTree = ""; }; - A837398CF32BE95F9B8C6CC2 /* jsdialog_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = jsdialog_handler_ctocpp.h; sourceTree = ""; }; - A8443181D36AE126CFADAC75 /* cef_download_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_download_handler_capi.h; sourceTree = ""; }; - A8C69E44BE827CD91CC1FD0D /* cef_strings_ru.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_ru.pak; sourceTree = ""; }; - A905BF58EB26153147FDE6F2 /* cef_strings_fil.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_fil.pak; sourceTree = ""; }; - A9F5AFFE1B03166029163683 /* devtools_scheme_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = devtools_scheme_handler.cc; sourceTree = ""; }; - A9FBDEF643B43B3C94FCE05B /* url_request_context_getter.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = url_request_context_getter.cc; sourceTree = ""; }; - AAD317264CD53F09AB75F53F /* app_locale_settings_vi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_vi.pak; sourceTree = ""; }; - AAEF5E0F1906033B0352D5B7 /* cef_time.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_time.h; sourceTree = ""; }; - AB2C2414833CDF0E294612FD /* webkit_strings_gu.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_gu.pak; sourceTree = ""; }; - AB44CA22DEEC02E4DB8ED2D6 /* domdocument_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domdocument_cpptoc.cc; sourceTree = ""; }; - AC352D25857DC066957F0709 /* app_locale_settings_sv.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_sv.pak; sourceTree = ""; }; - AC50AD2938980FFD18423AFA /* webkit_strings_th.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_th.pak; sourceTree = ""; }; - AC9A44C54E00B064658FB434 /* stream_writer_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stream_writer_cpptoc.h; sourceTree = ""; }; - ACC9DD4F18A619E64B23E04F /* dom_node_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dom_node_impl.h; sourceTree = ""; }; - AD4579C0BE099BC334661482 /* browser_host_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_host_ctocpp.h; sourceTree = ""; }; - AD46FECF48CAA90C69CBF929 /* __init__.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = __init__.py; sourceTree = ""; }; - AD738FC5F4AC2C880F5D1446 /* sqlite_persistent_cookie_store.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sqlite_persistent_cookie_store.h; sourceTree = ""; }; - ADF7DF75ED5214C882BA463D /* url_request_context_proxy.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = url_request_context_proxy.cc; sourceTree = ""; }; - AE1EECC7420185454F935DC0 /* client_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_cpptoc.cc; sourceTree = ""; }; - AE237E44F51811ABA1079BEF /* tclib_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = tclib_unittest.py; sourceTree = ""; }; - AE35153A534F6DC6E89C0E71 /* list_value_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = list_value_cpptoc.h; sourceTree = ""; }; - AE444896E4C5BBC3F0B079B4 /* lv */ = {isa = PBXFileReference; lastKnownFileType = text; name = lv; path = lv.lproj/locale.pak; sourceTree = ""; }; - AE5F7ED290206A896187D9CB /* webkit_strings_da.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_da.pak; sourceTree = ""; }; - AE6EDF6B7A543E0AC126F13E /* tr */ = {isa = PBXFileReference; lastKnownFileType = text; name = tr; path = tr.lproj/locale.pak; sourceTree = ""; }; - AE72EF7CAB16AAED4E988E57 /* webkit_support.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = webkit_support.xcodeproj; path = ../webkit/support/webkit_support.xcodeproj; sourceTree = SOURCE_ROOT; }; - AE7F6C5060549B2F2D5041BA /* cef_strings_bn.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_bn.pak; sourceTree = ""; }; - AEC1C1912BA3FE2AD51CFE7E /* devtools_resources.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = devtools_resources.pak; sourceTree = ""; }; - AEC666F3C94F4CEB8DEE2A9A /* origin_whitelist_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = origin_whitelist_impl.h; sourceTree = ""; }; - AECC35F2345D9149FF77702D /* app_locale_settings_el.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_el.pak; sourceTree = ""; }; - AED60E39DA93EBF9C3361DB2 /* ui_strings_pt-BR.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "ui_strings_pt-BR.pak"; sourceTree = ""; }; - AED67CD0D4C3055B1611DCA5 /* geolocation_callback_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = geolocation_callback_ctocpp.h; sourceTree = ""; }; - AF105947CAC15F96B9B00CF5 /* v8exception_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8exception_cpptoc.h; sourceTree = ""; }; - B031A6B9A59C5648001D8E7D /* client_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = client_cpptoc.h; sourceTree = ""; }; - B0E3E128BB10AF315930D732 /* cef_stream_resource_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_stream_resource_handler.h; sourceTree = ""; }; - B1072A8812268AA3912AD3A9 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text; name = nb; path = nb.lproj/locale.pak; sourceTree = ""; }; - B111F32791A8BCA7228774C1 /* zip_reader_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = zip_reader_impl.cc; sourceTree = ""; }; - B143F70E2B242100A3AC61A1 /* ui_strings_he.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_he.pak; sourceTree = ""; }; - B1B0B00499622B5212B3B8C8 /* harfbuzz.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = harfbuzz.xcodeproj; path = "../third_party/harfbuzz-ng/harfbuzz.xcodeproj"; sourceTree = SOURCE_ROOT; }; - B1B719B2DB39C964D60291E9 /* read_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = read_handler_cpptoc.cc; sourceTree = ""; }; - B1BC0DCCB17AA248A0D577F9 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text; name = fi; path = fi.lproj/locale.pak; sourceTree = ""; }; - B1DAA340DB834465A936E8F8 /* cef_build.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_build.h; sourceTree = ""; }; - B203C1CF711EDC0366E714FB /* jsdialog_callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = jsdialog_callback_ctocpp.cc; sourceTree = ""; }; - B21D03DC680F4FD5CE10D719 /* ui_strings_fil.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_fil.pak; sourceTree = ""; }; - B28771FABF438DE250C9A59F /* sr */ = {isa = PBXFileReference; lastKnownFileType = text; name = sr; path = sr.lproj/locale.pak; sourceTree = ""; }; - B2F3D77B6647DF374CFCE5D4 /* libevent.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libevent.xcodeproj; path = ../third_party/libevent/libevent.xcodeproj; sourceTree = SOURCE_ROOT; }; - B3742C83FEE2415D7BA25F91 /* url_request_interceptor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = url_request_interceptor.h; sourceTree = ""; }; - B3CBCE3BBAC700D4F20C4AB3 /* binding.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = binding.html; sourceTree = ""; }; - B3CC57F25F4CFFB12C00E302 /* devtools_delegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = devtools_delegate.h; sourceTree = ""; }; - B44E71F696B42050FD0ACE2C /* cef_cookie_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_cookie_capi.h; sourceTree = ""; }; - B490B040DFADA86C197F241E /* release_impl_official.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = release_impl_official.gypi; path = ../build/internal/release_impl_official.gypi; sourceTree = ""; }; - B4B28A8840955A7A73CE082C /* unittests.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = unittests.icns; sourceTree = ""; }; - B4C774A7C430830E8E30CDC9 /* domnode_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domnode_ctocpp.h; sourceTree = ""; }; - B54A3D26A848E5E563BDF3FF /* browser_host_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_host_cpptoc.h; sourceTree = ""; }; - B5696836A233467D67F673DE /* app_locale_settings_nl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_nl.pak; sourceTree = ""; }; - B595AE41CCEEAF881800F919 /* cef_strings_he.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_he.pak; sourceTree = ""; }; - B5BA3FB0EC2E38F37831385C /* app_locale_settings_sw.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_sw.pak; sourceTree = ""; }; - B5F1C4FA587CC89476D82E5F /* geolocation_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = geolocation_handler_ctocpp.cc; sourceTree = ""; }; - B5FFE53E8D18F5DF26098C3B /* webkit_strings_ko.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_ko.pak; sourceTree = ""; }; - B61CA6E61979A7CBF236E73D /* webkit_strings_am.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_am.pak; sourceTree = ""; }; - B631AEBC75354D3C9BAD7E60 /* de */ = {isa = PBXFileReference; lastKnownFileType = text; name = de; path = de.lproj/locale.pak; sourceTree = ""; }; - B65C386A4D3A2F46DACFEC63 /* app_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = app_ctocpp.h; sourceTree = ""; }; - B69A86A21D00AEECBFB9E0FC /* cef.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef.gypi; sourceTree = ""; }; - B6BCD87C8E9E2C07AAC3C15D /* read_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = read_handler_ctocpp.h; sourceTree = ""; }; - B71985071946DE0272140D33 /* menu_model_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = menu_model_cpptoc.cc; sourceTree = ""; }; - B769E54AA8C8C34D387D1898 /* cef_strings_es.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_es.pak; sourceTree = ""; }; - B79BFA0947C8B3B8648E52C2 /* app_locale_settings_te.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_te.pak; sourceTree = ""; }; - B7BAE94218DC1AF62AB9C262 /* callback_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = callback_cpptoc.h; sourceTree = ""; }; - B84A8C77A80959D3FDB79E03 /* before_download_callback_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = before_download_callback_cpptoc.h; sourceTree = ""; }; - B84B69F8F0FC909581ED64B5 /* proxy_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = proxy_handler_cpptoc.cc; sourceTree = ""; }; - B897373CE0763F38BC8B6005 /* test_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = test_handler.h; sourceTree = ""; }; - B8D92CFE5FE010A20C2DE9E0 /* pt_PT */ = {isa = PBXFileReference; lastKnownFileType = text; name = pt_PT; path = pt_PT.lproj/locale.pak; sourceTree = ""; }; - B8EFE13D4363591579F845BD /* url_network_delegate.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = url_network_delegate.cc; sourceTree = ""; }; - B93E20FDDFB45AEE1B1637FB /* repack.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = repack.py; sourceTree = ""; }; - B96DB9A5EA5CB33C9CF4E3B6 /* grd_reader.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = grd_reader.py; sourceTree = ""; }; - B9B3C5A2966003F02D99EDF8 /* dictionary_value_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dictionary_value_cpptoc.cc; sourceTree = ""; }; - BA2CEA45A76DD834D9F46888 /* net_resources.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = net_resources.h; sourceTree = ""; }; - BA74D937DABFDDBFF7BC274A /* menu_controller.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = menu_controller.mm; sourceTree = ""; }; - BAAA56D25F15E3152CAB4310 /* request_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = request_cpptoc.h; sourceTree = ""; }; - BADF2CC70DD23FAC319DB0E8 /* webkit_strings_en-GB.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "webkit_strings_en-GB.pak"; sourceTree = ""; }; - BAE4F34D8497504C8EA49C0A /* client_switches.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_switches.cpp; sourceTree = ""; }; - BAEFF6772AA39B65C0A16BDC /* resource_request_job.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_request_job.h; sourceTree = ""; }; - BB40C94651F5869982CD0D73 /* shortcuts_unittests.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = shortcuts_unittests.py; sourceTree = ""; }; - BBB082F6C3D4048CFB7A4BCD /* browser_urlrequest_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_urlrequest_impl.h; sourceTree = ""; }; - BBB91956C816083526AB2EF2 /* libsrtp.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libsrtp.xcodeproj; path = ../third_party/libsrtp/libsrtp.xcodeproj; sourceTree = SOURCE_ROOT; }; - BBCC248506229E5B0D036B25 /* webkit_strings_el.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_el.pak; sourceTree = ""; }; - BBE2B501607B7615FF89D915 /* proxy_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = proxy_handler_cpptoc.h; sourceTree = ""; }; - BC2DBEF9AEE291FE9536BFF8 /* bn */ = {isa = PBXFileReference; lastKnownFileType = text; name = bn; path = bn.lproj/locale.pak; sourceTree = ""; }; - BC37FEDFB68554AC40F1927E /* stream_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = stream_unittest.cc; sourceTree = ""; }; - BCB5DD2EA2599FC9420529FC /* cef_v8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_v8.h; sourceTree = ""; }; - BCE9DF91715018A1F2B5DDDE /* rc_header_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = rc_header_unittest.py; sourceTree = ""; }; - BD3AEF39973333594B3AF33E /* cef_focus_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_focus_handler.h; sourceTree = ""; }; - BD85B7325C97FE527A3B5FBA /* browser_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_cpptoc.h; sourceTree = ""; }; - BDC86D60E98ED367A18F3FF0 /* mapping.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = mapping.py; sourceTree = ""; }; - BDE38BE54F98960C8533F1FB /* cef_browser_process_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_browser_process_handler.h; sourceTree = ""; }; - BE1DA88C9CE8AABA2DA12E5A /* ui_strings_bg.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_bg.pak; sourceTree = ""; }; - BE9875EC6BFE09D36368B549 /* io_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = io_unittest.py; sourceTree = ""; }; - BF354E20164FC6AE1628E6D6 /* js_map_format_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = js_map_format_unittest.py; sourceTree = ""; }; - BF4157E193A514990BDB20AE /* cef_strings_bg.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_bg.pak; sourceTree = ""; }; - BF50FF0DB30BF7D2462511D5 /* cef_strings_es-419.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "cef_strings_es-419.pak"; sourceTree = ""; }; - BF8FBF76D26F678D79319E7F /* web_plugin_info_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = web_plugin_info_ctocpp.cc; sourceTree = ""; }; - BF9BCAC5E8B3E0B6E7204BAF /* scheme_handler_factory_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = scheme_handler_factory_cpptoc.cc; sourceTree = ""; }; - BFBC5D3F9539F3DEB423BC07 /* test_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = test_util.cc; sourceTree = ""; }; - BFBCF921341FE2A9CAAB209F /* json_loader.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = json_loader.py; sourceTree = ""; }; - BFEE9C961095CBD3A6F6BF12 /* test_suite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = test_suite.h; sourceTree = ""; }; - BFF104F15A6A249851306E5B /* ui_strings_fi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_fi.pak; sourceTree = ""; }; - BFFF75BA1DE505F4FC6CF8E1 /* igoogle_strings_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = igoogle_strings_unittest.py; sourceTree = ""; }; - C05CB3D9668BCF524D725D80 /* v8_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8_unittest.cc; sourceTree = ""; }; - C085C951644E10FC67FD2BFE /* command_line_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = command_line_cpptoc.cc; sourceTree = ""; }; - C0B028164A5328758788DBCC /* browser_message_filter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_message_filter.h; sourceTree = ""; }; - C132B2B7DFC87BF8A11A49AB /* urlrequest_client_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = urlrequest_client_cpptoc.h; sourceTree = ""; }; - C14DAB1AAEA0039C4522CC2B /* libcef.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libcef.dylib; sourceTree = ""; }; - C1676097512A3D9E2D02B869 /* task_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = task_ctocpp.cc; sourceTree = ""; }; - C180ABF4001443F7384CEAC7 /* v8exception_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8exception_ctocpp.cc; sourceTree = ""; }; - C1C9F222C0F4DDAD2BB19DE2 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text; name = hu; path = hu.lproj/locale.pak; sourceTree = ""; }; - C1DD696D83AAACE47751B405 /* stream_reader_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = stream_reader_ctocpp.cc; sourceTree = ""; }; - C20E23727BD91D92D67D9980 /* ui_strings_es.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_es.pak; sourceTree = ""; }; - C2166EDE4476E4A63D1C2353 /* render_process_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = render_process_handler_cpptoc.cc; sourceTree = ""; }; - C2246857E5328D3CA26856D2 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = ""; }; - C25773E7E22D4B38265E96C9 /* v8_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8_impl.cc; sourceTree = ""; }; - C29ADD61716033F36EC6FA4A /* voice_engine.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = voice_engine.xcodeproj; path = ../third_party/webrtc/voice_engine/voice_engine.xcodeproj; sourceTree = SOURCE_ROOT; }; - C2F9769424CA87A4DEE01F38 /* browser_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_cpptoc.cc; sourceTree = ""; }; - C2FB942E1079C9642625957C /* web_plugin_info_visitor_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = web_plugin_info_visitor_ctocpp.cc; sourceTree = ""; }; - C30424C31D8FA81F08221280 /* cef_strings_lv.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_lv.pak; sourceTree = ""; }; - C32B3AA8CEC445ABB8CCAB5A /* navigate_params.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = navigate_params.cc; sourceTree = ""; }; - C3D99D2C24C061BA724F9C77 /* webkit_strings_he.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_he.pak; sourceTree = ""; }; - C3F9A1466747A71994443EE8 /* net.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = net.xcodeproj; path = ../net/net.xcodeproj; sourceTree = SOURCE_ROOT; }; - C3FF36D1BCEC9430E0C11917 /* webkit_strings_bn.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_bn.pak; sourceTree = ""; }; - C43E59B4E40FDD94C723B8EF /* app_locale_settings_ca.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_ca.pak; sourceTree = ""; }; - C4598A5939FD219C10E8EDC2 /* request_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = request_cpptoc.cc; sourceTree = ""; }; - C466234A54DD0BD14A913865 /* v8exception_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8exception_cpptoc.cc; sourceTree = ""; }; - C4732367B9C8CFFB7629CCE1 /* post_data_element_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = post_data_element_cpptoc.h; sourceTree = ""; }; - C48A4B5FC43952BAA1560513 /* cef_strings.grd */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings.grd; sourceTree = ""; }; - C4A22E5D8FE6D3821F882BF8 /* tr_html_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = tr_html_unittest.py; sourceTree = ""; }; - C4A3583C69238109E4439A1F /* browser_process_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_process_handler_cpptoc.h; sourceTree = ""; }; - C51F821DAEE8400127A67F46 /* ui_strings_ar.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_ar.pak; sourceTree = ""; }; - C52B2176F56D4DEDFA70B6AB /* grit_runner_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = grit_runner_unittest.py; sourceTree = ""; }; - C5468CD8ADC7730A0D9F923B /* command_line_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = command_line_cpptoc.h; sourceTree = ""; }; - C559AD44464C4C17590FDEA6 /* download_item_callback_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_item_callback_ctocpp.cc; sourceTree = ""; }; - C5737F034076C86775D81DC5 /* cef_strings_gu.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_gu.pak; sourceTree = ""; }; - C58453B51F977741B3755433 /* ui_strings_mr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_mr.pak; sourceTree = ""; }; - C588A9DB0063296F21B52B91 /* jsdialog_callback_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = jsdialog_callback_cpptoc.cc; sourceTree = ""; }; - C5F9DE1CFBD858D7865444CF /* v8value_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8value_ctocpp.cc; sourceTree = ""; }; - C6060C990C83797D74493904 /* ui_strings_ca.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_ca.pak; sourceTree = ""; }; - C62BF572DED4F010FC0E89A2 /* life_span_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = life_span_handler_cpptoc.h; sourceTree = ""; }; - C6313715F5261BAD9D0C719F /* download_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_handler_cpptoc.h; sourceTree = ""; }; - C6528F46F9707EA091C7262B /* cef_strings_uk.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_uk.pak; sourceTree = ""; }; - C67B560402C9434CB1C7FEAC /* request_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = request_impl.cc; sourceTree = ""; }; - C67EF82BBCE5A044D2A565F8 /* message_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = message_unittest.py; sourceTree = ""; }; - C6928DEF7F0D141CA277C6D9 /* kn */ = {isa = PBXFileReference; lastKnownFileType = text; name = kn; path = kn.lproj/locale.pak; sourceTree = ""; }; - C6A7D0330BEEA0682AF0CF1D /* toolbar_postprocess.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = toolbar_postprocess.py; sourceTree = ""; }; - C6F9C805F913D447E3623EDC /* web_plugin_info_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = web_plugin_info_cpptoc.h; sourceTree = ""; }; - C723B94B88820ECB9B238D97 /* base.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = base.py; sourceTree = ""; }; - C72440BBDA9B2D0831F9B31B /* webkit_strings_vi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_vi.pak; sourceTree = ""; }; - C725996ECD3353F9AF70492D /* cef_response_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_response_capi.h; sourceTree = ""; }; - C74DC68884C27EA075179638 /* browser_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_ctocpp.cc; sourceTree = ""; }; - C7705207DD77B0C0A875FEAF /* cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cpptoc.h; sourceTree = ""; }; - C7A48623E5586F1836DFC472 /* filename_rules.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = filename_rules.gypi; path = ../build/filename_rules.gypi; sourceTree = ""; }; - C7ACE0C68D51D0C218919A6C /* string_list_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_list_impl.cc; sourceTree = ""; }; - C7B512B42C038991A1237E72 /* menu_model_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = menu_model_impl.cc; sourceTree = ""; }; - C7EE4C2E678C3D80B0A02DA2 /* protobuf.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = protobuf.xcodeproj; path = ../third_party/protobuf/protobuf.xcodeproj; sourceTree = SOURCE_ROOT; }; - C82AFEAEA3B4F9DC13CADFC9 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; - C84B4501D7B29FD743E409F7 /* release_defaults.gypi */ = {isa = PBXFileReference; lastKnownFileType = text; name = release_defaults.gypi; path = ../build/internal/release_defaults.gypi; sourceTree = ""; }; - C86CD8E3B19D61111DF9F73C /* postprocess_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = postprocess_unittest.py; sourceTree = ""; }; - C879B7C07DD025F3BFAD2E92 /* net_resources.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = net_resources.pak; sourceTree = ""; }; - C8A180CBAD1730307A7968AE /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = ""; }; - C8B2E4A52DE2C4516E90AF0A /* en_GB */ = {isa = PBXFileReference; lastKnownFileType = text; name = en_GB; path = en_GB.lproj/locale.pak; sourceTree = ""; }; - C8D5566AFB8F260F77DAB20E /* xml_writer_base_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = xml_writer_base_unittest.py; sourceTree = ""; }; - C8F4C343AD3BD4B6CCFC1CE9 /* v8value_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8value_cpptoc.h; sourceTree = ""; }; - C90513F9659799663F6F0EF2 /* ui_strings_kn.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_kn.pak; sourceTree = ""; }; - C96E8D10AC36A42D17375908 /* task_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = task_cpptoc.h; sourceTree = ""; }; - C986618ECAB0A5C043D8BB3F /* jingle.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = jingle.xcodeproj; path = ../jingle/jingle.xcodeproj; sourceTree = SOURCE_ROOT; }; - CA2838C0FB67F18D5C4135A6 /* xml_reader_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = xml_reader_ctocpp.h; sourceTree = ""; }; - CAD0608CFCF60C55553960B9 /* values_unittest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = values_unittest.cc; sourceTree = ""; }; - CAF6A438DA5A40FD14194552 /* browser_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_context.cc; sourceTree = ""; }; - CB1A2A507DD7E247C86F4DE8 /* filename.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = filename.py; sourceTree = ""; }; - CB28E6AD5B83DA336278E20C /* context_menu_params_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = context_menu_params_cpptoc.cc; sourceTree = ""; }; - CB5EA804FCBC0FD14C48C9EA /* cef_scheme_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_scheme_capi.h; sourceTree = ""; }; - CB90EDB889CFB9BDAC13A0FD /* cookie_visitor_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cookie_visitor_ctocpp.cc; sourceTree = ""; }; - CBD002A1963C4F53D11B5870 /* ml */ = {isa = PBXFileReference; lastKnownFileType = text; name = ml; path = ml.lproj/locale.pak; sourceTree = ""; }; - CC02ACE784927C69439BC632 /* ui_strings_vi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_vi.pak; sourceTree = ""; }; - CC2E0CD0BEC5AFA8BD641A34 /* cef_string.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_string.h; sourceTree = ""; }; - CC6C389575F116171DF2E9F2 /* webkit_strings_ml.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_ml.pak; sourceTree = ""; }; - CC8CAF87DF780BDAEAEAD507 /* content_client.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = content_client.h; sourceTree = ""; }; - CC9D2982021F72278C81EEED /* download_item_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_item_cpptoc.h; sourceTree = ""; }; - CD602F995973791BC74F5A97 /* javascript_dialog_mac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = javascript_dialog_mac.mm; sourceTree = ""; }; - CD86FFEA2D5001FA726510BE /* JavaScriptCore.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = JavaScriptCore.xcodeproj; path = ../third_party/WebKit/Source/JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.xcodeproj; sourceTree = SOURCE_ROOT; }; - CDB2A1AB7093EC0735069E23 /* cef_message_generator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cef_message_generator.cc; sourceTree = ""; }; - CDD57B391041DD8139A99BE4 /* txt_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = txt_unittest.py; sourceTree = ""; }; - CDDFE6F7750317167401DBB1 /* render_process_observer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = render_process_observer.cc; sourceTree = ""; }; - CE20FF896D00BB796193B0C3 /* policy_json_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = policy_json_unittest.py; sourceTree = ""; }; - CE807F315C4A3B2A084C3D77 /* string_visitor_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_visitor_ctocpp.cc; sourceTree = ""; }; - CF995465B9EDCF391B89FEA8 /* webkit_glue.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = webkit_glue.cc; sourceTree = ""; }; - CFA1C64C814325D7DD4C85FD /* cef_strings_el.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_el.pak; sourceTree = ""; }; - D05576BEB3938E78B49B3AE0 /* process_message_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = process_message_impl.cc; sourceTree = ""; }; - D0856E7B20F81C035637FEEE /* libxml.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libxml.xcodeproj; path = ../third_party/libxml/libxml.xcodeproj; sourceTree = SOURCE_ROOT; }; - D0C928E6B9A90B8E7C82948B /* am */ = {isa = PBXFileReference; lastKnownFileType = text; name = am; path = am.lproj/locale.pak; sourceTree = ""; }; - D0E01ECF64FCF571173DCD92 /* request_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = request_ctocpp.cc; sourceTree = ""; }; - D1525B53591006BB536CE299 /* load_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = load_handler_cpptoc.h; sourceTree = ""; }; - D1966077D7D68ADB63A785AC /* __init__.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = __init__.py; sourceTree = ""; }; - D21108AEEAA66A731A5B0110 /* frame_host_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = frame_host_impl.h; sourceTree = ""; }; - D2145AD48706B90529681EE2 /* web_plugin_info_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = web_plugin_info_ctocpp.h; sourceTree = ""; }; - D27C8FC303AC0109A42C8D52 /* c_format_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = c_format_unittest.py; sourceTree = ""; }; - D2E051950242C84ED77FD8E7 /* response_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = response_cpptoc.cc; sourceTree = ""; }; - D2E95DA195A44E9F13800933 /* content_client.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = content_client.cc; sourceTree = ""; }; - D307D6AF258938000F036E81 /* ui_strings_hr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_hr.pak; sourceTree = ""; }; - D31E19966B4FFD0C7AFFC86C /* mr */ = {isa = PBXFileReference; lastKnownFileType = text; name = mr; path = mr.lproj/locale.pak; sourceTree = ""; }; - D32C9CC677C221FD93EE8BC8 /* igoogle_strings.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = igoogle_strings.py; sourceTree = ""; }; - D366285CB364244F44102F11 /* libcef_dll_wrapper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = libcef_dll_wrapper.cc; sourceTree = ""; }; - D39A9A62C445BA011E1163D3 /* write_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = write_handler_ctocpp.cc; sourceTree = ""; }; - D3BEDFBD500FED829DC71255 /* cef_switches.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_switches.h; sourceTree = ""; }; - D3EBF675DE5EF129D3440EFC /* post_data_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = post_data_cpptoc.cc; sourceTree = ""; }; - D3FED2E6E88A2EB20010DFAC /* content_browser_client.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = content_browser_client.cc; sourceTree = ""; }; - D455FB5D8F74CAB2B3F41A9E /* tracker.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = tracker.cc; sourceTree = ""; }; - D4583E529523A3C1F0D38D95 /* base_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = base_ctocpp.h; sourceTree = ""; }; - D46FDC38673A7B16D6DAD52A /* policy_json.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = policy_json.py; sourceTree = ""; }; - D4CC7F2E668EBBEBC0B25A09 /* browser_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_impl.h; sourceTree = ""; }; - D4D09FA875F36BC20589A971 /* string_util.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_util.cpp; sourceTree = ""; }; - D4EA87717B8FA96AF184ECD8 /* webkit_strings_zh-TW.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "webkit_strings_zh-TW.pak"; sourceTree = ""; }; - D4F148746CEA2558106D7D63 /* v8context_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8context_cpptoc.h; sourceTree = ""; }; - D54F3662C373B066FED2B189 /* task_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = task_cpptoc.cc; sourceTree = ""; }; - D58C1FEF34712C6E4A5F8918 /* admx_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = admx_writer.py; sourceTree = ""; }; - D58DC93A21C48D816DFBE475 /* app_locale_settings_id.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_id.pak; sourceTree = ""; }; - D5AE19360737D03F7E2221DB /* webkit_strings_en-US.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "webkit_strings_en-US.pak"; sourceTree = ""; }; - D5B5990FC45DD1B69097F780 /* frame_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = frame_ctocpp.cc; sourceTree = ""; }; - D5D6EA7FA371571B90F3341D /* libcef_dll.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = libcef_dll.cc; sourceTree = ""; }; - D5FD4E92AEBBDD820CD613D0 /* webkit_strings_uk.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_uk.pak; sourceTree = ""; }; - D6009C3FE4C9EAC76844183A /* rc.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = rc.py; sourceTree = ""; }; - D6354F773C04C1B426CEF241 /* domevent_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = domevent_ctocpp.cc; sourceTree = ""; }; - D63E0F20DC3D5F422F238E99 /* cef_strings_pl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_pl.pak; sourceTree = ""; }; - D64438538235B85A8AEE9557 /* admx_writer_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = admx_writer_unittest.py; sourceTree = ""; }; - D70F2AD41B444A90D0917EFB /* printing.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = printing.xcodeproj; path = ../printing/printing.xcodeproj; sourceTree = SOURCE_ROOT; }; - D73F8D203BD3DC29958AA381 /* render_urlrequest_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = render_urlrequest_impl.cc; sourceTree = ""; }; - D750300952CFEECA77BB2E09 /* video_engine.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = video_engine.xcodeproj; path = ../third_party/webrtc/video_engine/video_engine.xcodeproj; sourceTree = SOURCE_ROOT; }; - D768A135320ECA4D23B837A2 /* cef_request_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_request_handler.h; sourceTree = ""; }; - D76B4B028759943E0918DA1F /* cef_resource_bundle_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_resource_bundle_handler.h; sourceTree = ""; }; - D7A0E7112DB25D43079BDBD4 /* command_line_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = command_line_impl.h; sourceTree = ""; }; - D7A7DCA77B5D7E0417FA2EE7 /* libxslt.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libxslt.xcodeproj; path = ../third_party/libxslt/libxslt.xcodeproj; sourceTree = SOURCE_ROOT; }; - D7AFDC016D372255D27E2AF7 /* cef_strings_kn.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_kn.pak; sourceTree = ""; }; - D7CE3427570BB20354E76B72 /* read_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = read_handler_cpptoc.h; sourceTree = ""; }; - D81D280D5FD2372126A044AE /* post_data_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = post_data_cpptoc.h; sourceTree = ""; }; - D828014EA35F6FF11305AC18 /* ui_strings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ui_strings.xcodeproj; path = ../ui/base/strings/ui_strings.xcodeproj; sourceTree = SOURCE_ROOT; }; - D82A58B16F6BCCF2847EECBC /* cef_strings_fi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_fi.pak; sourceTree = ""; }; - D856CDF05187853E5B11722B /* url_request_context_getter_proxy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = url_request_context_getter_proxy.h; sourceTree = ""; }; - D868357C760F520F1C128A40 /* ui_strings_bn.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_bn.pak; sourceTree = ""; }; - D8AEDA47EF0748D9516229F8 /* cef_strings_en-US.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "cef_strings_en-US.pak"; sourceTree = ""; }; - D940F7991272A95E78BC9D80 /* before_download_callback_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = before_download_callback_cpptoc.cc; sourceTree = ""; }; - D97321F6316E0C86664EDF93 /* values_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = values_impl.h; sourceTree = ""; }; - D980F0A679089BE9FB4C1F47 /* ui_strings_ro.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_ro.pak; sourceTree = ""; }; - D9A70811C1CA0449A9BB8F23 /* et */ = {isa = PBXFileReference; lastKnownFileType = text; name = et; path = et.lproj/locale.pak; sourceTree = ""; }; - D9E3CB72823229E4998256E7 /* cef_strings_hu.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_hu.pak; sourceTree = ""; }; - D9F48A2BC060CC7EF9C94F9D /* cef_strings_zh-TW.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "cef_strings_zh-TW.pak"; sourceTree = ""; }; - DA02DB97CDBBED8E70C5719D /* cef_strings_fa.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_fa.pak; sourceTree = ""; }; - DA0D761271620EF673356FAF /* webkit_strings_lv.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_lv.pak; sourceTree = ""; }; - DA1D01A728A8845E891328E7 /* zip_reader_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = zip_reader_cpptoc.cc; sourceTree = ""; }; - DA377C3032623ECAF54FE658 /* template_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = template_writer.py; sourceTree = ""; }; - DAB9718F6B8064F992196C74 /* clear_on_exit_policy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = clear_on_exit_policy.h; sourceTree = ""; }; - DACC26B506287FD5B8026671 /* cef_values_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_values_capi.h; sourceTree = ""; }; - DAE1F7666030E9B8391D3447 /* cef_command_line.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_command_line.h; sourceTree = ""; }; - DBC9ADD36C96688115653866 /* sw */ = {isa = PBXFileReference; lastKnownFileType = text; name = sw; path = sw.lproj/locale.pak; sourceTree = ""; }; - DBF44633A3C9C520AFEF1CE1 /* webkit_glue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = webkit_glue.h; sourceTree = ""; }; - DC2688FB8963B48B34A8CB30 /* event_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = event_utils.h; sourceTree = ""; }; - DC2F637745D18676B250F4D7 /* cef_url_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_url_capi.h; sourceTree = ""; }; - DC31F42D1CD61440FCE82A26 /* frame_host_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = frame_host_impl.cc; sourceTree = ""; }; - DC4E795B2C67468CA528503C /* app_locale_settings_fil.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_fil.pak; sourceTree = ""; }; - DC64E025926A9B0590800B79 /* app_locale_settings_pt-BR.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "app_locale_settings_pt-BR.pak"; sourceTree = ""; }; - DC72D0B7D1A6B663CB335034 /* WebCore.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WebCore.xcodeproj; path = ../third_party/WebKit/Source/WebCore/WebCore.gyp/WebCore.xcodeproj; sourceTree = SOURCE_ROOT; }; - DCC7D766A8EC8756A8376CB3 /* urlrequest_client_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = urlrequest_client_ctocpp.h; sourceTree = ""; }; - DD3F14826655E3055F273989 /* xml_reader_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = xml_reader_ctocpp.cc; sourceTree = ""; }; - DD4F39FDF92A279B445CB635 /* cef_strings_pt-PT.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "cef_strings_pt-PT.pak"; sourceTree = ""; }; - DDA467E96A26AD4D03D9510E /* bg */ = {isa = PBXFileReference; lastKnownFileType = text; name = bg; path = bg.lproj/locale.pak; sourceTree = ""; }; - DDFAD28E804B0154D4660646 /* ui_strings_sl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_sl.pak; sourceTree = ""; }; - DE17DA3B1BFB8194BB712051 /* test.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = test.py; sourceTree = ""; }; - DEC34FF48A6DE9F7B8BB5A73 /* sqlite_persistent_cookie_store.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = sqlite_persistent_cookie_store.cc; sourceTree = ""; }; - DEF73970376FB40B6877E899 /* scheme_registrar_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scheme_registrar_ctocpp.h; sourceTree = ""; }; - DFC6006F8E44EC259DFF6C6D /* web_plugin_info_visitor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = web_plugin_info_visitor_cpptoc.cc; sourceTree = ""; }; - DFD892EE828C7CED561FA451 /* process_helper_mac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = process_helper_mac.cpp; sourceTree = ""; }; - E01020EC056D3010F006EF72 /* cef_request_handler_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_request_handler_capi.h; sourceTree = ""; }; - E0F66F6372DC53DDA571C522 /* cef_unittests Helper.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "cef_unittests Helper.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - E16C430DB6178E130B542B39 /* stream_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stream_impl.h; sourceTree = ""; }; - E1F92A687AF6981AE53D2B53 /* client_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = client_ctocpp.cc; sourceTree = ""; }; - E2BAA234A2BE8017D226EDD3 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; - E2C3BC0EFC15B0A091A108B9 /* admin_template.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = admin_template.py; sourceTree = ""; }; - E2C86E608D1FE42AD3D883F2 /* dictionary_value_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dictionary_value_cpptoc.h; sourceTree = ""; }; - E331A5FC069C0C31B73E896D /* sk */ = {isa = PBXFileReference; lastKnownFileType = text; name = sk; path = sk.lproj/locale.pak; sourceTree = ""; }; - E39A8AB13257E2C3124AA2F3 /* download_item_callback_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_item_callback_cpptoc.cc; sourceTree = ""; }; - E39D9DE3B2B6FAA5D5A4C0BD /* rc_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = rc_unittest.py; sourceTree = ""; }; - E430F79B1322631374180E88 /* glu.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = glu.xcodeproj; path = ../third_party/WebKit/Source/ThirdParty/glu/glu.xcodeproj; sourceTree = SOURCE_ROOT; }; - E433B28466F26CA5A6E597A7 /* download_item_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_item_impl.h; sourceTree = ""; }; - E450C695FBCE11210A22C7BF /* clear_on_exit_policy.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = clear_on_exit_policy.cc; sourceTree = ""; }; - E4DBE8ED5B8C759DF03135D3 /* browser_settings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_settings.h; sourceTree = ""; }; - E543A7571C10044A6343AF07 /* ui_strings_am.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_am.pak; sourceTree = ""; }; - E557EFD39B50172DFACD3CF6 /* cef_strings_nl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_nl.pak; sourceTree = ""; }; - E581A3AAAE322723FC773C13 /* cookie_visitor_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cookie_visitor_cpptoc.cc; sourceTree = ""; }; - E5BBF422E9D920423158F973 /* cefclient Helper.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "cefclient Helper.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - E5EA7CF0EAFED588646FEBCF /* cookie_manager_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cookie_manager_cpptoc.cc; sourceTree = ""; }; - E628C159157AD577B39C0B42 /* sql.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = sql.xcodeproj; path = ../sql/sql.xcodeproj; sourceTree = SOURCE_ROOT; }; - E69FAB7C092C231EAE2CDE02 /* resource_ids */ = {isa = PBXFileReference; lastKnownFileType = text; path = resource_ids; sourceTree = ""; }; - E6BB666763D7433F2BA744AE /* cef_frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_frame.h; sourceTree = ""; }; - E6D4837DC7D70A7B4E9D9E96 /* load_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = load_handler_cpptoc.cc; sourceTree = ""; }; - E76B1563EE0C973C3C6418FE /* __init__.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = __init__.py; sourceTree = ""; }; - E779007C9491D76188594B0B /* cef_strings_da.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_da.pak; sourceTree = ""; }; - E7A199FD70EE5ABD2D98FCCB /* cef_strings_ja.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_ja.pak; sourceTree = ""; }; - E85A0832181D596715491B18 /* ui_strings_es-419.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "ui_strings_es-419.pak"; sourceTree = ""; }; - E862DE7D1FCFA8C328ECFC05 /* geolocation_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = geolocation_handler_cpptoc.cc; sourceTree = ""; }; - E88908652AACDC3D54805093 /* muppet_strings.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = muppet_strings.py; sourceTree = ""; }; - E8AD3F42F9B90E5553731848 /* exception.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = exception.py; sourceTree = ""; }; - E8B06DADDF85D240BCDEAD72 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = System/Library/Frameworks/ApplicationServices.framework; sourceTree = SDKROOT; }; - E8FDF82B6BD1532187AFBE45 /* cef_xml_object.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = cef_xml_object.cc; sourceTree = ""; }; - E963A3CC92D8BF4256FDEA60 /* webkit_strings_sr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_sr.pak; sourceTree = ""; }; - E9E9C7069874412A6D7A5A7E /* focus_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = focus_handler_cpptoc.cc; sourceTree = ""; }; - E9F7732ADD6BB6E502471B62 /* download_item_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = download_item_impl.cc; sourceTree = ""; }; - EA2BC04B60C61C54807B3861 /* download_item_callback_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = download_item_callback_cpptoc.h; sourceTree = ""; }; - EA9A5910453B8A43C9F864E2 /* app_locale_settings_it.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_it.pak; sourceTree = ""; }; - EAA971EFC721FB184CA622B6 /* ui_strings_lt.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_lt.pak; sourceTree = ""; }; - EAF32C2CB8FDEFDC6747000F /* frame_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = frame_ctocpp.h; sourceTree = ""; }; - EB09904B2159F7256690EB9A /* v8context_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = v8context_ctocpp.h; sourceTree = ""; }; - EB32421AB024ADB6BE44999A /* geolocation_callback_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = geolocation_callback_cpptoc.h; sourceTree = ""; }; - EB7FB6461C4299EDEBC5FB83 /* cef_strings_ar.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_ar.pak; sourceTree = ""; }; - EB973CE4FEF9B5B2ED441179 /* cef_logging.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_logging.h; sourceTree = ""; }; - EB9A29E13E54ACE6B01072A8 /* cef_strings_ms.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_ms.pak; sourceTree = ""; }; - EBDA2F288039C5E20D832C0F /* iccjpeg.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = iccjpeg.xcodeproj; path = ../third_party/iccjpeg/iccjpeg.xcodeproj; sourceTree = SOURCE_ROOT; }; - EBF5C06D8AC6121BFEF66A5F /* cef_dom_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_dom_capi.h; sourceTree = ""; }; - EC052161A1C3C55426875686 /* admin_template_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = admin_template_unittest.py; sourceTree = ""; }; - EC0822A9679CEA8BB6D488D7 /* proxy_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = proxy_handler_ctocpp.h; sourceTree = ""; }; - EC551A219A6DBB358916C1BF /* url_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = url_impl.cc; sourceTree = ""; }; - EC67219931CE7E3432F787C0 /* frame_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = frame_cpptoc.h; sourceTree = ""; }; - ECC79AFDFBD9192D75DBB4C6 /* devtools_delegate.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = devtools_delegate.cc; sourceTree = ""; }; - ECCBF7F6C5D31974CD894909 /* toolbar_preprocess.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = toolbar_preprocess.py; sourceTree = ""; }; - ECCC851AC8F72EDFC2B2F981 /* cef_response.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_response.h; sourceTree = ""; }; - ECDA7F89372354141C39ADFE /* webkit_strings_sl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_sl.pak; sourceTree = ""; }; - ECFF6AE05958481BFD540AF3 /* app_locale_settings_cs.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_cs.pak; sourceTree = ""; }; - ED289D8FDDC0EF6873A96A45 /* app_locale_settings_bg.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_bg.pak; sourceTree = ""; }; - ED76BFB50460BA410E806208 /* webkit_strings_fa.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_fa.pak; sourceTree = ""; }; - ED774CC9A6E41E3411B553FA /* ui_strings_th.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_th.pak; sourceTree = ""; }; - EDC1E2A49F77A73C8F4D1725 /* cef_load_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_load_handler.h; sourceTree = ""; }; - EDE25A592AC6B469CF3C58F2 /* write_handler_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = write_handler_cpptoc.cc; sourceTree = ""; }; - EE39EE596DEA6D9182112734 /* webkit_strings_fi.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_fi.pak; sourceTree = ""; }; - EE7857FFF9A4D9C66BB38F61 /* cef_request_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_request_capi.h; sourceTree = ""; }; - EE8BBDFA9751E272EE4B6E34 /* FP.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = FP.py; sourceTree = ""; }; - EEA50A31F48D9F26C2270EC4 /* cef_stream_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_stream_capi.h; sourceTree = ""; }; - EF13D40094372E03784355D5 /* webkit_strings_ms.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = webkit_strings_ms.pak; sourceTree = ""; }; - EF34543C9A167C6FF768DCAE /* domdocument_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domdocument_ctocpp.h; sourceTree = ""; }; - EF4166854E3E8459757D0E2F /* render_process_handler_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = render_process_handler_ctocpp.cc; sourceTree = ""; }; - EF7EA3D6FCFE4AE5044B2703 /* app_locale_settings_am.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_am.pak; sourceTree = ""; }; - EFB261248F2CA9D5DA266A00 /* display_handler_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = display_handler_ctocpp.h; sourceTree = ""; }; - EFD61BE299279F804F6194CE /* app_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = app_cpptoc.h; sourceTree = ""; }; - F087160AE31260242344FE3C /* write_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = write_handler_cpptoc.h; sourceTree = ""; }; - F0C44F397DE57FF0BF3EE6B4 /* ui_strings_nl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_nl.pak; sourceTree = ""; }; - F0C79A23253ACFB08E461D8C /* post_data_element_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = post_data_element_cpptoc.cc; sourceTree = ""; }; - F0F966C99991A8DE7B491044 /* string_map_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string_map_impl.cc; sourceTree = ""; }; - F0FAA7EB5CB31AD8B8EEE341 /* __init__.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = __init__.py; sourceTree = ""; }; - F12BA7D477CE652CE0378E43 /* regexp.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = regexp.py; sourceTree = ""; }; - F12C567E71FD0DA421B6A5DF /* response_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = response_cpptoc.h; sourceTree = ""; }; - F13C237B772D9F520A612293 /* browser_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = browser_context.h; sourceTree = ""; }; - F13EDB36838C78E6470B1A91 /* lazy_re.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = lazy_re.py; sourceTree = ""; }; - F24BB8C67FE764F01DFBF960 /* stream_writer_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = stream_writer_ctocpp.cc; sourceTree = ""; }; - F28572D01F13C0A3F8644679 /* cef_urlrequest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_urlrequest.h; sourceTree = ""; }; - F292B9739283ADD79D7BEE01 /* javascript_dialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = javascript_dialog.h; sourceTree = ""; }; - F2C9D770BB176067208708D2 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; }; - F2DBCDF72B85E19AD64FB768 /* NSURL+Utils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSURL+Utils.m"; sourceTree = ""; }; - F32CB72F18CF3355E5C1C895 /* dom_event_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dom_event_impl.h; sourceTree = ""; }; - F33B68CF5847805989509D13 /* transl2tc_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = transl2tc_unittest.py; sourceTree = ""; }; - F3E283BE9330EE912852D5AB /* value_base.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = value_base.cc; sourceTree = ""; }; - F425B1FFD0720AC546A431A4 /* xml_reader_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = xml_reader_impl.cc; sourceTree = ""; }; - F43F8E52BD7A46794874EAA3 /* cef_life_span_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_life_span_handler.h; sourceTree = ""; }; - F50B75FA83AC81C592A04541 /* app_locale_settings_ko.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_ko.pak; sourceTree = ""; }; - F57922A52A9CBE7D6C5818B3 /* adm_writer.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = adm_writer.py; sourceTree = ""; }; - F57FDD1E3CF622D99F92DC8A /* xml_reader_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = xml_reader_cpptoc.h; sourceTree = ""; }; - F618FE14AAE048AA30C99EE2 /* dom_event_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dom_event_impl.cc; sourceTree = ""; }; - F64D7374F957B22800459379 /* cef_callback.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_callback.h; sourceTree = ""; }; - F67C700426EF8449E5CCC774 /* shortcuts.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = shortcuts.py; sourceTree = ""; }; - F68051B3A28DAA052B15A469 /* v8accessor_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8accessor_ctocpp.cc; sourceTree = ""; }; - F68F18FF049593AC30D5381A /* scheme_registrar_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = scheme_registrar_cpptoc.h; sourceTree = ""; }; - F6E29811FBA959CD7BC2EAA4 /* util_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = util_unittest.py; sourceTree = ""; }; - F6EE2C39F48A34DC1FD19315 /* browser_urlrequest_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_urlrequest_impl.cc; sourceTree = ""; }; - F6FC8D0B14E925438D497470 /* libjpeg.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libjpeg.xcodeproj; path = ../third_party/libjpeg_turbo/libjpeg.xcodeproj; sourceTree = SOURCE_ROOT; }; - F70B20347C5192B800603656 /* command_line_ctocpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = command_line_ctocpp.cc; sourceTree = ""; }; - F727DE03E5EC9D7208861E7A /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; }; - F75945ED70B897D40F27A14B /* constants.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = constants.py; sourceTree = ""; }; - F76F445CF005C79B3ED25F86 /* domvisitor_ctocpp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = domvisitor_ctocpp.h; sourceTree = ""; }; - F79BC80E5989366BC034AD67 /* v8value_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = v8value_cpptoc.cc; sourceTree = ""; }; - F8008887AB40C8E030162213 /* ui_strings_ta.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_ta.pak; sourceTree = ""; }; - F80705F721F23C071C68CBF0 /* speex.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = speex.xcodeproj; path = ../third_party/speex/speex.xcodeproj; sourceTree = SOURCE_ROOT; }; - F826FF98E5F795F91C77DDCA /* sdch.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = sdch.xcodeproj; path = ../sdch/sdch.xcodeproj; sourceTree = SOURCE_ROOT; }; - F889C65932D109B4889B4527 /* app_locale_settings_hr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_hr.pak; sourceTree = ""; }; - F909E4720F5671522B2B7B8C /* browser_host_cpptoc.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = browser_host_cpptoc.cc; sourceTree = ""; }; - F93BAD27A59BC516BB9311F8 /* pseudo_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = pseudo_unittest.py; sourceTree = ""; }; - F9AA4C47866D58A55D89906A /* app_locale_settings_lv.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_lv.pak; sourceTree = ""; }; - FA28652BC385FF946B57DA62 /* app_locale_settings_sk.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_sk.pak; sourceTree = ""; }; - FA58F4443A2BB8AB58939899 /* cef_download_item_capi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cef_download_item_capi.h; sourceTree = ""; }; - FB1E9137063AD67969F7C3F3 /* app_locale_settings_ml.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_ml.pak; sourceTree = ""; }; - FB531305A4122266E639EA1A /* app_locale_settings_sr.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_sr.pak; sourceTree = ""; }; - FB89F2BDE176C61ABD9F21FE /* fr */ = {isa = PBXFileReference; lastKnownFileType = text; name = fr; path = fr.lproj/locale.pak; sourceTree = ""; }; - FBB814347DC4A4175D6E4897 /* cef_strings_sw.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = cef_strings_sw.pak; sourceTree = ""; }; - FC5475BF8937399DFD353D03 /* ta */ = {isa = PBXFileReference; lastKnownFileType = text; name = ta; path = ta.lproj/locale.pak; sourceTree = ""; }; - FC70425D2E226756A6D1FCA6 /* app_locale_settings_pt-PT.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = "app_locale_settings_pt-PT.pak"; sourceTree = ""; }; - FC77141AAC1ABB1E3D77BA33 /* app_locale_settings_pl.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = app_locale_settings_pl.pak; sourceTree = ""; }; - FD4E83BB8718A54254419599 /* ui_resources.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_resources.pak; sourceTree = ""; }; - FDCD027B04F1985CF965A6D7 /* rc_header.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = rc_header.py; sourceTree = ""; }; - FE315AF8B75A20D4F79D2EFE /* googleurl.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = googleurl.xcodeproj; path = ../build/temp_gyp/googleurl.xcodeproj; sourceTree = SOURCE_ROOT; }; - FE646E557D4F2F68727F9EA2 /* chrome_scaled_image_unittest.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = chrome_scaled_image_unittest.py; sourceTree = ""; }; - FE84C71E002AAD230CDFA753 /* ui_strings_ms.pak */ = {isa = PBXFileReference; lastKnownFileType = text; path = ui_strings_ms.pak; sourceTree = ""; }; - FED6A7D4CC6FDAC0ACF00545 /* dialogs.html */ = {isa = PBXFileReference; lastKnownFileType = text; path = dialogs.html; sourceTree = ""; }; - FF32EE1D0C75020413EA8446 /* resource_bundle_handler_cpptoc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource_bundle_handler_cpptoc.h; sourceTree = ""; }; - FF8BB4B2506BBC0896EA40FE /* resource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = resource.h; sourceTree = ""; }; - FFD6F05FCEF91D95328C97C9 /* NSString+Utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSString+Utils.h"; sourceTree = ""; }; - FFF00D66C4A59FA632CF355D /* npapi.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = npapi.xcodeproj; path = ../third_party/npapi/npapi.xcodeproj; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 0EFC4FEA51E5E61F716A04B7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2E3453E8D91CCB4E6DE1F68A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - D7F71CD3F0BD63CB4F0B3D87 /* libcef.dylib in Frameworks */, - F0A8AC18FF39C8DC5081AAF0 /* libcef_dll_wrapper.a in Frameworks */, - DAADE5BD72F606C80A55A035 /* AppKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 50130A990C148A218B7C3BD9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - EF1C148AB09ABA74E23F96A1 /* libbase.a in Frameworks */, - 574C7CAC6AFCD500174A2A45 /* libbase_i18n.a in Frameworks */, - C6F1C38F46260D1116E1EB93 /* libtest_support_base.a in Frameworks */, - 5011F1935C200CFC1B725732 /* libgtest.a in Frameworks */, - C168BC944255C0A12E15AF51 /* libicui18n.a in Frameworks */, - 23CE144D847A9AF82E379FFE /* libicuuc.a in Frameworks */, - 390BDCB26ED347EE2A30D596 /* libcef.dylib in Frameworks */, - 08A1EF262C1EF2AB3C1D9CD2 /* libcef_dll_wrapper.a in Frameworks */, - 2D25E25B0C2A75F4CC7A8913 /* libbase_static.a in Frameworks */, - A2635945AC974BEF46E1CADB /* liballocator_extension_thunks.a in Frameworks */, - A3E79D4490422EBB1FE9D2DB /* libmodp_b64.a in Frameworks */, - 2B45FCF79365697CA8254743 /* libdynamic_annotations.a in Frameworks */, - 92736BF03488492B25E90836 /* libmach_override.a in Frameworks */, - 08D87D8319269449D03364F6 /* libevent.a in Frameworks */, - 78824929E13B8777A8D5DBE6 /* libicudata.a in Frameworks */, - E4B7ADB4097F8ECBFC1969B5 /* libgmock.a in Frameworks */, - E985A1ECF9581803B2A5EBCA /* AppKit.framework in Frameworks */, - 2EA878D19A6F2EFF043D7D6D /* Carbon.framework in Frameworks */, - 40F06CC96A118205A945631C /* CoreFoundation.framework in Frameworks */, - E41F94ABD91197D7F562D44F /* Foundation.framework in Frameworks */, - D34BCE544D5BF02F2E44DA2F /* IOKit.framework in Frameworks */, - 0B3E25A5EB68DDAA28C5C05C /* Security.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 714FEC28B84B5C81930A0035 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A221D8DCAE94FF7F81841D9C /* libcef.dylib in Frameworks */, - CCF10249880E1F5A002A81DE /* libcef_dll_wrapper.a in Frameworks */, - A4BC912E45376271AC1A3D82 /* AppKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9705A89604762C019F4CA5B7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4D725CE2F2EA4D9EDDAB8498 /* libcef.dylib in Frameworks */, - 15742B6B2A048639DE9BC96E /* libcef_dll_wrapper.a in Frameworks */, - 5A1F938B7A72B555207D35A2 /* AppKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B903C7B9144BA6DAAF123B1A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 2CD483F0DE7B4D13F87049A8 /* libcef.dylib in Frameworks */, - C1328581EAF07352D62D713D /* libcef_dll_wrapper.a in Frameworks */, - E93FCC1068322C03992030B3 /* AppKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BCCF06AC835461591F8E6D9B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A2C3A3D6B87B5520CE81D86E /* libcontent_app.a in Frameworks */, - C6470A4C9740915ED57F0503 /* libcontent_browser.a in Frameworks */, - 2DDA5503814CAB959D43775B /* libcontent_common.a in Frameworks */, - 13C29243D8C291552BC86AA8 /* libcontent_gpu.a in Frameworks */, - 4CAA2ECF687C405D90EC9B9B /* libcontent_plugin.a in Frameworks */, - 3786A5C285ED6164CCA66AE3 /* libcontent_ppapi_plugin.a in Frameworks */, - 7D3DCD2418E1DF36B21DEB1C /* libcontent_renderer.a in Frameworks */, - 28E4F22051D65BCC59F4D558 /* libcontent_utility.a in Frameworks */, - 70AA107566459038C0CF4893 /* libcontent_worker.a in Frameworks */, - 332E5D49FE9138DEBC0A6158 /* libbase.a in Frameworks */, - 457F68848C463E5784942057 /* libdynamic_annotations.a in Frameworks */, - C94809435E58FFBE1EE53E88 /* libgoogleurl.a in Frameworks */, - 5937EF842CBA1C1E6884F418 /* libipc.a in Frameworks */, - 72A34CAD138849FBCFB20158 /* libmedia.a in Frameworks */, - 850328AA54E1B709287C0133 /* libnet.a in Frameworks */, - B1A8C17B86B3CBE8E01BF49B /* libskia.a in Frameworks */, - 75527077D3313B90E791A460 /* libwebkit.a in Frameworks */, - DC7C68F9FF0ED28022D5417A /* libui.a in Frameworks */, - 9D23CFB96620D7F17522854A /* libappcache.a in Frameworks */, - 39C7FB1550F44D1682A083FA /* libdatabase.a in Frameworks */, - F9179A44555D6700BD529DBE /* libfileapi.a in Frameworks */, - 2188E527BDFBA04FBB123FD6 /* libglue.a in Frameworks */, - 486BEF17C50C3B6C07ADBA5E /* libquota.a in Frameworks */, - 4EF5DDF4ED6C631415816B70 /* libcef_static.a in Frameworks */, - AD429127FF8F824B59B68820 /* libbase_static.a in Frameworks */, - E64E8BB14454B9F2E2B99456 /* liballocator_extension_thunks.a in Frameworks */, - DBF78C8789DFB249A2C996F5 /* libmodp_b64.a in Frameworks */, - C11D6D6B9E8E62E3F1B97C00 /* libmach_override.a in Frameworks */, - C5317FDFB7DE3856AC1F7DB1 /* libevent.a in Frameworks */, - 9B2AB46D2F22FB8216947EA6 /* libicudata.a in Frameworks */, - 34B4DF4E2504AD8E091C4788 /* libicui18n.a in Frameworks */, - 3372199D0CDB3DB3962745C1 /* libicuuc.a in Frameworks */, - 24C4692634E1E9482969A6E4 /* libgles2_implementation.a in Frameworks */, - 2291F521B2DBFD4B3131C6BB /* libgl_wrapper.a in Frameworks */, - 4C3751111DCEC392481C2E36 /* libgles2_utils.a in Frameworks */, - 31FC1BC36D97C10ACD5632B0 /* libskia_opts.a in Frameworks */, - E28EF59AB76DA99F8B68DFE7 /* libskia_opts_ssse3.a in Frameworks */, - 29AF1337E5B83E64A85216EB /* libsfntly.a in Frameworks */, - CF0F5A11B32F444B14103963 /* libchrome_zlib.a in Frameworks */, - 2A8E708A7DB2B4EBDCD28F96 /* libbase_i18n.a in Frameworks */, - 1B66FB7132D4E9227F1BC343 /* libcrcrypto.a in Frameworks */, - 6F95577CFEAD995ED6F1C398 /* libcrnspr.a in Frameworks */, - 53E24EDE9B4E8DE2158E9E5E /* libcrnss.a in Frameworks */, - FB2B287CAAC55F92896777C2 /* libnss_static.a in Frameworks */, - 498DB5D393E4BCAF92938C0C /* libsqlite3.a in Frameworks */, - B28748CD97BD6DBB49362721 /* libsdch.a in Frameworks */, - F58527770C1C102AD5B12EE9 /* libv8_base.a in Frameworks */, - 6389CC8DEFD14DCEF65C9509 /* libv8_snapshot.a in Frameworks */, - C329736617AEE36044FB9D71 /* libssl.a in Frameworks */, - 0D5CAAF584FCEF6FC987E215 /* libpng.a in Frameworks */, - 09F4CF8F044E6BC4E9362EB7 /* libjpeg_turbo.a in Frameworks */, - 64C6A252822DA8F45C41B52D /* libgles2_cmd_helper.a in Frameworks */, - DA1E739503B9C92C48464A93 /* libcommand_buffer_client.a in Frameworks */, - 32515A016652B8604FBB9599 /* libcommand_buffer_common.a in Frameworks */, - 7D40D80FE969AA370AA47419 /* libgpu_ipc.a in Frameworks */, - 5C36AA25D0F468C91E1CCDEC /* libyuv_convert.a in Frameworks */, - 01EAB4093A6D6AA596E42901 /* libyuv_convert_simd_x86.a in Frameworks */, - 6770FC4915423692B30B8E33 /* libil.a in Frameworks */, - 8D3ECE4305228644255F2FC3 /* libffmpeg.a in Frameworks */, - 57BE03DEC5A991785CC2D6FA /* libwebcore_dom.a in Frameworks */, - E7A33BFCF64A531A4C6499A6 /* libtess.a in Frameworks */, - DCD6A474AC8988ADBE861000 /* libyarr.a in Frameworks */, - BEE1F22B02D1394614215AC9 /* libwtf.a in Frameworks */, - F29356D0FF8BAD6ED6BCF0E4 /* libwebkit_platform.a in Frameworks */, - 0C5F7438998B52E8C57BFE84 /* libiccjpeg.a in Frameworks */, - AE582613E4D1FA8EF407B9EF /* libwebp_enc.a in Frameworks */, - 32DCB1E2771353E462F3F6D2 /* libwebp_dec.a in Frameworks */, - 427134C2A9DF4CDEC3EFDD31 /* libwebp_dsp.a in Frameworks */, - D5D38ECC7D13265B5E7E3C70 /* libwebp_utils.a in Frameworks */, - DF8F31A1FFE26ECB6770C0E9 /* libxml2.a in Frameworks */, - 49FEC7DDBA98B0B01E9FF06F /* libxslt.a in Frameworks */, - 9986189551695DC93D7BD002 /* libots.a in Frameworks */, - 2148359DD84334D0DB3E613F /* libtranslator_glsl.a in Frameworks */, - 0C9CE87F2ED386264D3AE214 /* libtranslator_common.a in Frameworks */, - 8B9AA8813B8F41B4FF2E7EB5 /* libpreprocessor.a in Frameworks */, - AC9FB8311A15EDBDD53DF92C /* libgles2_c_lib.a in Frameworks */, - 706A5D6DB48A9F5FB8D98E0A /* libleveldatabase.a in Frameworks */, - ABC28235FC694755E4F2B388 /* libwebcore_html.a in Frameworks */, - 98C647EEE625335E5D2C2C1B /* libwebcore_platform.a in Frameworks */, - 51A6F0A7917BA50C8C2415E0 /* libharfbuzz-ng.a in Frameworks */, - E0E1535706E26B3964FFE20F /* libwebcore_remaining.a in Frameworks */, - C785E96BEAA5C3A21C29F7AF /* libv8-i18n.a in Frameworks */, - 65DDD02E8802408489124043 /* libwebcore_rendering.a in Frameworks */, - B19148FA87B75B49134F5131 /* libwebcore_bindings.a in Frameworks */, - 75CF2A1D82A3F7ADEBAB04AB /* libwebcore_svg.a in Frameworks */, - A0461C9D9B6B88544A0A289F /* libsql.a in Frameworks */, - 7F2D5C57D2D8299177FC597D /* libblob.a in Frameworks */, - 5879319A5738380C9D1571D5 /* libcommand_buffer_service.a in Frameworks */, - F4FBB487FF2C267320CF9B4C /* libsurface.a in Frameworks */, - DE7BDC88D670E25AAFB03FB1 /* libspeech_proto.a in Frameworks */, - 4B3177E22AE8185CEBE6B579 /* libprotobuf_lite.a in Frameworks */, - D7A5FF5F4D991CC1661E2559 /* libhttp_server.a in Frameworks */, - CEFC6CA2843A967D37E6DE51 /* libppapi_proxy.a in Frameworks */, - 62565F0267C1B96B93A37DB8 /* libppapi_shared.a in Frameworks */, - 472F457CBABB2EB1F5856FDA /* libflac.a in Frameworks */, - 9AE5747DC482AA54015313A6 /* libspeex.a in Frameworks */, - 3738E3E47F93E1E8BDF2064B /* libdom_storage.a in Frameworks */, - 5F303014A9D77F6773DCBB55 /* libsudden_motion_sensor.a in Frameworks */, - 6FC718E9EA3F27770FB75634 /* libprinting.a in Frameworks */, - FB3E367560C956FC430A6518 /* libwebkit_media.a in Frameworks */, - E6472481DDBA14952F8CD703 /* libwebkit_user_agent.a in Frameworks */, - FB26B3329C78E88E014DE538 /* libjingle_glue.a in Frameworks */, - 751004C1A9D6162DDC2623AC /* libjingle.a in Frameworks */, - A23F9E8E60A262D60751D4B5 /* libexpat.a in Frameworks */, - 24CD7638FA7459F99E7CE295 /* libjsoncpp.a in Frameworks */, - EC002E383BEDEBAD4AE79999 /* libjingle_p2p.a in Frameworks */, - 300F960F8F1450A4032B3F1F /* libwebkit_gpu.a in Frameworks */, - A307A7823B72BB0836ED4435 /* libjingle_peerconnection.a in Frameworks */, - 8E817A421AB5BC8F44AC386E /* libsrtp.a in Frameworks */, - 870EF5D90936EC4A06E6EE78 /* libvideo_capture_module.a in Frameworks */, - ED24EBBCE259B69C092FB02F /* libwebrtc_utility.a in Frameworks */, - 205A7DAAD947B797BB986DEB /* libaudio_coding_module.a in Frameworks */, - 8C46B6AF8C73D205EFBD51F8 /* libCNG.a in Frameworks */, - 95DDCDAC3D4FF867390C18A7 /* libsignal_processing.a in Frameworks */, - 0F32EAFCC9A2A60FEF136A84 /* libG711.a in Frameworks */, - D4865774BCB73686942D4ABB /* libG722.a in Frameworks */, - 53DA9A4B4AAC9F2574AD2328 /* libiLBC.a in Frameworks */, - DC68E4CEA60C357918FD948F /* libiSAC.a in Frameworks */, - CAA3B890D574B81FE02E78F6 /* libiSACFix.a in Frameworks */, - D879B99B226A88092BB49696 /* libPCM16B.a in Frameworks */, - 846C0C521F91EBE85E4DF8FB /* libNetEq.a in Frameworks */, - 36B378685297B9310D43E303 /* libresampler.a in Frameworks */, - 677FC82C4DA40800DA36655E /* libvad.a in Frameworks */, - 869AD4886DB3EBE42F5AC74F /* libsystem_wrappers.a in Frameworks */, - F5A950EBB168F0A10512CD2E /* libwebrtc_video_coding.a in Frameworks */, - 8DD1C4E3F578C58B2A9B8BD0 /* libwebrtc_i420.a in Frameworks */, - 8E645D0A842228177135228A /* libwebrtc_vp8.a in Frameworks */, - 66EBB9216BF008200C2C16F9 /* libwebrtc_libyuv.a in Frameworks */, - 6F6C3FF3080B6EA7B48DA906 /* libyuv.a in Frameworks */, - 1932382BEF16F19AD7939AED /* libvpx.a in Frameworks */, - 48FA10BC341B094B3F33B750 /* libvideo_render_module.a in Frameworks */, - D307D7F82B366EA986157A81 /* libvideo_engine_core.a in Frameworks */, - 363B4AE763B30CD5B1116C3C /* libwebrtc_jpeg.a in Frameworks */, - 010F4171FA5D72283581D13C /* libmedia_file.a in Frameworks */, - 2C121E16F5308F7980E95B5E /* librtp_rtcp.a in Frameworks */, - 635400CEB2A58D009A088BFF /* libudp_transport.a in Frameworks */, - D4100726F0933F0FFEC8D8BF /* libbitrate_controller.a in Frameworks */, - 562FEA15A6813058241E00A9 /* libvideo_processing.a in Frameworks */, - 4446856EA412F92A4E07AA5E /* libvideo_processing_sse2.a in Frameworks */, - 682096E97F88AB100E9A3D98 /* libvoice_engine_core.a in Frameworks */, - F6114BA29C8765E6520AE958 /* libaudio_conference_mixer.a in Frameworks */, - 48F4E65E56419C9FD000A6A1 /* libaudio_processing.a in Frameworks */, - 04C5BA236DB9B2ED2EF20499 /* libaec.a in Frameworks */, - 5C55339838F650B725A9EB10 /* libapm_util.a in Frameworks */, - 3E3EB58B0FD00BB0B9E0E326 /* libaec_sse2.a in Frameworks */, - 4206C5847974DE58FD75FCC4 /* libaecm.a in Frameworks */, - 313EEBB24006E1B73832AD55 /* libagc.a in Frameworks */, - 57CFCF31BDD682B5108FD40A /* libns.a in Frameworks */, - 09D04101D715987BB0BB81AD /* libaudio_device.a in Frameworks */, - F5A1923C8029AC1A2DABE283 /* AppKit.framework in Frameworks */, - 1443D604FDBF69C0ECEC6201 /* Carbon.framework in Frameworks */, - 5936ECC79FAF738E34341EF7 /* CoreFoundation.framework in Frameworks */, - B724629DBB78DB20D913B95D /* Foundation.framework in Frameworks */, - 7D7A3365DE8A0FA845B582C5 /* IOKit.framework in Frameworks */, - FB3ADDF565C8FB6A6D780810 /* Security.framework in Frameworks */, - ABF58A21401C3CD45BA99B87 /* OpenGL.framework in Frameworks */, - 0337D8FBEE11DC814AC2EAAE /* Accelerate.framework in Frameworks */, - 484FFB505367AE942C59F7E7 /* AudioUnit.framework in Frameworks */, - 18C16E1114B5980FA4D06965 /* CoreVideo.framework in Frameworks */, - 17E35FBBC18FEAB3F45CAB46 /* SystemConfiguration.framework in Frameworks */, - 795975A448D133FE6E730591 /* libresolv.dylib in Frameworks */, - 54FB30909986D1153CB5C29D /* CoreServices.framework in Frameworks */, - 483E54E82D31E620AF47B201 /* AudioToolbox.framework in Frameworks */, - E4ED537B4DC2866A830FE45A /* CoreAudio.framework in Frameworks */, - B11B844D5B7BFBE340F115A6 /* QTKit.framework in Frameworks */, - FEC60C6AF6CA1D0892E164DD /* libWebKitSystemInterfaceLeopardPrivateExtern.a in Frameworks */, - 49D26BAAD6702C0AF60EBBF8 /* QuartzCore.framework in Frameworks */, - 64CD0E97472E4A5086904996 /* libcups.dylib in Frameworks */, - 4915380176F656490E5B2C2B /* ApplicationServices.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C28AC5467575EA30992399FC /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 3D4AE82441CC5CA51F0162C0 /* libbase.a in Frameworks */, - EF742B7AFED89658D3A44BD1 /* libbase_i18n.a in Frameworks */, - 305255DD8022FA5BFC80A5B1 /* libtest_support_base.a in Frameworks */, - 8B7F5D24551A2E22C16FF697 /* libgtest.a in Frameworks */, - 837A1448675A5837410E2F10 /* libicui18n.a in Frameworks */, - 6304FDE1B6BA94E5B480FB64 /* libicuuc.a in Frameworks */, - D5FAF72CB8F9BFAFB259C81D /* libcef.dylib in Frameworks */, - FB98FD4E3BEA794BAB650F6C /* libcef_dll_wrapper.a in Frameworks */, - F440E7DD857C432492DC6580 /* libbase_static.a in Frameworks */, - 84A041B76F51A9A9267C37A4 /* liballocator_extension_thunks.a in Frameworks */, - E6E1F85709F53E113372FF34 /* libmodp_b64.a in Frameworks */, - 6E473E1F7CC71E258527F650 /* libdynamic_annotations.a in Frameworks */, - BDBB24D4CCE4A19D1EDFC951 /* libmach_override.a in Frameworks */, - 2D07C9F111F1BFFAC4ADC432 /* libevent.a in Frameworks */, - E5804D5C983F60BE9511CB22 /* libicudata.a in Frameworks */, - 1ED13ED25F33B1335CD29A5A /* libgmock.a in Frameworks */, - 50FF642A12EC0C16056B7204 /* AppKit.framework in Frameworks */, - DD3F05C4E0D15338891A9922 /* Carbon.framework in Frameworks */, - FD3465C742E7495B0489F119 /* CoreFoundation.framework in Frameworks */, - A518D2461127F778A7D73B16 /* Foundation.framework in Frameworks */, - A39CB5442D560022C02555A9 /* IOKit.framework in Frameworks */, - FDDC8E006BC4FEB0987952D1 /* Security.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FF7A801E01D9A5D08874F92D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 0041A0FFCA788DD69BF9A559 /* renderer */ = { - isa = PBXGroup; - children = ( - 0214004821A34E16FAA98C37 /* browser_impl.cc */, - D4CC7F2E668EBBEBC0B25A09 /* browser_impl.h */, - 8B956AE1B815ACBF853C38A5 /* content_renderer_client.cc */, - 9407ED90778DCAA2D95996E5 /* content_renderer_client.h */, - 34342431CF0B291A417AB3DC /* dom_document_impl.cc */, - 12AAC7C7476E3B69B743F399 /* dom_document_impl.h */, - F618FE14AAE048AA30C99EE2 /* dom_event_impl.cc */, - F32CB72F18CF3355E5C1C895 /* dom_event_impl.h */, - 06CFB89D4546843303928D46 /* dom_node_impl.cc */, - ACC9DD4F18A619E64B23E04F /* dom_node_impl.h */, - 7569642FE0516CE15E0EB10B /* frame_impl.cc */, - 8D08F86EAC1279F520694642 /* frame_impl.h */, - CDDFE6F7750317167401DBB1 /* render_process_observer.cc */, - 0C2AFED1006ACC3B5DEA1B3A /* render_process_observer.h */, - D73F8D203BD3DC29958AA381 /* render_urlrequest_impl.cc */, - 20BA4A45C8E834D3CBD09AD1 /* render_urlrequest_impl.h */, - 9198D923FBC2970445FD08FB /* thread_util.h */, - C25773E7E22D4B38265E96C9 /* v8_impl.cc */, - 1FF3A7904AAC029FCC596CCB /* v8_impl.h */, - CF995465B9EDCF391B89FEA8 /* webkit_glue.cc */, - DBF44633A3C9C520AFEF1CE1 /* webkit_glue.h */, - ); - path = renderer; - sourceTree = ""; - }; - 057B966FE29A268A6863588E /* Products */ = { - isa = PBXGroup; - children = ( - AA9C990C6F0804F225B3E5F3 /* libchrome_zlib.a */, - ); - name = Products; - sourceTree = ""; - }; - 073C9061E63852E216E02CCE /* Products */ = { - isa = PBXGroup; - children = ( - 7F9E6BE9EC02F6F4CA505DA6 /* libsudden_motion_sensor.a */, - ); - name = Products; - sourceTree = ""; - }; - 07B3204DBE9ECB145822547F /* browser */ = { - isa = PBXGroup; - children = ( - 174958AFC1DC000B4DFCAAB5 /* application_mac.h */, - 0DCA45E5487FDB9C815839B1 /* application_mac.mm */, - CAF6A438DA5A40FD14194552 /* browser_context.cc */, - F13C237B772D9F520A612293 /* browser_context.h */, - 51AE0CA1355F7A0775D3A1D0 /* browser_host_impl.cc */, - 8F1DDCCC2B12987556CB7A6B /* browser_host_impl.h */, - 6A42142B50855298FBE0CB4E /* browser_host_impl_mac.mm */, - 37E8B79CC806BBF17FDB37C0 /* browser_main.cc */, - 5232F8242937DE8B5E28F994 /* browser_main.h */, - 4DB1B86AAC941216FCA32E15 /* browser_main_mac.mm */, - 67E2346E369D700890BAC5F2 /* browser_message_filter.cc */, - C0B028164A5328758788DBCC /* browser_message_filter.h */, - 91CA13A8DA1C53EA4CE12B1D /* browser_message_loop.cc */, - 91D140738ACF233F694087D9 /* browser_message_loop.h */, - 3A9A1DB9915BB6FD0AB526A1 /* browser_settings.cc */, - E4DBE8ED5B8C759DF03135D3 /* browser_settings.h */, - F6EE2C39F48A34DC1FD19315 /* browser_urlrequest_impl.cc */, - BBB082F6C3D4048CFB7A4BCD /* browser_urlrequest_impl.h */, - D3FED2E6E88A2EB20010DFAC /* content_browser_client.cc */, - 907CCE9710B29FF62EBB8C9C /* content_browser_client.h */, - 5FA82BA0F4237B9D72F3F4AB /* context.cc */, - 761F9B6F7D9C5D58B7800485 /* context.h */, - 14BDBB48FBFCED5C56A3D384 /* context_menu_params_impl.cc */, - 90899D9D0DBCB27C66786692 /* context_menu_params_impl.h */, - 00A3A60B85CDFEDACAEEB519 /* cookie_manager_impl.cc */, - 9BC2A3979FF4D29EA9037A8A /* cookie_manager_impl.h */, - ECC79AFDFBD9192D75DBB4C6 /* devtools_delegate.cc */, - B3CC57F25F4CFFB12C00E302 /* devtools_delegate.h */, - A9F5AFFE1B03166029163683 /* devtools_scheme_handler.cc */, - 3498BD423E02FABE1EE83BB8 /* devtools_scheme_handler.h */, - E9F7732ADD6BB6E502471B62 /* download_item_impl.cc */, - E433B28466F26CA5A6E597A7 /* download_item_impl.h */, - 4F44FF29D7C26F262CD730CA /* download_manager_delegate.cc */, - 49B228FEAE0E4BFBA9BB2266 /* download_manager_delegate.h */, - 58E1C7A6EE126C2D92CE13DD /* download_manager_delegate_mac.mm */, - DC31F42D1CD61440FCE82A26 /* frame_host_impl.cc */, - D21108AEEAA66A731A5B0110 /* frame_host_impl.h */, - F292B9739283ADD79D7BEE01 /* javascript_dialog.h */, - 511DFC813E6674C7EA914805 /* javascript_dialog_creator.cc */, - 6C401F20E3AC9FF553252DC8 /* javascript_dialog_creator.h */, - CD602F995973791BC74F5A97 /* javascript_dialog_mac.mm */, - 5C92D3A27E73BD53BB4E2F25 /* menu_creator.cc */, - 1094CFA6EF2DE7E52C584CD3 /* menu_creator.h */, - 173C4B63EE1C5DE552933F98 /* menu_creator_runner_mac.h */, - 1C6366E363E4421EDFB9EB05 /* menu_creator_runner_mac.mm */, - C7B512B42C038991A1237E72 /* menu_model_impl.cc */, - 718379D5B4EC037834401B14 /* menu_model_impl.h */, - C32B3AA8CEC445ABB8CCAB5A /* navigate_params.cc */, - 2EB9F9BD145BFF7BA721058A /* navigate_params.h */, - A6FFECB794D4143BFF69086A /* origin_whitelist_impl.cc */, - AEC666F3C94F4CEB8DEE2A9A /* origin_whitelist_impl.h */, - 6DFCAB3FE3A07471E7E8DF7A /* path_util_impl.cc */, - A53D5848A69C0706241C7CCB /* process_util_impl.cc */, - 2D1746EDD846025A7BBCF1F5 /* resource_context.cc */, - 373AC737314C99FC380A2C27 /* resource_context.h */, - A128B3C4C3B4EE24533CE3F1 /* resource_dispatcher_host_delegate.cc */, - 6D19A7B6453E43B9F0979372 /* resource_dispatcher_host_delegate.h */, - 3756CB6513E7539C28E1EAC8 /* resource_request_job.cc */, - BAEFF6772AA39B65C0A16BDC /* resource_request_job.h */, - 84C7CFBD54B4BF935F72B506 /* scheme_impl.cc */, - A829A9477B7F5226C12126E6 /* sqlite_diagnostics_stub.cc */, - 21B00D3F02764EF9434371B9 /* stream_impl.cc */, - E16C430DB6178E130B542B39 /* stream_impl.h */, - 71CA3191CD43BF1BF3DDC918 /* thread_util.h */, - B8EFE13D4363591579F845BD /* url_network_delegate.cc */, - 4F477F6CB38631F10E929F69 /* url_network_delegate.h */, - A9FBDEF643B43B3C94FCE05B /* url_request_context_getter.cc */, - 4FD83B3E31064A685C29F6A0 /* url_request_context_getter.h */, - 0DB4E599ACA1FF50AEA38D24 /* url_request_context_getter_proxy.cc */, - D856CDF05187853E5B11722B /* url_request_context_getter_proxy.h */, - ADF7DF75ED5214C882BA463D /* url_request_context_proxy.cc */, - 07A39F219A616F191160FF50 /* url_request_context_proxy.h */, - 9F84468F6827D8F99B734EA6 /* url_request_interceptor.cc */, - B3742C83FEE2415D7BA25F91 /* url_request_interceptor.h */, - 586069E4DE0F00ABACB87AEF /* web_plugin_impl.cc */, - F425B1FFD0720AC546A431A4 /* xml_reader_impl.cc */, - 10128A219805A7294C6801D1 /* xml_reader_impl.h */, - B111F32791A8BCA7228774C1 /* zip_reader_impl.cc */, - 3825964A1CB210151CB59E5A /* zip_reader_impl.h */, - ); - path = browser; - sourceTree = ""; - }; - 0A57F4FC2979198F954E180E /* net */ = { - isa = PBXGroup; - children = ( - E450C695FBCE11210A22C7BF /* clear_on_exit_policy.cc */, - DAB9718F6B8064F992196C74 /* clear_on_exit_policy.h */, - DEC34FF48A6DE9F7B8BB5A73 /* sqlite_persistent_cookie_store.cc */, - AD738FC5F4AC2C880F5D1446 /* sqlite_persistent_cookie_store.h */, - ); - path = net; - sourceTree = ""; - }; - 0AE0B805F4C7418FC2BE7CBB /* Products */ = { - isa = PBXGroup; - children = ( - EAA7B595FCFF3CBBB104B76B /* libiccjpeg.a */, - ); - name = Products; - sourceTree = ""; - }; - 0D308C0F1C74382E7D174B45 /* Products */ = { - isa = PBXGroup; - children = ( - B0D1337B3DE31CF644918BEB /* libgoogleurl.a */, - 966078E69F34CDDB98FA7FE0 /* googleurl_unittests */, - ); - name = Products; - sourceTree = ""; - }; - 0E7682419CD1D4CFAE35608F /* Products */ = { - isa = PBXGroup; - children = ( - D67EA0D4989FD408DD77B66C /* libgles2_implementation.a */, - 8796C04D2F5E75DABA00CF5A /* libgles2_implementation_client_side_arrays.a */, - 61692EC9A96F57D2E7F4FFEC /* libgles2_implementation_client_side_arrays_no_check.a */, - 47B457ECEE53FA38DB10AA91 /* libgles2_c_lib.a */, - B2E4D4A3022DC3194BDC73C3 /* libgles2_c_lib_nocheck.a */, - E10BE1AF48EF909F62A87B9C /* gpu_unittests */, - DCED4C272049F1F4D50F792C /* gl_tests */, - CD32E80AD06B431CD489F6E8 /* libgpu_unittest_utils.a */, - AE79CC2DBE576E182EE2D94C /* libcommand_buffer_common.a */, - 91833DED3D99DF0B2E532040 /* libgles2_cmd_helper.a */, - 3E85B3AAEDB5CB93E736DEA9 /* libcommand_buffer_client.a */, - 6A7B02C22238DAA06DCF08A2 /* libcommand_buffer_service.a */, - 281602B1CB941C0039247C5F /* libgpu_ipc.a */, - ); - name = Products; - sourceTree = ""; - }; - 1163FF8B98F887BD220732CF /* Products */ = { - isa = PBXGroup; - children = ( - 1A83EB2DBE27D347EF022E73 /* libgtest.a */, - BA2A08B372DBB101485675DB /* libgtest_main.a */, - ); - name = Products; - sourceTree = ""; - }; - 14B091E8F66195D659065DE3 /* Products */ = { - isa = PBXGroup; - children = ( - 19F011132AA33EFA48C6040F /* libcontent_shell_lib.a */, - 09633865ED0F4E9A65F5413F /* Content Shell.app */, - 038F9C52C4A43A403A11E976 /* libtest_support_content.a */, - 6BF642FBB4D4C46EE72E5A9C /* content_unittests */, - 824E7A6946DF27DEC5C519B5 /* content_browsertests */, - B901B1AA0FFB8733D3D34CDF /* video_decode_accelerator_unittest */, - 819DCC59DB3C3F90565A2D0B /* libcontent_app.a */, - 5ADF6FC0952597ED22A12929 /* libcontent_browser.a */, - A3459879EAAEA6159327E0AA /* libcontent_common.a */, - CE3B9660F42A253072C6E429 /* libcontent_gpu.a */, - D90E6D4C0A489F1C4BE5685A /* libcontent_plugin.a */, - 338DD3A741C5E6F0A7D1AC6F /* libcontent_ppapi_plugin.a */, - D870F67866877AB7743458DE /* libcontent_renderer.a */, - 03E1F4E49E9F8F568B054A97 /* libcontent_utility.a */, - 29AE609668619FB64D9573DC /* libcontent_worker.a */, - 0D1ACC57664C588B614EA509 /* Content Shell Framework.framework */, - D9A70841E03E00AE35585728 /* Content Shell Helper.app */, - ); - name = Products; - sourceTree = ""; - }; - 1882AC3D3E4436D106A05D1E /* Products */ = { - isa = PBXGroup; - children = ( - 72FF378E500352A3FE8EEBF4 /* libbase.a */, - 0EF0DF8FF56F5E3BCFAA3D4D /* libbase_i18n.a */, - E248C9BFA32A55025003A1F9 /* libbase_static.a */, - 8766E29593091A172075AC50 /* libbase_static_win64.a */, - BECB43A340B591D3D2E5BFD9 /* librun_all_unittests.a */, - 7E2AB0DD9FB567A6ABF1527D /* base_unittests */, - D85B04783FE65DAC171C848C /* check_example */, - 66396C6EFF9BDBC369436179 /* libtest_support_base.a */, - 1FA65F55B2768A2CDB7C17E9 /* libtest_support_perf.a */, - ); - name = Products; - sourceTree = ""; - }; - 18CA616B6D7C7067CF56A158 /* Products */ = { - isa = PBXGroup; - children = ( - 7FD04038A230D56812EFC77C /* libsdch.a */, - ); - name = Products; - sourceTree = ""; - }; - 1B6BCE57B535062FDA12910C /* libcef */ = { - isa = PBXGroup; - children = ( - 07B3204DBE9ECB145822547F /* browser */, - C56741FF440BB08E59C40D2D /* common */, - 0041A0FFCA788DD69BF9A559 /* renderer */, - 20043C937A02B68E543365F2 /* resources */, - ); - path = libcef; - sourceTree = ""; - }; - 1F7CA0EA50BBAB521B321365 /* Products */ = { - isa = PBXGroup; - children = ( - EAA20445274A6E929DA02F50 /* libmach_override.a */, - ); - name = Products; - sourceTree = ""; - }; - 1F7FF175E0E4D25F2BEF61EF /* grit */ = { - isa = PBXGroup; - children = ( - E5E3827436D25A88E9D0700C /* grit */, - 8655427EA10E4D926EEAF92A /* PRESUBMIT.py */, - 0EF3CF486BE3B15A5E526722 /* grit.py */, - 68BC095520583C85894071BD /* grit_info.py */, - ); - path = grit; - sourceTree = ""; - }; - 20043C937A02B68E543365F2 /* resources */ = { - isa = PBXGroup; - children = ( - 1C8EB17A5EB1BE9AF0E29160 /* cef_resources.grd */, - C48A4B5FC43952BAA1560513 /* cef_strings.grd */, - 5254CA911DB271FD83811B90 /* devtools_discovery_page.html */, - ); - path = resources; - sourceTree = ""; - }; - 209E0FC2D20323A6D349A006 /* Products */ = { - isa = PBXGroup; - children = ( - FF2B8B0E9DAEBCCFE02F46C8 /* libsurface.a */, - ); - name = Products; - sourceTree = ""; - }; - 21277E07B09DDCAFB11DD602 /* Products */ = { - isa = PBXGroup; - children = ( - 53C1E5EAC4E420FFB5E93F71 /* libmodp_b64.a */, - ); - name = Products; - sourceTree = ""; - }; - 224CE785D57ED4345CAA93FE /* Products */ = { - isa = PBXGroup; - children = ( - ); - name = Products; - sourceTree = ""; - }; - 26144774FE45D7ABF19C9895 /* Products */ = { - isa = PBXGroup; - children = ( - 1C999732FF6506A36E60DA85 /* libskia.a */, - E2C2F26B2F9DD883DE77215C /* libskia_opts.a */, - 0E7983D75D8A30A5BF897AC1 /* libskia_opts_ssse3.a */, - BAC8E39ACB2547774B671733 /* image_operations_bench */, - ); - name = Products; - sourceTree = ""; - }; - 2650782846712DB2DD701216 /* ui */ = { - isa = PBXGroup; - children = ( - 6763286823A1AD1CFC80FF11 /* app_locale_settings */, - 5199EDCB7025F0E2B22B8D70 /* ui_resources */, - BCFF87F98D20AC0C76C795D1 /* ui_resources_standard */, - EF5F28849C437F31B44DC7F1 /* ui_strings */, - ); - path = ui; - sourceTree = ""; - }; - 294295DEA98D91E039FB0B17 /* Products */ = { - isa = PBXGroup; - children = ( - 8DBB27495FD5C44CEEF44483 /* libppapi_cpp_objects.a */, - CD3756258E34DFF18BE68DD7 /* libppapi_cpp.a */, - CEBEAB89230F4E0AA610345F /* libppapi_egl.a */, - A522DCC2F11AB53EB593778D /* libppapi_gles2.a */, - ); - name = Products; - sourceTree = ""; - }; - 2C2F9795FB6FD0AF183B98C9 /* SHARED_INTERMEDIATE_DIR */ = { - isa = PBXGroup; - children = ( - 758FB0F3586923B5D0B4AB0D /* cef */, - 4775637EAF397760DEB2DA71 /* content */, - 6151DE280D4DF3FBC2477A56 /* net */, - 2650782846712DB2DD701216 /* ui */, - B2EA0EFD10DBCCC7D1352AFA /* webkit */, - ); - name = SHARED_INTERMEDIATE_DIR; - sourceTree = SHARED_INTERMEDIATE_DIR; - }; - 2D7E46727E85457FD7C7E494 /* Products */ = { - isa = PBXGroup; - children = ( - E2B0AD96A1FD510ACD225119 /* simple_encoder */, - 3D8ACFBFC35FF085E7365C21 /* simple_decoder */, - 9E3EA75D29A3C66D3E96AD23 /* libvpx.a */, - ); - name = Products; - sourceTree = ""; - }; - 355EF8BEF450D878E3BFBFA5 /* Products */ = { - isa = PBXGroup; - children = ( - 872BC5E7AD7B237BB766949C /* libexpat.a */, - ); - name = Products; - sourceTree = ""; - }; - 359DC2DF2DC84A5DF59E9DAB /* Products */ = { - isa = PBXGroup; - children = ( - ); - name = Products; - sourceTree = ""; - }; - 379B94E26997803291E0A1EE /* tool */ = { - isa = PBXGroup; - children = ( - F0FAA7EB5CB31AD8B8EEE341 /* __init__.py */, - 715EF92D9C1E94128B193C88 /* build.py */, - 705846BB8F452399EFCF2451 /* build_unittest.py */, - 55CC2E6AF87F44E121C68ABE /* buildinfo.py */, - 72B1A066321F72C7B897FE4C /* buildinfo_unittest.py */, - 641751712624080410E91CB3 /* count.py */, - 9E4F1653A19D8EBC682547EE /* diff_structures.py */, - 11705C7906E226312AA63C1E /* interface.py */, - 19D9BDEED72B2D29E3858E3E /* menu_from_parts.py */, - 3E5C4D7D7C3CBCEF72F2384A /* newgrd.py */, - 8B5021FC3D1392A6EAB8E5D3 /* postprocess_interface.py */, - C86CD8E3B19D61111DF9F73C /* postprocess_unittest.py */, - 448DDF4F4E28EDFB07CFE568 /* preprocess_interface.py */, - 726AD028360CE3C2B2DD85F5 /* preprocess_unittest.py */, - 99BE64627B2516968DA69C99 /* rc2grd.py */, - 51EE88270035C12D12B0B3A7 /* rc2grd_unittest.py */, - 2FF25DEDFC25519FC2068EB6 /* resize.py */, - DE17DA3B1BFB8194BB712051 /* test.py */, - C6A7D0330BEEA0682AF0CF1D /* toolbar_postprocess.py */, - ECCBF7F6C5D31974CD894909 /* toolbar_preprocess.py */, - 13A0D9C589E6C9B796C7A4D8 /* transl2tc.py */, - F33B68CF5847805989509D13 /* transl2tc_unittest.py */, - 426A81ACD2839880C079F32B /* unit.py */, - 0B1FA47E3643C52A9B849A79 /* xmb.py */, - 6F285D14138F575EB07E3D6B /* xmb_unittest.py */, - ); - path = tool; - sourceTree = ""; - }; - 38D2936464A136EEB0255508 /* cefclient */ = { - isa = PBXGroup; - children = ( - 5608C9478BD1D9667139A2FE /* mac */, - D7F14D3A57B1534B765AA4E9 /* res */, - A555FB4AFD31F904481AEF3C /* binding_test.cpp */, - 0BF4B487406238588B1E2E2F /* binding_test.h */, - 07D01593D99A6D465EBF7CCC /* cefclient.cpp */, - 3B15E335C3E87027FF66D749 /* cefclient.h */, - A7E5CBDB0B03EA4186699A8E /* cefclient_mac.mm */, - A5F1211ECDBE15E114653097 /* client_app.cpp */, - 1C275EF161AD18A51486855F /* client_app.h */, - 49C23F1EF21BEFFF47923163 /* client_app_delegates.cpp */, - 14ECE7D63EFCCBEE9F988D9C /* client_handler.cpp */, - 6CDFE332A71B9843DDFC84A0 /* client_handler.h */, - 059C98513FBDA8371C6B5F9D /* client_handler_mac.mm */, - 36E584D217689689EE7C0B2E /* client_renderer.cpp */, - 57A73EB7B742ECF9233F5E3C /* client_renderer.h */, - BAE4F34D8497504C8EA49C0A /* client_switches.cpp */, - 1A64382F7B0B236D969E4800 /* client_switches.h */, - 27A7579E4514158F63A538E1 /* dom_test.cpp */, - 639AAEAA42A9B69771AFDAE1 /* dom_test.h */, - DFD892EE828C7CED561FA451 /* process_helper_mac.cpp */, - 9BFDA1D8AF3C3A8C3A0DDA99 /* resource_util.h */, - 5E3EFC4ADFF566FEB0AAE6E4 /* resource_util_mac.mm */, - 712BB594138FAD0EA6092CB9 /* scheme_test.cpp */, - 565D44D754C3A2BDA29B7E25 /* scheme_test.h */, - D4D09FA875F36BC20589A971 /* string_util.cpp */, - 8F4A872B2216AC98AC00121B /* string_util.h */, - 42B0A821229EFB10F968E57F /* util.h */, - ); - path = cefclient; - sourceTree = ""; - }; - 3A4A3FDCBBE2EA1F0710DC54 /* grit */ = { - isa = PBXGroup; - children = ( - 9EACAEEEA145DFC35216514B /* ui_resources_standard.h */, - ); - path = grit; - sourceTree = ""; - }; - 3AF23DDB112C563E6F66BFA2 /* Products */ = { - isa = PBXGroup; - children = ( - DA0A21F8A0EAAC0756DC19D5 /* libjsoncpp.a */, - ); - name = Products; - sourceTree = ""; - }; - 3CBEE1BCA0F7BC9250684D95 /* Products */ = { - isa = PBXGroup; - children = ( - BC8AF58C370537486626D135 /* libflac.a */, - ); - name = Products; - sourceTree = ""; - }; - 3CEE93E380722D95E8075888 /* Products */ = { - isa = PBXGroup; - children = ( - BD2D7D254989E0B420EC6779 /* libgl_wrapper.a */, - ); - name = Products; - sourceTree = ""; - }; - 3D0AB27073899706187D4089 /* Products */ = { - isa = PBXGroup; - children = ( - 77967929794A8C9FAF7C3650 /* libspeech_proto.a */, - ); - name = Products; - sourceTree = ""; - }; - 3DB8F85FED6260396DE5A06B /* capi */ = { - isa = PBXGroup; - children = ( - 4B4010CB2AD4974D4C8F8DC8 /* cef_app_capi.h */, - 3C894B3DABF6A17A1BA3CB68 /* cef_base_capi.h */, - 1A5CFC73A744B2F9E3DBEC2E /* cef_browser_capi.h */, - 50066846B94BBDC728831F61 /* cef_browser_process_handler_capi.h */, - 746B2C1A2751D807C992896A /* cef_callback_capi.h */, - 3DB9E8B5EE2C9759E6EA76F6 /* cef_client_capi.h */, - 57660E666F3E2F8437F136E7 /* cef_command_line_capi.h */, - 3BAFE6C07BA55E84B964C109 /* cef_context_menu_handler_capi.h */, - B44E71F696B42050FD0ACE2C /* cef_cookie_capi.h */, - 3ED85DBA0FE48F4029D02617 /* cef_display_handler_capi.h */, - EBF5C06D8AC6121BFEF66A5F /* cef_dom_capi.h */, - A8443181D36AE126CFADAC75 /* cef_download_handler_capi.h */, - FA58F4443A2BB8AB58939899 /* cef_download_item_capi.h */, - 6BA5FC1DD74344A5BE308E65 /* cef_focus_handler_capi.h */, - 8DD5724290D4064CB1982F99 /* cef_frame_capi.h */, - 298E681B338969706F4D6E75 /* cef_geolocation_handler_capi.h */, - 8E14B6DD6174354A3AA97B3C /* cef_jsdialog_handler_capi.h */, - 0BB13BD19ADF478AB8D63F81 /* cef_keyboard_handler_capi.h */, - 31C96610709A0280F2673DD6 /* cef_life_span_handler_capi.h */, - 2C46051D65EF1F90D34F4D23 /* cef_load_handler_capi.h */, - 29F76CC8AE36885C4BFA2891 /* cef_menu_model_capi.h */, - 048991D7CE055E48525043FB /* cef_origin_whitelist_capi.h */, - 28BCD824953EF6C08B5C9158 /* cef_path_util_capi.h */, - 5BBDA43E2EEAC35BBC7E9207 /* cef_process_message_capi.h */, - A40423FE7F5F0631781C1E2D /* cef_process_util_capi.h */, - 62E38C90F6ACF232E9540430 /* cef_proxy_handler_capi.h */, - 7B65E2D31221886EBDF33C1E /* cef_render_process_handler_capi.h */, - EE7857FFF9A4D9C66BB38F61 /* cef_request_capi.h */, - E01020EC056D3010F006EF72 /* cef_request_handler_capi.h */, - 748471578ED2BCF616FE627B /* cef_resource_bundle_handler_capi.h */, - 604AD17ACC7B9777DE1303D5 /* cef_resource_handler_capi.h */, - C725996ECD3353F9AF70492D /* cef_response_capi.h */, - CB5EA804FCBC0FD14C48C9EA /* cef_scheme_capi.h */, - EEA50A31F48D9F26C2270EC4 /* cef_stream_capi.h */, - 50B64687B1239AFA23F8E464 /* cef_string_visitor_capi.h */, - 3F3E5D65FBA53AD358596510 /* cef_task_capi.h */, - DC2F637745D18676B250F4D7 /* cef_url_capi.h */, - 6E2EF60B78CBC85EA7267E5B /* cef_urlrequest_capi.h */, - 5F7BB33A9B300F224F9555C9 /* cef_v8_capi.h */, - DACC26B506287FD5B8026671 /* cef_values_capi.h */, - 0D452EDDF4C4CC7A41ADA11A /* cef_web_plugin_capi.h */, - 806ECE12D0E1388D810EAFB6 /* cef_xml_reader_capi.h */, - 26467F2D5FE71216BABF0212 /* cef_zip_reader_capi.h */, - ); - path = capi; - sourceTree = ""; - }; - 3ED2B5AE87A1D0442B901B78 /* Products */ = { - isa = PBXGroup; - children = ( - EE5959986B547B1347497441 /* libspeex.a */, - ); - name = Products; - sourceTree = ""; - }; - 3F0AA54C36F7A9444E4F42A4 /* Products */ = { - isa = PBXGroup; - children = ( - DF39FC582E99207308E5F0D3 /* libwtf.a */, - ); - name = Products; - sourceTree = ""; - }; - 409AD3F02306C0F01E7873E4 /* include */ = { - isa = PBXGroup; - children = ( - 3DB8F85FED6260396DE5A06B /* capi */, - CBDA1C3CE0298FB688E9410E /* internal */, - C1AB6355ED72CA74482BA6B4 /* wrapper */, - 24048A9014E601FAE7887602 /* cef_app.h */, - A723747B248AA1603A6105B5 /* cef_application_mac.h */, - 9E5BA8A7091C891C1E9C1E67 /* cef_base.h */, - 6CEE8EFAD8AE1F9992935CB5 /* cef_browser.h */, - BDE38BE54F98960C8533F1FB /* cef_browser_process_handler.h */, - F64D7374F957B22800459379 /* cef_callback.h */, - 03993E37BA0957D7AD5851EE /* cef_client.h */, - DAE1F7666030E9B8391D3447 /* cef_command_line.h */, - 5EB77B80F2135DA9BDEE4387 /* cef_context_menu_handler.h */, - 32E78C47B68A966E2251645E /* cef_cookie.h */, - 8170973032F443C76652C300 /* cef_display_handler.h */, - 88E59696A3A0233E5E0F880F /* cef_dom.h */, - 4F0955093BC13E5E2267CBBC /* cef_download_handler.h */, - 120B6AF524D6BA1589FD601A /* cef_download_item.h */, - BD3AEF39973333594B3AF33E /* cef_focus_handler.h */, - E6BB666763D7433F2BA744AE /* cef_frame.h */, - 03E168B20BA32B8A31F1C5C0 /* cef_geolocation_handler.h */, - 065F518B3E8F22E177526086 /* cef_jsdialog_handler.h */, - 9F5671B07D6ECD145A54BCAF /* cef_keyboard_handler.h */, - F43F8E52BD7A46794874EAA3 /* cef_life_span_handler.h */, - EDC1E2A49F77A73C8F4D1725 /* cef_load_handler.h */, - 0E111B6033380EFB8FAD197A /* cef_menu_model.h */, - 3289C0F1EBDFDB24A36905AC /* cef_origin_whitelist.h */, - 160697CEA26EA817C61CEF0B /* cef_pack_resources.h */, - 476478BD89A27581DFA1369F /* cef_pack_strings.h */, - A0ED4067E8EF944312A58B3B /* cef_path_util.h */, - A2248098B30E4E5EB34CC368 /* cef_process_message.h */, - 610B4D7BD43F5228DDA22ED7 /* cef_process_util.h */, - 2DD425A12F28FEF717511181 /* cef_proxy_handler.h */, - 486CCA5D23871D838C4679B9 /* cef_render_process_handler.h */, - 0DD56C161B0CA9D5F9D7C0CE /* cef_request.h */, - D768A135320ECA4D23B837A2 /* cef_request_handler.h */, - D76B4B028759943E0918DA1F /* cef_resource_bundle_handler.h */, - 77394B70985CB75AE307ED79 /* cef_resource_handler.h */, - ECCC851AC8F72EDFC2B2F981 /* cef_response.h */, - 81E23DC5D3BDCD65A0767A73 /* cef_runnable.h */, - 28E1959412BAB2B5F1226BCD /* cef_scheme.h */, - 3640DD4BA47FFCE38CB2153D /* cef_stream.h */, - 27F20B4EA7E219C534D26F81 /* cef_string_visitor.h */, - 500B6AC913CA493D51567061 /* cef_task.h */, - 78D08A88F7CD548C7B49CC11 /* cef_url.h */, - F28572D01F13C0A3F8644679 /* cef_urlrequest.h */, - BCB5DD2EA2599FC9420529FC /* cef_v8.h */, - 6A5D0244576BE203CC940B0F /* cef_values.h */, - A37B1202E9711AA83BFEA7FF /* cef_version.h */, - 02193627E8FF79BCD0817B49 /* cef_web_plugin.h */, - 59794A1EE30CB19313E4C75C /* cef_xml_reader.h */, - 63D5643A6EAC02B3D51EDFBB /* cef_zip_reader.h */, - ); - path = include; - sourceTree = ""; - }; - 4399DC192342F10F75990BC7 /* Products */ = { - isa = PBXGroup; - children = ( - 217AE35B8A9BA24CD3E26EFA /* Atom.app */, - 335F63827821FB9FB71D0599 /* cefclient.app */, - 60FDBC13FBB130A5982C0CC1 /* cef_unittests.app */, - 6E33046A4EDB56251FF60662 /* libcef.dylib */, - 9BDB4C89AB31661B24EC5AD7 /* libcef_dll_wrapper.a */, - 3555939C4755250EAA5AE2D0 /* libcef_static.a */, - 9F7159CBC485389851637A19 /* Atom Helper.app */, - E5BBF422E9D920423158F973 /* cefclient Helper.app */, - E0F66F6372DC53DDA571C522 /* cef_unittests Helper.app */, - ); - name = Products; - sourceTree = ""; - }; - 441C0A99B45B946641BC3BBE /* unittests */ = { - isa = PBXGroup; - children = ( - C1944C487F3CD8F951613556 /* mac */, - 9084B9878C73E390FE28F4EA /* client_app_delegates.cc */, - 1EB563F48D15B2AA41F39E0B /* command_line_unittest.cc */, - 46D7068EB7F17F74723CA1B7 /* cookie_unittest.cc */, - 5E46501D71E2CB64BE224B5D /* dom_unittest.cc */, - 52AC11600DD3A1C9B6499C87 /* jsdialog_unittest.cc */, - 9AA86EF695031C709EB48301 /* navigation_unittest.cc */, - 01C9A4CE5FB2EEC5EAA9CD29 /* process_message_unittest.cc */, - 6C06B951A9E79A8C04E770F1 /* request_unittest.cc */, - 9512A66AA48EE8FDA49979EE /* run_all_unittests.cc */, - 9AD2908E3E658119AC780B55 /* run_all_unittests_mac.mm */, - 5F4B6A88DBE351CE983397EB /* scheme_handler_unittest.cc */, - BC37FEDFB68554AC40F1927E /* stream_unittest.cc */, - 2DA4661D161001F0020E73D6 /* string_unittest.cc */, - 0CE409DD2BCB2D7EA19F1BE4 /* test_handler.cc */, - B897373CE0763F38BC8B6005 /* test_handler.h */, - 7B741C9DBC45EA55A3B1B633 /* test_suite.cc */, - BFEE9C961095CBD3A6F6BF12 /* test_suite.h */, - BFBC5D3F9539F3DEB423BC07 /* test_util.cc */, - 6CE1EC98D36F4A66660D5948 /* test_util.h */, - 8E7F353C35FE393BB527D3D4 /* url_unittest.cc */, - 24479F1AE7EB2CCF6878BC67 /* urlrequest_unittest.cc */, - C05CB3D9668BCF524D725D80 /* v8_unittest.cc */, - CAD0608CFCF60C55553960B9 /* values_unittest.cc */, - 6B5367A2A25C39A54B3D8E29 /* xml_reader_unittest.cc */, - 9AC1D088FA80D3B2A81ECBA2 /* zip_reader_unittest.cc */, - ); - path = unittests; - sourceTree = ""; - }; - 459B34C3F365205D9921340A /* policy_templates */ = { - isa = PBXGroup; - children = ( - CE30A9051DCD5A462900CCE9 /* writers */, - 43FC311667CE29FE323BFE5D /* PRESUBMIT.py */, - 81083F64C1E316C4C7B97590 /* __init__.py */, - A257D2FA79DFA717AA262734 /* policy_template_generator.py */, - 24B5217D196DBD2A39619EED /* policy_template_generator_unittest.py */, - 1B4EEB952256F5695BBE679E /* template_formatter.py */, - 13DA98F0EC61DC95C724F028 /* writer_configuration.py */, - ); - path = policy_templates; - sourceTree = ""; - }; - 4775637EAF397760DEB2DA71 /* content */ = { - isa = PBXGroup; - children = ( - 6F87F327FD0E73C3845F1955 /* grit */, - 2D0218D9DF2BD9D2F1CC3768 /* content_resources.pak */, - ); - path = content; - sourceTree = ""; - }; - 4AF90D72B04F524EF024F0B4 /* Products */ = { - isa = PBXGroup; - children = ( - E37BA3D3C92CCF19ACA1B9BC /* libpreprocessor.a */, - 6EC88F387B997B180C0EC59D /* libtranslator_common.a */, - 49FDFDC518AA7089085453C4 /* libtranslator_glsl.a */, - ); - name = Products; - sourceTree = ""; - }; - 4B8640B24DEEFFAECF63C786 /* Products */ = { - isa = PBXGroup; - children = ( - 77B8699CF89F70FBB168FD2F /* libsql.a */, - 16FE174CC7907A923C79B6AD /* sql_unittests */, - ); - name = Products; - sourceTree = ""; - }; - 4C21317EE939F489BFA80C9A /* third_party/mozilla */ = { - isa = PBXGroup; - children = ( - FFD6F05FCEF91D95328C97C9 /* NSString+Utils.h */, - 2486CD197F535BFE0E1F6A78 /* NSString+Utils.mm */, - 9BBD0B469DFDB884D93F96E4 /* NSURL+Utils.h */, - F2DBCDF72B85E19AD64FB768 /* NSURL+Utils.m */, - ); - path = third_party/mozilla; - sourceTree = ""; - }; - 4F29216594804409F75AE9B5 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 83A8EF06FD1C6CF08CBCBE1B /* Accelerate.framework */, - E2BAA234A2BE8017D226EDD3 /* AppKit.framework */, - E8B06DADDF85D240BCDEAD72 /* ApplicationServices.framework */, - A68D29BEFC7E90D722724A31 /* AudioToolbox.framework */, - 18F5B503F5681FCA9989BC95 /* AudioUnit.framework */, - 8817D7F4FBBA2D42EF516513 /* Carbon.framework */, - F727DE03E5EC9D7208861E7A /* CoreAudio.framework */, - F2C9D770BB176067208708D2 /* CoreFoundation.framework */, - 55E5C055CA03407284B1E92C /* CoreServices.framework */, - 4F81A5C061994A3CF973DCD9 /* CoreVideo.framework */, - 57A26B6D62FCA51F8C4DC37D /* Foundation.framework */, - 261D817CE1958F87B4F02BF4 /* IOKit.framework */, - 4E2E4DD63F79536D568A7268 /* OpenGL.framework */, - 767F7EE6C0A57FDC0A2BCF1C /* QTKit.framework */, - C82AFEAEA3B4F9DC13CADFC9 /* QuartzCore.framework */, - 511EC264157FFCCDE8CCC1C2 /* Security.framework */, - 679EE00993C436A33C876FE8 /* SystemConfiguration.framework */, - 96B6939FEEAE9C41E03CC563 /* libWebKitSystemInterfaceLeopardPrivateExtern.a */, - 427D3A7ABEF53DE52685F32F /* libcups.dylib */, - 648CCECC870023D06F575757 /* libresolv.dylib */, - ); - name = Frameworks; - sourceTree = ""; - }; - 5199EDCB7025F0E2B22B8D70 /* ui_resources */ = { - isa = PBXGroup; - children = ( - 6FED8DB9C40740CC8B6E32ED /* grit */, - FD4E83BB8718A54254419599 /* ui_resources.pak */, - ); - path = ui_resources; - sourceTree = ""; - }; - 522233B92E9BC54056C720A5 /* Products */ = { - isa = PBXGroup; - children = ( - 4965FA5E4825686FE1C34124 /* libv8-i18n.a */, - ); - name = Products; - sourceTree = ""; - }; - 524BF9BB09F0FBBD3F465B97 /* Products */ = { - isa = PBXGroup; - children = ( - E65826B5F5DCCEDCB9302BAC /* libwebkit.a */, - ); - name = Products; - sourceTree = ""; - }; - 55D65E95E695280545C49BFB /* Products */ = { - isa = PBXGroup; - children = ( - A10A80D34F695765402364FE /* libwebkit_platform.a */, - ); - name = Products; - sourceTree = ""; - }; - 5608C9478BD1D9667139A2FE /* mac */ = { - isa = PBXGroup; - children = ( - 5613ACDDE51DE1A506D91AE5 /* Info.plist */, - 8C0268548C079EBC071390BF /* InfoPlist.strings */, - 880329B56217F29FD88D58FE /* MainMenu.xib */, - 4FB77434E9211D828D8900D7 /* cefclient.icns */, - ); - path = mac; - sourceTree = ""; - }; - 5AFA5FE5BC503EC78D05F0CA /* ctocpp */ = { - isa = PBXGroup; - children = ( - 3C39C0CA9179567B35023165 /* app_ctocpp.cc */, - B65C386A4D3A2F46DACFEC63 /* app_ctocpp.h */, - 4529EA2982A94B6A373FEBF8 /* auth_callback_ctocpp.cc */, - 79DA1DA7F891159BACFC01F9 /* auth_callback_ctocpp.h */, - D4583E529523A3C1F0D38D95 /* base_ctocpp.h */, - 007F191CDADBB6B9DE99848F /* before_download_callback_ctocpp.cc */, - 1EB03115DE936B3FC248AB72 /* before_download_callback_ctocpp.h */, - 155206012707A590F898972B /* binary_value_ctocpp.cc */, - 7DF1D2D0221960F8BFD30EEE /* binary_value_ctocpp.h */, - C74DC68884C27EA075179638 /* browser_ctocpp.cc */, - 037D7D3E4B2DD1EF60ED4BEA /* browser_ctocpp.h */, - 93D902B73577832D18BF75BB /* browser_host_ctocpp.cc */, - AD4579C0BE099BC334661482 /* browser_host_ctocpp.h */, - 06C15E96A6E8E4C3CBE2895B /* browser_process_handler_ctocpp.cc */, - 000B84635289D69B3D86B827 /* browser_process_handler_ctocpp.h */, - 91E2C46974E5764CA2E00400 /* callback_ctocpp.cc */, - 646366A7F1714B899E3340BA /* callback_ctocpp.h */, - E1F92A687AF6981AE53D2B53 /* client_ctocpp.cc */, - 1037A328AAB20BB9F7CAE553 /* client_ctocpp.h */, - F70B20347C5192B800603656 /* command_line_ctocpp.cc */, - 5AD9CBEEB6751780A250053B /* command_line_ctocpp.h */, - 3D51C5F18F401B6CDA5A660F /* context_menu_handler_ctocpp.cc */, - 28A442512D6FDA74492B0849 /* context_menu_handler_ctocpp.h */, - 1D9B27BE6DA55ACB43ED477A /* context_menu_params_ctocpp.cc */, - 35FBEC5C8B25A9F051B48A4D /* context_menu_params_ctocpp.h */, - 40084DD23D8A663A21AFEE0F /* cookie_manager_ctocpp.cc */, - 8CB4088B971ED0D651106CD1 /* cookie_manager_ctocpp.h */, - CB90EDB889CFB9BDAC13A0FD /* cookie_visitor_ctocpp.cc */, - 2D7ECB9F3062F8D36F88D925 /* cookie_visitor_ctocpp.h */, - 92563765E3EC9386F575B2E5 /* ctocpp.h */, - 08623EC0BFEEA2B84E7943FF /* dictionary_value_ctocpp.cc */, - 922A9087E94112E092CFF3D5 /* dictionary_value_ctocpp.h */, - 112B6763C9E7B43E077673E3 /* display_handler_ctocpp.cc */, - EFB261248F2CA9D5DA266A00 /* display_handler_ctocpp.h */, - 8FAB2B3DA1D71DE9B41ED544 /* domdocument_ctocpp.cc */, - EF34543C9A167C6FF768DCAE /* domdocument_ctocpp.h */, - D6354F773C04C1B426CEF241 /* domevent_ctocpp.cc */, - 78A73BE9C6C0FCF92CB7CB09 /* domevent_ctocpp.h */, - 0A2108D276F821F2D9E1EA10 /* domevent_listener_ctocpp.cc */, - 88E0D3C1C49E1286F9B4ED96 /* domevent_listener_ctocpp.h */, - 9F34C73D7E412A438C0810ED /* domnode_ctocpp.cc */, - B4C774A7C430830E8E30CDC9 /* domnode_ctocpp.h */, - 8C0C651ED6C209FA6A64751A /* domvisitor_ctocpp.cc */, - F76F445CF005C79B3ED25F86 /* domvisitor_ctocpp.h */, - 99A3E952F601D81D63364C9E /* download_handler_ctocpp.cc */, - 60500211E4E81B16B827F3A8 /* download_handler_ctocpp.h */, - C559AD44464C4C17590FDEA6 /* download_item_callback_ctocpp.cc */, - 8105CA51505C648E67552EC4 /* download_item_callback_ctocpp.h */, - 029D01F5660890E5E63D2E00 /* download_item_ctocpp.cc */, - A722D7364A5D7B7D04F322B1 /* download_item_ctocpp.h */, - 47A2DB909734C51FF232F713 /* focus_handler_ctocpp.cc */, - 5323D57C484D43060D172B7C /* focus_handler_ctocpp.h */, - D5B5990FC45DD1B69097F780 /* frame_ctocpp.cc */, - EAF32C2CB8FDEFDC6747000F /* frame_ctocpp.h */, - 24579E9B79C662488A6C4DA6 /* geolocation_callback_ctocpp.cc */, - AED67CD0D4C3055B1611DCA5 /* geolocation_callback_ctocpp.h */, - B5F1C4FA587CC89476D82E5F /* geolocation_handler_ctocpp.cc */, - 258191CFC8F133D6A1577F7E /* geolocation_handler_ctocpp.h */, - B203C1CF711EDC0366E714FB /* jsdialog_callback_ctocpp.cc */, - 86F590426D755AA5BA84C09E /* jsdialog_callback_ctocpp.h */, - 561BF6A655EF750B0F26C0F7 /* jsdialog_handler_ctocpp.cc */, - A837398CF32BE95F9B8C6CC2 /* jsdialog_handler_ctocpp.h */, - 7F1DCC53C9DB0A1C4F1ECE2C /* keyboard_handler_ctocpp.cc */, - 861B32FB07E1CC6FE369E3C6 /* keyboard_handler_ctocpp.h */, - 8C92E6384542431595EF50A7 /* life_span_handler_ctocpp.cc */, - 7074163F5AAED437A99C2E10 /* life_span_handler_ctocpp.h */, - 72540D05FC3553AD383B2F3F /* list_value_ctocpp.cc */, - 710DB1EC856181BE60FC17CC /* list_value_ctocpp.h */, - 4250DE201EE11DF56C6BA191 /* load_handler_ctocpp.cc */, - 1B34D9CA1FF0A85F4E51BE1F /* load_handler_ctocpp.h */, - 54E670EE54F4600111F1A3BE /* menu_model_ctocpp.cc */, - 750C4EE3154FC1DDFA918C65 /* menu_model_ctocpp.h */, - 6EDDEACC058D3A3FC188F4BC /* post_data_ctocpp.cc */, - 79D9F5E9B68280119AB412F5 /* post_data_ctocpp.h */, - 621C08700150DEB6EBBBF8CC /* post_data_element_ctocpp.cc */, - 7B45BEE2E7E45FA556D3FC44 /* post_data_element_ctocpp.h */, - 47F9DE33B3520A33631E64E7 /* process_message_ctocpp.cc */, - 954C19699583BDE91C91EAD1 /* process_message_ctocpp.h */, - A70A59BED39A129DB3674488 /* proxy_handler_ctocpp.cc */, - EC0822A9679CEA8BB6D488D7 /* proxy_handler_ctocpp.h */, - A7A7E4D5F6C691F87DADD0CC /* read_handler_ctocpp.cc */, - B6BCD87C8E9E2C07AAC3C15D /* read_handler_ctocpp.h */, - EF4166854E3E8459757D0E2F /* render_process_handler_ctocpp.cc */, - A35179157274998BF0E609EC /* render_process_handler_ctocpp.h */, - D0E01ECF64FCF571173DCD92 /* request_ctocpp.cc */, - 66321C17937EFD7899A0C371 /* request_ctocpp.h */, - A5189377EEEF134DACA8E6A3 /* request_handler_ctocpp.cc */, - 94BB6DD0AB6105482AF28EEC /* request_handler_ctocpp.h */, - 15D1A25A73657683C2B5B1A2 /* resource_bundle_handler_ctocpp.cc */, - 80945157DB28BE61632B1E36 /* resource_bundle_handler_ctocpp.h */, - 5B6A2744649C07D4164F6649 /* resource_handler_ctocpp.cc */, - 8203F74736B14AD3D84B5215 /* resource_handler_ctocpp.h */, - 37EEED859E375D03300DA2E2 /* response_ctocpp.cc */, - 4AAF21B270EDC337AAB2A1BC /* response_ctocpp.h */, - 22912DF4A93A53C0E7D2C576 /* scheme_handler_factory_ctocpp.cc */, - 0B24DFC2B43AF06D76BD63EC /* scheme_handler_factory_ctocpp.h */, - 75D67087AD73BEE4616C28F1 /* scheme_registrar_ctocpp.cc */, - DEF73970376FB40B6877E899 /* scheme_registrar_ctocpp.h */, - C1DD696D83AAACE47751B405 /* stream_reader_ctocpp.cc */, - 4AC4CE6DD815BB901C3108F5 /* stream_reader_ctocpp.h */, - F24BB8C67FE764F01DFBF960 /* stream_writer_ctocpp.cc */, - 972C388FC6C6D3094DB8E222 /* stream_writer_ctocpp.h */, - CE807F315C4A3B2A084C3D77 /* string_visitor_ctocpp.cc */, - 6B3D4F2A31928792F3A97970 /* string_visitor_ctocpp.h */, - C1676097512A3D9E2D02B869 /* task_ctocpp.cc */, - 9B828287DA08C00BF1CBA0BC /* task_ctocpp.h */, - 111B057CA2C89F67064CCB20 /* urlrequest_client_ctocpp.cc */, - DCC7D766A8EC8756A8376CB3 /* urlrequest_client_ctocpp.h */, - 1F637E97023288AC42336958 /* urlrequest_ctocpp.cc */, - 3F39DB28B8AD57286FA171CB /* urlrequest_ctocpp.h */, - F68051B3A28DAA052B15A469 /* v8accessor_ctocpp.cc */, - 2F9C3E04A4E35C45B630AEC3 /* v8accessor_ctocpp.h */, - 9DE09E60E64A6105D0908294 /* v8context_ctocpp.cc */, - EB09904B2159F7256690EB9A /* v8context_ctocpp.h */, - C180ABF4001443F7384CEAC7 /* v8exception_ctocpp.cc */, - 4FF6DCE2C8423908E6D32EFA /* v8exception_ctocpp.h */, - 021BD3DBAAA1DBFB8232B9C5 /* v8handler_ctocpp.cc */, - 3BF77612B9FEC6BF25A6058B /* v8handler_ctocpp.h */, - C5F9DE1CFBD858D7865444CF /* v8value_ctocpp.cc */, - 59C38FB9F040D2D6A36C9F79 /* v8value_ctocpp.h */, - BF8FBF76D26F678D79319E7F /* web_plugin_info_ctocpp.cc */, - D2145AD48706B90529681EE2 /* web_plugin_info_ctocpp.h */, - C2FB942E1079C9642625957C /* web_plugin_info_visitor_ctocpp.cc */, - 617F27E76D033D2C52956AB8 /* web_plugin_info_visitor_ctocpp.h */, - D39A9A62C445BA011E1163D3 /* write_handler_ctocpp.cc */, - 3E5A0154F0820BB645B7B043 /* write_handler_ctocpp.h */, - DD3F14826655E3055F273989 /* xml_reader_ctocpp.cc */, - CA2838C0FB67F18D5C4135A6 /* xml_reader_ctocpp.h */, - 9CF13FE6393B8398A8AA18AC /* zip_reader_ctocpp.cc */, - 7657BFF87514B88894C02714 /* zip_reader_ctocpp.h */, - ); - path = ctocpp; - sourceTree = ""; - }; - 5DCFD674AFE14452D5CE8922 /* Products */ = { - isa = PBXGroup; - children = ( - FC0BA8C2E6DAEBB62B81A46E /* libvideo_engine_core.a */, - ); - name = Products; - sourceTree = ""; - }; - 6151DE280D4DF3FBC2477A56 /* net */ = { - isa = PBXGroup; - children = ( - 7896266262B7C669DAF9D148 /* grit */, - C879B7C07DD025F3BFAD2E92 /* net_resources.pak */, - ); - path = net; - sourceTree = ""; - }; - 625356F8D3FBA28D8CB3DE44 /* Products */ = { - isa = PBXGroup; - children = ( - A6EA5F801A212058E50C26BB /* libvoice_engine_core.a */, - ); - name = Products; - sourceTree = ""; - }; - 633FC56C3A41DEE4B57061F7 /* Build */ = { - isa = PBXGroup; - children = ( - 8AED9F7315C52F2A620486CD /* cef.gyp */, - B69A86A21D00AEECBFB9E0FC /* cef.gypi */, - 201DD4C6FAF3E4CE86D37388 /* cef_paths.gypi */, - 6EFE5DB322697063C5273BB5 /* cef_paths2.gypi */, - 335ADC702C533D5F128D5BA7 /* common.gypi */, - C7A48623E5586F1836DFC472 /* filename_rules.gypi */, - 2EC90772970F0A499BBC2294 /* grit_action.gypi */, - 2A80AEB3699E699F41429EC0 /* grit_target.gypi */, - 4C2E0E8BAE74F157CF8DE872 /* release.gypi */, - C84B4501D7B29FD743E409F7 /* release_defaults.gypi */, - 8979600041C4474AD19BD3DC /* release_impl.gypi */, - B490B040DFADA86C197F241E /* release_impl_official.gypi */, - ); - name = Build; - sourceTree = ""; - }; - 64CB63653C02F587F8F252D9 /* node */ = { - isa = PBXGroup; - children = ( - B8A81CA70F9812EE610BBF4C /* custom */, - 1E9256FD015F259D83BC5F28 /* __init__.py */, - C723B94B88820ECB9B238D97 /* base.py */, - 64D04DE76C59E3FB85DFA72C /* base_unittest.py */, - 82D9267508954B762CA4DA09 /* empty.py */, - 3AE54F845BE947BBE2F671CD /* include.py */, - 72C7E6EF7FA246FD7F6588CA /* io.py */, - BE9875EC6BFE09D36368B549 /* io_unittest.py */, - BDC86D60E98ED367A18F3FF0 /* mapping.py */, - 5E15A40C287847BB8E1910B1 /* message.py */, - C67EF82BBCE5A044D2A565F8 /* message_unittest.py */, - 72F60CEAFFDEE60993320A54 /* misc.py */, - 6FCE946FA0283D08BACC1771 /* misc_unittest.py */, - 084B8EA24DF5DF1571DE7137 /* structure.py */, - 38A059AD263AA05F79A8D5E8 /* structure_unittest.py */, - A0D6B5F3B9D45FF5550586F2 /* variant.py */, - ); - path = node; - sourceTree = ""; - }; - 65CE2FCEC207BBF0A8C37B4B /* Products */ = { - isa = PBXGroup; - children = ( - F80EA39EE90B63653656CFE7 /* libappcache.a */, - 67F31BA941D7E94E56456F3B /* libblob.a */, - 6454259BDFA3FECE94D1C1AE /* libdatabase.a */, - 6C2F171B97F577E374A8FAA5 /* libdom_storage.a */, - 035C1AFA36256CDAE5AB3302 /* libfileapi.a */, - A4D2CF33E3C3DAB91EDF8525 /* libwebkit_user_agent.a */, - C8E96D60D671FC45CD96BAC3 /* libglue.a */, - 2C1351997F60F82884D6DAC4 /* libwebkit_gpu.a */, - 8B282EDEF149A2A957FC5891 /* libwebkit_media.a */, - 34087D210DD3578FDC3F4176 /* libquota.a */, - 92D8EE4C39482EEDE27C545D /* libwebkit_support.a */, - 50795C98B83A7CE571E4664B /* libwebkit_support_common.a */, - F01AB71003340479A007B9FD /* libwebkit_support_gfx.a */, - ); - name = Products; - sourceTree = ""; - }; - 6763286823A1AD1CFC80FF11 /* app_locale_settings */ = { - isa = PBXGroup; - children = ( - EF7EA3D6FCFE4AE5044B2703 /* app_locale_settings_am.pak */, - A0FAA9FA17E7293DE5B0C4BC /* app_locale_settings_ar.pak */, - ED289D8FDDC0EF6873A96A45 /* app_locale_settings_bg.pak */, - 62BD83A69788540F5493CC6D /* app_locale_settings_bn.pak */, - C43E59B4E40FDD94C723B8EF /* app_locale_settings_ca.pak */, - ECFF6AE05958481BFD540AF3 /* app_locale_settings_cs.pak */, - 3D04DBAC9593A9461C8ACB56 /* app_locale_settings_da.pak */, - 04CFE5D5BE80944DAD609635 /* app_locale_settings_de.pak */, - AECC35F2345D9149FF77702D /* app_locale_settings_el.pak */, - 4EFD9E6CCD9D5AE5E19CBE7B /* app_locale_settings_en-GB.pak */, - 387E6456D80AA7C58C2C2D83 /* app_locale_settings_en-US.pak */, - 858C2D5C8CC42547CFC86498 /* app_locale_settings_es-419.pak */, - 36A2BF77DDB0DD644017E2CE /* app_locale_settings_es.pak */, - 904D5B141FB66F69474E0938 /* app_locale_settings_et.pak */, - 189D9B41955B28070345E46F /* app_locale_settings_fa.pak */, - 903BF2598ED5B457D394EB6F /* app_locale_settings_fi.pak */, - DC4E795B2C67468CA528503C /* app_locale_settings_fil.pak */, - 2B63F6058224C1F0584B9A68 /* app_locale_settings_fr.pak */, - 00FF2D290B6BA4D912A7885D /* app_locale_settings_gu.pak */, - 0A93C66579AABB2144A11281 /* app_locale_settings_he.pak */, - 1B7235D5B6CB67E3830DF992 /* app_locale_settings_hi.pak */, - F889C65932D109B4889B4527 /* app_locale_settings_hr.pak */, - 33191A3C80EE9FADC9681AC1 /* app_locale_settings_hu.pak */, - D58DC93A21C48D816DFBE475 /* app_locale_settings_id.pak */, - EA9A5910453B8A43C9F864E2 /* app_locale_settings_it.pak */, - 7AF2CED60ABFFC142836AD41 /* app_locale_settings_ja.pak */, - 696A201AD5DADB31D39F9821 /* app_locale_settings_kn.pak */, - F50B75FA83AC81C592A04541 /* app_locale_settings_ko.pak */, - 86FD5E59321079A429D3F6A7 /* app_locale_settings_lt.pak */, - F9AA4C47866D58A55D89906A /* app_locale_settings_lv.pak */, - FB1E9137063AD67969F7C3F3 /* app_locale_settings_ml.pak */, - 618CA731E5FCE115CCD258F3 /* app_locale_settings_mr.pak */, - 621075EE773DB9ADF51EEFAE /* app_locale_settings_ms.pak */, - 08E26B4DF6F60A58CE5BCAD8 /* app_locale_settings_nb.pak */, - B5696836A233467D67F673DE /* app_locale_settings_nl.pak */, - FC77141AAC1ABB1E3D77BA33 /* app_locale_settings_pl.pak */, - DC64E025926A9B0590800B79 /* app_locale_settings_pt-BR.pak */, - FC70425D2E226756A6D1FCA6 /* app_locale_settings_pt-PT.pak */, - 6F607F245C208EB8A961B1F4 /* app_locale_settings_ro.pak */, - A1283A9BC3CE73AC0A600339 /* app_locale_settings_ru.pak */, - FA28652BC385FF946B57DA62 /* app_locale_settings_sk.pak */, - 7400FF71541B599F6E09045A /* app_locale_settings_sl.pak */, - FB531305A4122266E639EA1A /* app_locale_settings_sr.pak */, - AC352D25857DC066957F0709 /* app_locale_settings_sv.pak */, - B5BA3FB0EC2E38F37831385C /* app_locale_settings_sw.pak */, - 6EBBB1D6E6BAD26E07BFF9F2 /* app_locale_settings_ta.pak */, - B79BFA0947C8B3B8648E52C2 /* app_locale_settings_te.pak */, - 50FDEBC89683ECEDA4ADB6A8 /* app_locale_settings_th.pak */, - 624D01F77B976B95E0FAC6E8 /* app_locale_settings_tr.pak */, - 0937034213F2744D0E0E7317 /* app_locale_settings_uk.pak */, - AAD317264CD53F09AB75F53F /* app_locale_settings_vi.pak */, - 0518EC34271437784B0CF75D /* app_locale_settings_zh-CN.pak */, - 1B2DDB258AEDB8CF0321091C /* app_locale_settings_zh-TW.pak */, - ); - path = app_locale_settings; - sourceTree = ""; - }; - 68557FAACEC86438309583C8 /* tools */ = { - isa = PBXGroup; - children = ( - 090865B9B17F24959C44BA28 /* make_pack_header.py */, - 69C419E03B9AAA605E8ED2DA /* repack_locales.py */, - ); - path = tools; - sourceTree = ""; - }; - 696BE6E415443CFDD08142A5 /* Products */ = { - isa = PBXGroup; - children = ( - 1F34CFD1E43CF0AD3D60FE45 /* libnet.a */, - A48CC24A6E16EDFACDF20C3C /* net_unittests */, - 55D519F24BC4D5CCFE6CB241 /* net_perftests */, - 3F4CEF83D8D4C2FDCC104362 /* stress_cache */, - 8725C0D8895B52CE87B9AE29 /* tld_cleanup */, - FE91E39839004AF69907B7A7 /* crash_cache */, - 4AD7CDE66D187C0F40782BF2 /* run_testserver */, - FFA0AC7FB9FD43ED5B983135 /* libnet_test_support.a */, - ACD648B6FF476EEF5D9024F6 /* gdig */, - 11577ADA978F291FD88572E3 /* fetch_client */, - 5FEB3CC6289A9674F13CC926 /* fetch_server */, - A1ED3E139080E96DF8598E9C /* libhttp_server.a */, - 7CF5A3CF60F25BA53D943E4D /* dnssec_chain_verify */, - 32814E763645F6CCB2CD720E /* crl_set_dump */, - 270F097F583DBB970DC90625 /* dns_fuzz_stub */, - ); - name = Products; - sourceTree = ""; - }; - 6AC0B3F3686943C881540614 /* Products */ = { - isa = PBXGroup; - children = ( - 5BB57088018F375BCDD62765 /* libharfbuzz-ng.a */, - ); - name = Products; - sourceTree = ""; - }; - 6CA7C7EBCDFF514D1291B57E /* Products */ = { - isa = PBXGroup; - children = ( - 25436BD64F6B22C9A36C0344 /* libffmpeg.a */, - D48B0CC2B1FE4D2EE9210079 /* ffmpegsumo.so */, - ); - name = Products; - sourceTree = ""; - }; - 6DCB4D40930F3E8F0137BEC9 /* Products */ = { - isa = PBXGroup; - children = ( - B8FF1DA4847671490A5DA716 /* libxslt.a */, - ); - name = Products; - sourceTree = ""; - }; - 6E95D63188E66A21B133C90F /* extern */ = { - isa = PBXGroup; - children = ( - 852E3E9379EE3E0A9039D014 /* BogoFP.py */, - EE8BBDFA9751E272EE4B6E34 /* FP.py */, - D1966077D7D68ADB63A785AC /* __init__.py */, - 737E0164E14751345C26E7B7 /* tclib.py */, - ); - path = extern; - sourceTree = ""; - }; - 6F87F327FD0E73C3845F1955 /* grit */ = { - isa = PBXGroup; - children = ( - A5BF66C52CD8EF1AFBE82C1D /* content_resources.h */, - ); - path = grit; - sourceTree = ""; - }; - 6FED8DB9C40740CC8B6E32ED /* grit */ = { - isa = PBXGroup; - children = ( - A21CFD1232932A6603B36EC5 /* ui_resources.h */, - ); - path = grit; - sourceTree = ""; - }; - 7273165156FF298450A1C2BB /* BUILT_PRODUCTS_DIR */ = { - isa = PBXGroup; - children = ( - 97982721950E57F089FF3B7B /* Atom Helper.app */, - 208F10822055563A9A88F9CB /* cef_unittests Helper.app */, - 58EAA82466055251156313DB /* cefclient Helper.app */, - 698C6F90A03997EC66CFABA1 /* ffmpegsumo.so */, - C14DAB1AAEA0039C4522CC2B /* libcef.dylib */, - ); - name = BUILT_PRODUCTS_DIR; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 745BB341F5095532FA4D7E24 /* Products */ = { - isa = PBXGroup; - children = ( - 10BC44DEA8FC22DDF2FA034F /* libgmock.a */, - 9427891299B218D591E06C60 /* libgmock_main.a */, - ); - name = Products; - sourceTree = ""; - }; - 758FB0F3586923B5D0B4AB0D /* cef */ = { - isa = PBXGroup; - children = ( - BBCD0828F4F33290CBAC58D3 /* grit */, - 8508EC329657CF53E16F1D01 /* cef_resources.pak */, - 28ECA57957568EE70BAF8F09 /* cef_strings_am.pak */, - EB7FB6461C4299EDEBC5FB83 /* cef_strings_ar.pak */, - BF4157E193A514990BDB20AE /* cef_strings_bg.pak */, - AE7F6C5060549B2F2D5041BA /* cef_strings_bn.pak */, - 88D2B183F026169B59F0AF61 /* cef_strings_ca.pak */, - 46281DC2D06840820B4EC4AC /* cef_strings_cs.pak */, - E779007C9491D76188594B0B /* cef_strings_da.pak */, - 8A1657A5074BE6A5ACFBDA57 /* cef_strings_de.pak */, - CFA1C64C814325D7DD4C85FD /* cef_strings_el.pak */, - 38290CC3CE5D634568EF6050 /* cef_strings_en-GB.pak */, - D8AEDA47EF0748D9516229F8 /* cef_strings_en-US.pak */, - BF50FF0DB30BF7D2462511D5 /* cef_strings_es-419.pak */, - B769E54AA8C8C34D387D1898 /* cef_strings_es.pak */, - 79CF4C48CC4458DFB82FF6A5 /* cef_strings_et.pak */, - DA02DB97CDBBED8E70C5719D /* cef_strings_fa.pak */, - 65EC939FBA72F086E83B5E67 /* cef_strings_fake-bidi.pak */, - D82A58B16F6BCCF2847EECBC /* cef_strings_fi.pak */, - A905BF58EB26153147FDE6F2 /* cef_strings_fil.pak */, - A71F417316E73DD2C81FA6F4 /* cef_strings_fr.pak */, - C5737F034076C86775D81DC5 /* cef_strings_gu.pak */, - B595AE41CCEEAF881800F919 /* cef_strings_he.pak */, - 87A4D3C6BA9F10864D1F273D /* cef_strings_hi.pak */, - 3C04F16E9C7F9976C62C5507 /* cef_strings_hr.pak */, - D9E3CB72823229E4998256E7 /* cef_strings_hu.pak */, - 7FF808AAC31F250C348EC7C4 /* cef_strings_id.pak */, - 4D235103EA04209B53D185B3 /* cef_strings_it.pak */, - E7A199FD70EE5ABD2D98FCCB /* cef_strings_ja.pak */, - D7AFDC016D372255D27E2AF7 /* cef_strings_kn.pak */, - A00B7334CB894C79096EA117 /* cef_strings_ko.pak */, - 4167C920D1424F0634762262 /* cef_strings_lt.pak */, - C30424C31D8FA81F08221280 /* cef_strings_lv.pak */, - 86184CB258BD6D57B44C5733 /* cef_strings_ml.pak */, - 523BF7F077DA578B4191F087 /* cef_strings_mr.pak */, - EB9A29E13E54ACE6B01072A8 /* cef_strings_ms.pak */, - 53488D368BB9562703A75203 /* cef_strings_nb.pak */, - E557EFD39B50172DFACD3CF6 /* cef_strings_nl.pak */, - D63E0F20DC3D5F422F238E99 /* cef_strings_pl.pak */, - 7617F7356CF67916645EB77F /* cef_strings_pt-BR.pak */, - DD4F39FDF92A279B445CB635 /* cef_strings_pt-PT.pak */, - A23E588983D78761008F698D /* cef_strings_ro.pak */, - A8C69E44BE827CD91CC1FD0D /* cef_strings_ru.pak */, - 847CD6CDF3ECAD677675D7AF /* cef_strings_sk.pak */, - 71F7F7EF3478453D96C1C5D7 /* cef_strings_sl.pak */, - A7326AE828A2573E6E9A3C1A /* cef_strings_sr.pak */, - 6B2EBA3530CDC6B770ADE84A /* cef_strings_sv.pak */, - FBB814347DC4A4175D6E4897 /* cef_strings_sw.pak */, - 44541A478EE0F105D27F1AF0 /* cef_strings_ta.pak */, - 26FED33C81845F6E153FDFC0 /* cef_strings_te.pak */, - 8F6D40B2CD10D34AD8F714F3 /* cef_strings_th.pak */, - 77447207CC3EC0AF7BB29C8F /* cef_strings_tr.pak */, - C6528F46F9707EA091C7262B /* cef_strings_uk.pak */, - 794985FF05FCCFB42BFAD90F /* cef_strings_vi.pak */, - 577E4529B37A372EC7982CCD /* cef_strings_zh-CN.pak */, - D9F48A2BC060CC7EF9C94F9D /* cef_strings_zh-TW.pak */, - ); - path = cef; - sourceTree = ""; - }; - 75F7B403FD5801BA5AFE0EB6 /* Products */ = { - isa = PBXGroup; - children = ( - ); - name = Products; - sourceTree = ""; - }; - 7604B20C2E3706D25B54F466 /* gather */ = { - isa = PBXGroup; - children = ( - 521CF1A5BF607EC6D5628149 /* __init__.py */, - E2C3BC0EFC15B0A091A108B9 /* admin_template.py */, - EC052161A1C3C55426875686 /* admin_template_unittest.py */, - 255110884F82A5FF3A20FA2D /* chrome_html.py */, - 7D4274E53C774448014738F7 /* chrome_html_unittest.py */, - 70459A5B49BE23629CC0DBC4 /* chrome_scaled_image.py */, - FE646E557D4F2F68727F9EA2 /* chrome_scaled_image_unittest.py */, - D32C9CC677C221FD93EE8BC8 /* igoogle_strings.py */, - BFFF75BA1DE505F4FC6CF8E1 /* igoogle_strings_unittest.py */, - 4B66B0B8539132668FAF09E6 /* interface.py */, - BFBCF921341FE2A9CAAB209F /* json_loader.py */, - E88908652AACDC3D54805093 /* muppet_strings.py */, - 45D4A61412E9D1F5B0824C4E /* muppet_strings_unittest.py */, - D46FDC38673A7B16D6DAD52A /* policy_json.py */, - CE20FF896D00BB796193B0C3 /* policy_json_unittest.py */, - 486DAB7574B9E13840732E6D /* rc.py */, - 4591B1B97998120F52F85520 /* rc_unittest.py */, - F12BA7D477CE652CE0378E43 /* regexp.py */, - 5D9B72F98520D246C6C638AD /* skeleton_gatherer.py */, - 90482E31FC042C40AA27CBB6 /* tr_html.py */, - C4A22E5D8FE6D3821F882BF8 /* tr_html_unittest.py */, - 33332EA2AC04ED29DEF2B062 /* txt.py */, - CDD57B391041DD8139A99BE4 /* txt_unittest.py */, - ); - path = gather; - sourceTree = ""; - }; - 7846595C5BF71D662A4872BA /* Products */ = { - isa = PBXGroup; - children = ( - A273E1A508576CCE31BDA52A /* libdynamic_annotations.a */, - ); - name = Products; - sourceTree = ""; - }; - 7896266262B7C669DAF9D148 /* grit */ = { - isa = PBXGroup; - children = ( - BA2CEA45A76DD834D9F46888 /* net_resources.h */, - ); - path = grit; - sourceTree = ""; - }; - 7AF118EBD6F7476696974ECF /* Products */ = { - isa = PBXGroup; - children = ( - B85BED980F0C092062FC7BF6 /* libprotobuf_lite.a */, - FF6806AF1530C10B07E48E78 /* libprotobuf_full_do_not_use.a */, - 8AB95AF34C0769AA29C00D81 /* protoc */, - ); - name = Products; - sourceTree = ""; - }; - 7B361E96F0846698F0CA80C1 /* libcef_dll */ = { - isa = PBXGroup; - children = ( - 950DB4A7D624C4526EAAA2F4 /* cpptoc */, - 5AFA5FE5BC503EC78D05F0CA /* ctocpp */, - A4DC3D3261EC5A21DA5A6600 /* wrapper */, - EB973CE4FEF9B5B2ED441179 /* cef_logging.h */, - D5D6EA7FA371571B90F3341D /* libcef_dll.cc */, - A53019239E548876C20B9BE5 /* libcef_dll2.cc */, - FF8BB4B2506BBC0896EA40FE /* resource.h */, - A4D2D5B95485DA3DF25972C8 /* transfer_util.cpp */, - 9AAB3640AEBCF8CDB6E3EBEB /* transfer_util.h */, - ); - path = libcef_dll; - sourceTree = ""; - }; - 855260D5F8EB9A5F5D90583B /* Products */ = { - isa = PBXGroup; - children = ( - EC96295730C4344F46C4CF8C /* libcrcrypto.a */, - 66166FA92F25B0DEEFA6A67B /* crypto_unittests */, - ); - name = Products; - sourceTree = ""; - }; - 8641E33E140AD05FA6EF538A /* Products */ = { - isa = PBXGroup; - children = ( - 1B42CA3D41E586DB8B43EE68 /* libipc.a */, - 9C56F3341074BDEBBDF0317D /* ipc_tests */, - 3B0ACFDE6A97007CA3F45358 /* libtest_support_ipc.a */, - ); - name = Products; - sourceTree = ""; - }; - 872ECB232111A77A324C2A9F /* Products */ = { - isa = PBXGroup; - children = ( - 40D8450E3A3D3953B2131E33 /* libv8_snapshot.a */, - 3D4E9841FF43307DE368DD09 /* libv8_nosnapshot.a */, - D7E4226EAF9EC841EFBEAD98 /* libv8_base.a */, - 188573DF6F5F630250FBAA30 /* mksnapshot */, - 5BB4D9F4524105F699CA6CB2 /* v8_shell */, - 65E4C9298E5BDF5797ED3622 /* libpreparser_lib.a */, - ); - name = Products; - sourceTree = ""; - }; - 876CF2BFEA22440C21B8445F /* Products */ = { - isa = PBXGroup; - children = ( - 51D58396CAC439AD5F352B7B /* libicudata.a */, - F0228BA8E7241096B69FA0D1 /* libicui18n.a */, - 54CF46DE6F3E2690DDB3A91F /* libicuuc.a */, - ); - name = Products; - sourceTree = ""; - }; - 88F70CD187AB20E99EB3666C /* Products */ = { - isa = PBXGroup; - children = ( - 76364D7D679109D4EF2C5D78 /* libevent.a */, - ); - name = Products; - sourceTree = ""; - }; - 8A6FD251A827E87691BCCA3F /* INTERMEDIATE_DIR */ = { - isa = PBXGroup; - children = ( - 9E74CA2249E727B65B812091 /* locale.pak */, - ); - name = INTERMEDIATE_DIR; - path = repack; - sourceTree = INTERMEDIATE_DIR; - }; - 8B68C9DB5F3258F6D3F495B9 /* grit */ = { - isa = PBXGroup; - children = ( - 588E6DF15E9D2FF032287599 /* devtools_resources.h */, - 0CDB496FCE74889BECC786AC /* webkit_chromium_resources.h */, - 738990D27BC0E432A3588FAD /* webkit_resources.h */, - 0514C79670E149EB872D2C1C /* webkit_strings.h */, - ); - path = grit; - sourceTree = ""; - }; - 9326958257DAA1843FADA0A0 /* Products */ = { - isa = PBXGroup; - children = ( - 54FB30231426CF8A98CB55CC /* libmedia.a */, - 469881A7AA01977748606E75 /* libyuv_convert.a */, - 33601FF4D83436341934DA90 /* libyuv_convert_simd_x86.a */, - 855A63411CC69C553F60E233 /* libyuv_convert_simd_arm.a */, - 4AB21D2D37F3E9F8AB2006E2 /* media_unittests */, - 325CBE7F77333A222059F4FB /* libmedia_test_support.a */, - 62D22A4533A0F0117E8A48B9 /* scaler_bench */, - E3B63B91F23894A10980BB49 /* qt_faststart */, - FA96B3B9711BEAA356D3BB42 /* seek_tester */, - 51FB1488787DE290A94E5A7B /* ffmpeg_unittests */, - 25F438E765C88ED06989C4EE /* ffmpeg_regression_tests */, - C34A4DA3E2E9C8D31557AD00 /* ffmpeg_tests */, - 0F34905BD3FE48763B983E73 /* media_bench */, - ); - name = Products; - sourceTree = ""; - }; - 950DB4A7D624C4526EAAA2F4 /* cpptoc */ = { - isa = PBXGroup; - children = ( - 476BDAB24D957D6802BC97D8 /* app_cpptoc.cc */, - EFD61BE299279F804F6194CE /* app_cpptoc.h */, - 151A694232221A890E2EBE2B /* auth_callback_cpptoc.cc */, - 42F5E5FEA30EA64D92C39B72 /* auth_callback_cpptoc.h */, - 51FCD3E7D567DF1A48B76769 /* base_cpptoc.h */, - D940F7991272A95E78BC9D80 /* before_download_callback_cpptoc.cc */, - B84A8C77A80959D3FDB79E03 /* before_download_callback_cpptoc.h */, - 8A8F46D578D570415EBDE473 /* binary_value_cpptoc.cc */, - 394C924B399DD9EB11D4EA90 /* binary_value_cpptoc.h */, - C2F9769424CA87A4DEE01F38 /* browser_cpptoc.cc */, - BD85B7325C97FE527A3B5FBA /* browser_cpptoc.h */, - F909E4720F5671522B2B7B8C /* browser_host_cpptoc.cc */, - B54A3D26A848E5E563BDF3FF /* browser_host_cpptoc.h */, - 8FC487E61971FF8B957CF876 /* browser_process_handler_cpptoc.cc */, - C4A3583C69238109E4439A1F /* browser_process_handler_cpptoc.h */, - 46B44C3D02C7D9175C39DEC6 /* callback_cpptoc.cc */, - B7BAE94218DC1AF62AB9C262 /* callback_cpptoc.h */, - AE1EECC7420185454F935DC0 /* client_cpptoc.cc */, - B031A6B9A59C5648001D8E7D /* client_cpptoc.h */, - C085C951644E10FC67FD2BFE /* command_line_cpptoc.cc */, - C5468CD8ADC7730A0D9F923B /* command_line_cpptoc.h */, - 832FB47A11CB7F9D7006944F /* context_menu_handler_cpptoc.cc */, - A12D4AF9EF7B9099616E9B3B /* context_menu_handler_cpptoc.h */, - CB28E6AD5B83DA336278E20C /* context_menu_params_cpptoc.cc */, - 3421E2BBB3DF1070D5E4BD87 /* context_menu_params_cpptoc.h */, - E5EA7CF0EAFED588646FEBCF /* cookie_manager_cpptoc.cc */, - 9EDC3A8C460020AA8C9D16D4 /* cookie_manager_cpptoc.h */, - E581A3AAAE322723FC773C13 /* cookie_visitor_cpptoc.cc */, - 765F54EF5B25F19B12554C17 /* cookie_visitor_cpptoc.h */, - C7705207DD77B0C0A875FEAF /* cpptoc.h */, - B9B3C5A2966003F02D99EDF8 /* dictionary_value_cpptoc.cc */, - E2C86E608D1FE42AD3D883F2 /* dictionary_value_cpptoc.h */, - 89220459E7C4ACEA47FE8D44 /* display_handler_cpptoc.cc */, - 8A9A71B5AC55058C531A10FA /* display_handler_cpptoc.h */, - AB44CA22DEEC02E4DB8ED2D6 /* domdocument_cpptoc.cc */, - 0F8D9EF32570C0C4F5E10D71 /* domdocument_cpptoc.h */, - 154A354AA505CD72DDB2EFA9 /* domevent_cpptoc.cc */, - 741FA37F8AA91FDCA7F7D0EF /* domevent_cpptoc.h */, - 9D2B8499E56DBC7273B71185 /* domevent_listener_cpptoc.cc */, - 1801E857339C7B5A3EB69624 /* domevent_listener_cpptoc.h */, - 2AA359A707FDEBCD53258B83 /* domnode_cpptoc.cc */, - 5443183CF36A8753D44E27DB /* domnode_cpptoc.h */, - 3D62F86A77EE5E930F24F3B3 /* domvisitor_cpptoc.cc */, - 92F71012F60E65800C7FA7EF /* domvisitor_cpptoc.h */, - 6899516D68CBC48011638AA3 /* download_handler_cpptoc.cc */, - C6313715F5261BAD9D0C719F /* download_handler_cpptoc.h */, - E39A8AB13257E2C3124AA2F3 /* download_item_callback_cpptoc.cc */, - EA2BC04B60C61C54807B3861 /* download_item_callback_cpptoc.h */, - 75C5A31CBBB197ED3436E4F2 /* download_item_cpptoc.cc */, - CC9D2982021F72278C81EEED /* download_item_cpptoc.h */, - E9E9C7069874412A6D7A5A7E /* focus_handler_cpptoc.cc */, - 20F593B2668252D45B5FC494 /* focus_handler_cpptoc.h */, - 9CF3DD0952B8129AD957046A /* frame_cpptoc.cc */, - EC67219931CE7E3432F787C0 /* frame_cpptoc.h */, - 95C841C5F5D8E955AD0C8442 /* geolocation_callback_cpptoc.cc */, - EB32421AB024ADB6BE44999A /* geolocation_callback_cpptoc.h */, - E862DE7D1FCFA8C328ECFC05 /* geolocation_handler_cpptoc.cc */, - 9A50288704E7307F0E12CC53 /* geolocation_handler_cpptoc.h */, - C588A9DB0063296F21B52B91 /* jsdialog_callback_cpptoc.cc */, - 99C8F07ADEC000D37DBAB1B1 /* jsdialog_callback_cpptoc.h */, - 9D6481C14038928657DE4402 /* jsdialog_handler_cpptoc.cc */, - 1EEBC9008E31713FA7F05FC9 /* jsdialog_handler_cpptoc.h */, - 8E197CF075AE60301D046E20 /* keyboard_handler_cpptoc.cc */, - 2BE5DEB2BA0ECEB7B1A7BEC0 /* keyboard_handler_cpptoc.h */, - 6DF28A5F1DB6F9C73A1E6F57 /* life_span_handler_cpptoc.cc */, - C62BF572DED4F010FC0E89A2 /* life_span_handler_cpptoc.h */, - 15CC340E227772893CA2AFEB /* list_value_cpptoc.cc */, - AE35153A534F6DC6E89C0E71 /* list_value_cpptoc.h */, - E6D4837DC7D70A7B4E9D9E96 /* load_handler_cpptoc.cc */, - D1525B53591006BB536CE299 /* load_handler_cpptoc.h */, - B71985071946DE0272140D33 /* menu_model_cpptoc.cc */, - 915A3F2F5BBCBA69CCA50C98 /* menu_model_cpptoc.h */, - D3EBF675DE5EF129D3440EFC /* post_data_cpptoc.cc */, - D81D280D5FD2372126A044AE /* post_data_cpptoc.h */, - F0C79A23253ACFB08E461D8C /* post_data_element_cpptoc.cc */, - C4732367B9C8CFFB7629CCE1 /* post_data_element_cpptoc.h */, - 9D8B23565B040C2C45D8D3A2 /* process_message_cpptoc.cc */, - 2C62ACF1F0A549F0A2051AB8 /* process_message_cpptoc.h */, - B84B69F8F0FC909581ED64B5 /* proxy_handler_cpptoc.cc */, - BBE2B501607B7615FF89D915 /* proxy_handler_cpptoc.h */, - B1B719B2DB39C964D60291E9 /* read_handler_cpptoc.cc */, - D7CE3427570BB20354E76B72 /* read_handler_cpptoc.h */, - C2166EDE4476E4A63D1C2353 /* render_process_handler_cpptoc.cc */, - 8FD3BF1B5EEC371550873F4F /* render_process_handler_cpptoc.h */, - C4598A5939FD219C10E8EDC2 /* request_cpptoc.cc */, - BAAA56D25F15E3152CAB4310 /* request_cpptoc.h */, - 771A5322D55C430A25BFB6DE /* request_handler_cpptoc.cc */, - 0493FA7D04E9DD460B094B27 /* request_handler_cpptoc.h */, - 021AAB8AF92012BFE87C320D /* resource_bundle_handler_cpptoc.cc */, - FF32EE1D0C75020413EA8446 /* resource_bundle_handler_cpptoc.h */, - 1C5AE824CF8FB2E013C771FB /* resource_handler_cpptoc.cc */, - 30CDEE9DE8D28F6CEA27CE6B /* resource_handler_cpptoc.h */, - D2E051950242C84ED77FD8E7 /* response_cpptoc.cc */, - F12C567E71FD0DA421B6A5DF /* response_cpptoc.h */, - BF9BCAC5E8B3E0B6E7204BAF /* scheme_handler_factory_cpptoc.cc */, - 45B1C90753578D3F409B5445 /* scheme_handler_factory_cpptoc.h */, - 1CCEA731C691044D678F8B9D /* scheme_registrar_cpptoc.cc */, - F68F18FF049593AC30D5381A /* scheme_registrar_cpptoc.h */, - 0F9E48B2C38027DC3F74C4AC /* stream_reader_cpptoc.cc */, - 4AFA6ADB70815EFEBB45B818 /* stream_reader_cpptoc.h */, - 11F7C69A218B1F1D26564618 /* stream_writer_cpptoc.cc */, - AC9A44C54E00B064658FB434 /* stream_writer_cpptoc.h */, - 5F71AEFBBD062CE8E4B035CD /* string_visitor_cpptoc.cc */, - 957CAFCC3E62D16A6A9A7001 /* string_visitor_cpptoc.h */, - D54F3662C373B066FED2B189 /* task_cpptoc.cc */, - C96E8D10AC36A42D17375908 /* task_cpptoc.h */, - 84BA24AC65D242008E562F4A /* urlrequest_client_cpptoc.cc */, - C132B2B7DFC87BF8A11A49AB /* urlrequest_client_cpptoc.h */, - 6EE3CEA7D97DE0E4E9F7C92B /* urlrequest_cpptoc.cc */, - 915F17714BF54A96E694861D /* urlrequest_cpptoc.h */, - 2BB627122277A2433EBFB9E3 /* v8accessor_cpptoc.cc */, - 3211D990A0868E4DA5F05C37 /* v8accessor_cpptoc.h */, - 64E0007CFC11C8A546F99276 /* v8context_cpptoc.cc */, - D4F148746CEA2558106D7D63 /* v8context_cpptoc.h */, - C466234A54DD0BD14A913865 /* v8exception_cpptoc.cc */, - AF105947CAC15F96B9B00CF5 /* v8exception_cpptoc.h */, - 403DF4C0E5AB39FF055E4392 /* v8handler_cpptoc.cc */, - 34E7B06FC2654047E51AA435 /* v8handler_cpptoc.h */, - F79BC80E5989366BC034AD67 /* v8value_cpptoc.cc */, - C8F4C343AD3BD4B6CCFC1CE9 /* v8value_cpptoc.h */, - 7AEB3EE43AF0938894DE8C2B /* web_plugin_info_cpptoc.cc */, - C6F9C805F913D447E3623EDC /* web_plugin_info_cpptoc.h */, - DFC6006F8E44EC259DFF6C6D /* web_plugin_info_visitor_cpptoc.cc */, - 842C3CD9BAE3CEF1F7B482F1 /* web_plugin_info_visitor_cpptoc.h */, - EDE25A592AC6B469CF3C58F2 /* write_handler_cpptoc.cc */, - F087160AE31260242344FE3C /* write_handler_cpptoc.h */, - 5F1F81C6FC28B3E39FC17988 /* xml_reader_cpptoc.cc */, - F57FDD1E3CF622D99F92DC8A /* xml_reader_cpptoc.h */, - DA1D01A728A8845E891328E7 /* zip_reader_cpptoc.cc */, - 8B0D5DB6543C85BC22C1EA1A /* zip_reader_cpptoc.h */, - ); - path = cpptoc; - sourceTree = ""; - }; - 9A402D0D5EB7BD4E096289D6 /* format */ = { - isa = PBXGroup; - children = ( - 459B34C3F365205D9921340A /* policy_templates */, - 394ED20393908DD4847D413E /* __init__.py */, - 6F0E17598B497B0F9754066C /* c_format.py */, - D27C8FC303AC0109A42C8D52 /* c_format_unittest.py */, - 8CF0FFC054798BB8914DDBD8 /* data_pack.py */, - 5E7E4D55681ECE4B05F2414C /* data_pack_unittest.py */, - 52D6F3198D44B31AF5068E98 /* html_inline.py */, - 50120FB7D2C144CF82F14F53 /* interface.py */, - 48431A857D81049FAA37A88E /* js_map_format.py */, - BF354E20164FC6AE1628E6D6 /* js_map_format_unittest.py */, - D6009C3FE4C9EAC76844183A /* rc.py */, - FDCD027B04F1985CF965A6D7 /* rc_header.py */, - BCE9DF91715018A1F2B5DDDE /* rc_header_unittest.py */, - E39D9DE3B2B6FAA5D5A4C0BD /* rc_unittest.py */, - B93E20FDDFB45AEE1B1637FB /* repack.py */, - 0D9C96436871C7AC09C92FBE /* resource_map.py */, - ); - path = format; - sourceTree = ""; - }; - 9DB10F9640171D3C0B81E069 /* Products */ = { - isa = PBXGroup; - children = ( - 7B4E766CE33B391FD5965AC9 /* libCNG.a */, - 5F6FFD63F4F6EB981AD41AF5 /* libG711.a */, - 7FDD976D13F31E5F969FF6F2 /* libG722.a */, - 17FFBEFCC8836FBB73E582A9 /* libiLBC.a */, - 222C454B32CA6D3246827AAD /* libiSAC.a */, - F3D7F0DDB63CA77F1F5205EA /* libiSACFix.a */, - 8706630C78544D75CEB14721 /* libPCM16B.a */, - 52125294678FD58D1610131B /* libaudio_coding_module.a */, - 84D084EB8AED55509F9E5E99 /* libNetEq.a */, - 44995BB877107C1B83D23200 /* libaudio_conference_mixer.a */, - 8D5761F6A0D523F7AA92BA0B /* libaudio_device.a */, - 98BC68C30AAE03AA50B0AFBA /* libaudio_processing.a */, - 0CB1640F4F4FB4AEB3B59E60 /* libaec.a */, - 89AA68583C800AD48D8910B9 /* libaecm.a */, - 1E7BCAB13DD3E553324824B7 /* libagc.a */, - F730AB17FB0BA0A61A7EF46C /* libns.a */, - F6CBA8C62E1D8E7F45C05DC8 /* libns_fix.a */, - 9718AEB2EBE47349877370D9 /* libapm_util.a */, - 508555DF81226478DF9A01DE /* libbitrate_controller.a */, - 648860494CFE2034D2C49E9B /* libmedia_file.a */, - 55099067C5B3B3719C34A3C6 /* libudp_transport.a */, - 2C707A0DCA7193E218AE2BB4 /* libwebrtc_utility.a */, - C914BC2649BE52A52D67FE5C /* libwebrtc_i420.a */, - B3C7283D59714B85617794EC /* libwebrtc_vp8.a */, - D09AE7D9C7AA685F3778A4AB /* libwebrtc_video_coding.a */, - 41802089CC60B523FD636494 /* libvideo_capture_module.a */, - 12423B699EEA302F59D5E5D2 /* libvideo_processing.a */, - B8CA1A3F3DC012EE6B29B090 /* libvideo_render_module.a */, - 5E776449B0DD985AA3A92196 /* librtp_rtcp.a */, - AADC551C1F61A7F0AF341714 /* libaec_sse2.a */, - 6385D313EA67413A056C5B94 /* libvideo_processing_sse2.a */, - ); - name = Products; - sourceTree = ""; - }; - A4DC3D3261EC5A21DA5A6600 /* wrapper */ = { - isa = PBXGroup; - children = ( - 89B77017A9EC70BA421EFAF7 /* cef_byte_read_handler.cc */, - 997FB6FDE34A9EF10B934290 /* cef_stream_resource_handler.cc */, - E8FDF82B6BD1532187AFBE45 /* cef_xml_object.cc */, - 01B79CB85CA6B558D2FF8CA1 /* cef_zip_archive.cc */, - D366285CB364244F44102F11 /* libcef_dll_wrapper.cc */, - 0BCDC6DD2A853EE361074F3C /* libcef_dll_wrapper2.cc */, - ); - path = wrapper; - sourceTree = ""; - }; - A74D756F1971EC0EDC5F1D39 /* Products */ = { - isa = PBXGroup; - children = ( - 231941D6606B6153490120F0 /* libxml2.a */, - ); - name = Products; - sourceTree = ""; - }; - A8558CE4AD60985B27A4FF18 /* Intermediates */ = { - isa = PBXGroup; - children = ( - 8A6FD251A827E87691BCCA3F /* INTERMEDIATE_DIR */, - 2C2F9795FB6FD0AF183B98C9 /* SHARED_INTERMEDIATE_DIR */, - ); - name = Intermediates; - sourceTree = ""; - }; - A90E1265C849F31BA7C13715 /* Source */ = { - isa = PBXGroup; - children = ( - C0BC56CD296A9CF9DD130584 /* .. */, - 7273165156FF298450A1C2BB /* BUILT_PRODUCTS_DIR */, - 409AD3F02306C0F01E7873E4 /* include */, - 1B6BCE57B535062FDA12910C /* libcef */, - 7B361E96F0846698F0CA80C1 /* libcef_dll */, - E4DF681FE7A091045A4118F0 /* tests */, - 68557FAACEC86438309583C8 /* tools */, - ); - name = Source; - sourceTree = ""; - }; - AE3B4A403D2D6BCFA4296AFD /* Products */ = { - isa = PBXGroup; - children = ( - FE3CC6EBD545B506351CCA2E /* libwebp_enc.a */, - 4690FA9F614135E1BCC39B3B /* libwebp_dec.a */, - 909D528CC75B31A615278676 /* libwebp_dsp.a */, - 7DFA5E6BE0D6213823703DE1 /* libwebp_utils.a */, - ); - name = Products; - sourceTree = ""; - }; - B2EA0EFD10DBCCC7D1352AFA /* webkit */ = { - isa = PBXGroup; - children = ( - 8B68C9DB5F3258F6D3F495B9 /* grit */, - AEC1C1912BA3FE2AD51CFE7E /* devtools_resources.pak */, - 59EAB9E13038989009194B97 /* webkit_chromium_resources.pak */, - 9450B68BEE27937EBAE05C64 /* webkit_resources.pak */, - B61CA6E61979A7CBF236E73D /* webkit_strings_am.pak */, - 6E8884157B62992B4215B66A /* webkit_strings_ar.pak */, - 44DFD12329D6AF141C7803A7 /* webkit_strings_bg.pak */, - C3FF36D1BCEC9430E0C11917 /* webkit_strings_bn.pak */, - A4649F89C716B218DD3268AB /* webkit_strings_ca.pak */, - 9A8F4C8FC2E2DD2655298862 /* webkit_strings_cs.pak */, - AE5F7ED290206A896187D9CB /* webkit_strings_da.pak */, - 2FA8C86FE90064CC6AD204B8 /* webkit_strings_de.pak */, - BBCC248506229E5B0D036B25 /* webkit_strings_el.pak */, - BADF2CC70DD23FAC319DB0E8 /* webkit_strings_en-GB.pak */, - D5AE19360737D03F7E2221DB /* webkit_strings_en-US.pak */, - 567A85368C6CF8CF07878874 /* webkit_strings_es-419.pak */, - 48F9EEAD7EF4135C5C8BC961 /* webkit_strings_es.pak */, - A13F63777B8D71B83A24E479 /* webkit_strings_et.pak */, - ED76BFB50460BA410E806208 /* webkit_strings_fa.pak */, - EE39EE596DEA6D9182112734 /* webkit_strings_fi.pak */, - 02943212AED67FDE1DE8A754 /* webkit_strings_fil.pak */, - 42DE707AD9ECC0C360C2142A /* webkit_strings_fr.pak */, - AB2C2414833CDF0E294612FD /* webkit_strings_gu.pak */, - C3D99D2C24C061BA724F9C77 /* webkit_strings_he.pak */, - 8A15B1BB8A62EC95076E6DEC /* webkit_strings_hi.pak */, - 5060C2094E2CEBD78D98E36F /* webkit_strings_hr.pak */, - 57DAB1E10A9A44D749F451E2 /* webkit_strings_hu.pak */, - 5D8769F23C7A85537ACD9C04 /* webkit_strings_id.pak */, - 7AF867AA9FC440565FAC0950 /* webkit_strings_it.pak */, - 199B54DD78FCFB3099B5300F /* webkit_strings_ja.pak */, - 25B6EE578237AB8259011D6C /* webkit_strings_kn.pak */, - B5FFE53E8D18F5DF26098C3B /* webkit_strings_ko.pak */, - 7AF4BB98B58929D0BFDC2D3C /* webkit_strings_lt.pak */, - DA0D761271620EF673356FAF /* webkit_strings_lv.pak */, - CC6C389575F116171DF2E9F2 /* webkit_strings_ml.pak */, - 208F7C728B9FBF8EA807E1E8 /* webkit_strings_mr.pak */, - EF13D40094372E03784355D5 /* webkit_strings_ms.pak */, - 5BE98613E89F29801EBFFEC3 /* webkit_strings_nb.pak */, - 9A1ABE45349A3F80FF5DF30C /* webkit_strings_nl.pak */, - 29166ED0F0896A7EB34736BD /* webkit_strings_pl.pak */, - 76E444CBCD615065EED446E0 /* webkit_strings_pt-BR.pak */, - 33DD50DB2E11BEE14F91DCCE /* webkit_strings_pt-PT.pak */, - 5FAC99DFA973BEE73C9D81E9 /* webkit_strings_ro.pak */, - 7E9C21B18AE55F7B6C178E61 /* webkit_strings_ru.pak */, - 08F481D420D2BEFAA309844B /* webkit_strings_sk.pak */, - ECDA7F89372354141C39ADFE /* webkit_strings_sl.pak */, - E963A3CC92D8BF4256FDEA60 /* webkit_strings_sr.pak */, - 39D2CC1ED178EB7C430ACCF4 /* webkit_strings_sv.pak */, - 6D811744DC5B0D7A3138A2A8 /* webkit_strings_sw.pak */, - 18CB17F5F89FE2DD4775C8D8 /* webkit_strings_ta.pak */, - 452131F0A02F514C887367A8 /* webkit_strings_te.pak */, - AC50AD2938980FFD18423AFA /* webkit_strings_th.pak */, - 8AA6E9DC8966C36467FEA316 /* webkit_strings_tr.pak */, - D5FD4E92AEBBDD820CD613D0 /* webkit_strings_uk.pak */, - C72440BBDA9B2D0831F9B31B /* webkit_strings_vi.pak */, - 4BFBD85606BCD5295F158F56 /* webkit_strings_zh-CN.pak */, - D4EA87717B8FA96AF184ECD8 /* webkit_strings_zh-TW.pak */, - ); - path = webkit; - sourceTree = ""; - }; - B3020DDB0727745BB8CFA371 /* Products */ = { - isa = PBXGroup; - children = ( - ED37D78E0792BDA1C05BA20E /* libpng.a */, - ); - name = Products; - sourceTree = ""; - }; - B30A3443E29F5A775A662DC5 /* Products */ = { - isa = PBXGroup; - children = ( - FDE3F18B0794AC39BE153998 /* libots.a */, - ); - name = Products; - sourceTree = ""; - }; - B5485D05DB6610D0EAE0B7C6 /* Projects */ = { - isa = PBXGroup; - children = ( - CD86FFEA2D5001FA726510BE /* JavaScriptCore.xcodeproj */, - 1193F2D58AEF3615DD79DEF7 /* Platform.xcodeproj */, - 421637DBD3560D81535E4C3A /* WTF.xcodeproj */, - DC72D0B7D1A6B663CB335034 /* WebCore.xcodeproj */, - 87F45A638FBE61B6FDF891DC /* WebKit.xcodeproj */, - 25EEC66C5B03F5672152ACCB /* all.xcodeproj */, - 79CF3557612C4997DAB1A862 /* allocator.xcodeproj */, - 1565CFD5145C22BAC85C3EEE /* base.xcodeproj */, - 914996F06142B7006F4C1AC7 /* build_angle.xcodeproj */, - 3D3157B668F5872BF7A22811 /* command_buffer.xcodeproj */, - 81B31A421FA8B15344436AA7 /* common_audio.xcodeproj */, - 159546C2D7977EF25EFA7B40 /* common_video.xcodeproj */, - 63589532FDDE3888E6D68564 /* content.xcodeproj */, - 4335E893FC259036D8785066 /* content_resources.xcodeproj */, - 1DBB070EBD1333BBE5C68D1C /* crypto.xcodeproj */, - 21CD3E93FEA7E8ABD82BFBAF /* devtools_resources.xcodeproj */, - 993D5FB77B5591A0FFDF0D3A /* dynamic_annotations.xcodeproj */, - 2AA818CBAF5F61D7A21B18D7 /* expat.xcodeproj */, - 34C9C80A8A51D6228A02CE15 /* ffmpeg.xcodeproj */, - 8ECFAA9E466819116DFF920F /* flac.xcodeproj */, - 33D2D9A353D54120D3468266 /* gl.xcodeproj */, - E430F79B1322631374180E88 /* glu.xcodeproj */, - 40EA4C2F8133B05D9D7E5A83 /* gmock.xcodeproj */, - FE315AF8B75A20D4F79D2EFE /* googleurl.xcodeproj */, - 2402718FB1781B628D8E9890 /* gpu.xcodeproj */, - 2BDFA0D019DB383FCBE2863E /* gtest.xcodeproj */, - B1B0B00499622B5212B3B8C8 /* harfbuzz.xcodeproj */, - EBDA2F288039C5E20D832C0F /* iccjpeg.xcodeproj */, - 42BA615544865FC9F7795548 /* icu.xcodeproj */, - 1C025E27C1B803BE216F4F86 /* ipc.xcodeproj */, - C986618ECAB0A5C043D8BB3F /* jingle.xcodeproj */, - 0651D00FD6E7F704270E6F29 /* jsoncpp.xcodeproj */, - 461BAAD82F8AB804176FDFE3 /* leveldatabase.xcodeproj */, - B2F3D77B6647DF374CFCE5D4 /* libevent.xcodeproj */, - 2D953328A837658D8BC680C6 /* libjingle.xcodeproj */, - F6FC8D0B14E925438D497470 /* libjpeg.xcodeproj */, - 913E0B3B78A79604B8375494 /* libpng.xcodeproj */, - BBB91956C816083526AB2EF2 /* libsrtp.xcodeproj */, - 334689EC756D47C76DABB010 /* libvpx.xcodeproj */, - 7C28C9975417680D544A5BA4 /* libwebp.xcodeproj */, - D0856E7B20F81C035637FEEE /* libxml.xcodeproj */, - D7A7DCA77B5D7E0417FA2EE7 /* libxslt.xcodeproj */, - 10FB137FABDB2510091F240E /* libyuv.xcodeproj */, - 9B4BBCC00C0C1A2BEEFA0D01 /* mach_override.xcodeproj */, - 4F303C29F3D1E527A63C3797 /* media.xcodeproj */, - 8FC259076BAAC6707AF40AB9 /* modp_b64.xcodeproj */, - 5DA409E878B3995C3EB7E55B /* modules.xcodeproj */, - C3F9A1466747A71994443EE8 /* net.xcodeproj */, - FFF00D66C4A59FA632CF355D /* npapi.xcodeproj */, - 1C1D2B476CB71FED19A90525 /* nss.xcodeproj */, - 6A3B8076CA7CD96C8E25A966 /* openmax.xcodeproj */, - 6A8A5FC8599E16C4CE106A47 /* ots.xcodeproj */, - 4EB85F5F7EB3A7B3221230A6 /* ppapi.xcodeproj */, - 8A8806D9491FFB692E6B67CE /* ppapi_internal.xcodeproj */, - D70F2AD41B444A90D0917EFB /* printing.xcodeproj */, - C7EE4C2E678C3D80B0A02DA2 /* protobuf.xcodeproj */, - F826FF98E5F795F91C77DDCA /* sdch.xcodeproj */, - 6991125C79C2BFE97903DCF9 /* sfntly.xcodeproj */, - 941319F6C213FD2E5AF1379C /* skia.xcodeproj */, - 71682F05AB957D4FB877358C /* speech_proto.xcodeproj */, - F80705F721F23C071C68CBF0 /* speex.xcodeproj */, - E628C159157AD577B39C0B42 /* sql.xcodeproj */, - 3E3D7C67B9F21F228D244464 /* sqlite.xcodeproj */, - 0896A4568A6EF547A818E252 /* ssl.xcodeproj */, - 0A252C48128C7984A5A7D199 /* sudden_motion_sensor.xcodeproj */, - A2154ED96A97D207C4234EB2 /* surface.xcodeproj */, - 074D7464D208F959F4EFA456 /* system_wrappers.xcodeproj */, - 36EE862F886D7E5F8DD66BF6 /* ui.xcodeproj */, - D828014EA35F6FF11305AC18 /* ui_strings.xcodeproj */, - 55DB375A3CC916F84D8CCE4A /* v8.xcodeproj */, - D750300952CFEECA77BB2E09 /* video_engine.xcodeproj */, - C29ADD61716033F36EC6FA4A /* voice_engine.xcodeproj */, - AE72EF7CAB16AAED4E988E57 /* webkit_support.xcodeproj */, - 2DF0099F0EE8FE9B392AACC4 /* zlib.xcodeproj */, - ); - name = Projects; - sourceTree = ""; - }; - B730FCB501E5A58141A4A7C5 /* Products */ = { - isa = PBXGroup; - children = ( - 3AE65874B3D2B86C62583370 /* libsrtp.a */, - ); - name = Products; - sourceTree = ""; - }; - B73EFEBDF0CF6CD4FD06A18D /* Products */ = { - isa = PBXGroup; - children = ( - 14D6BA9BB146A4F2A2B2247A /* libwebcore_bindings.a */, - F1A30087FEB5F03EBA42EF92 /* libwebcore_dom.a */, - 9E7793E9F576458BDD0FDC07 /* libwebcore_html.a */, - FA5C43585F17E267CF43DA3D /* libwebcore_svg.a */, - 6CE7806BDE6763DCD46EBCD5 /* libwebcore_platform.a */, - C740E01F34E473CAC79E1412 /* libwebcore_rendering.a */, - AA529CAE1A9752141B3D6AA0 /* libwebcore_remaining.a */, - A92D4D8C36225CC694E6249F /* libwebcore_test_support.a */, - ); - name = Products; - sourceTree = ""; - }; - B8A81CA70F9812EE610BBF4C /* custom */ = { - isa = PBXGroup; - children = ( - E76B1563EE0C973C3C6418FE /* __init__.py */, - CB1A2A507DD7E247C86F4DE8 /* filename.py */, - 80FABF2C108132E99FF6CD2C /* filename_unittest.py */, - ); - path = custom; - sourceTree = ""; - }; - BBB306902212C99A76FF1BB5 /* Products */ = { - isa = PBXGroup; - children = ( - 35BDDB08E575F02E3D8A6351 /* libui.a */, - 93032758CCEA393AF6F03221 /* libui_test_support.a */, - 532E866DC0DA884190819DA5 /* ui_unittests */, - ); - name = Products; - sourceTree = ""; - }; - BBCD0828F4F33290CBAC58D3 /* grit */ = { - isa = PBXGroup; - children = ( - 92D415BA4DE9FDB56C848F0E /* cef_resources.h */, - 356E1B48A82563540725E857 /* cef_strings.h */, - ); - path = grit; - sourceTree = ""; - }; - BCFF87F98D20AC0C76C795D1 /* ui_resources_standard */ = { - isa = PBXGroup; - children = ( - 3A4A3FDCBBE2EA1F0710DC54 /* grit */, - 8DF06BB0F4FB0F0B2222B9E2 /* ui_resources_standard.pak */, - ); - path = ui_resources_standard; - sourceTree = ""; - }; - BFD3D49A6960822DE76D2EE3 /* Products */ = { - isa = PBXGroup; - children = ( - 19A90B3A2AC4765B210294B8 /* libprinting.a */, - BDBFE371ED8537F0321E26F4 /* printing_unittests */, - ); - name = Products; - sourceTree = ""; - }; - C0BC56CD296A9CF9DD130584 /* .. */ = { - isa = PBXGroup; - children = ( - CBAAAC7CEE47A24B64DA4C0D /* chrome/browser */, - 4C21317EE939F489BFA80C9A /* third_party/mozilla */, - E8959847354D16C537BD54DD /* tools */, - ); - path = ..; - sourceTree = ""; - }; - C0D377AED2CD9427264853BA /* Products */ = { - isa = PBXGroup; - children = ( - EEF3DEBE3DF87BA94FA84325 /* libsignal_processing.a */, - DFAC89ACAC85C56A837AE4A4 /* libresampler.a */, - CA8D18339EA75625526C90B6 /* libvad.a */, - ); - name = Products; - sourceTree = ""; - }; - C1944C487F3CD8F951613556 /* mac */ = { - isa = PBXGroup; - children = ( - 807894F2C9EC4212FB1BD2CB /* Info.plist */, - 504BF73960853BE20696B75A /* InfoPlist.strings */, - C312F72C568701E9B4651474 /* MainMenu.xib */, - B4B28A8840955A7A73CE082C /* unittests.icns */, - ); - path = mac; - sourceTree = ""; - }; - C1AB6355ED72CA74482BA6B4 /* wrapper */ = { - isa = PBXGroup; - children = ( - 2E81A09EA187C5ABA0594B81 /* cef_byte_read_handler.h */, - B0E3E128BB10AF315930D732 /* cef_stream_resource_handler.h */, - 5BD5BBF7DBC575DC17C35D72 /* cef_xml_object.h */, - 980462CA3EBC9C7A46664528 /* cef_zip_archive.h */, - ); - path = wrapper; - sourceTree = ""; - }; - C54631913F021FCC1952873E /* Products */ = { - isa = PBXGroup; - children = ( - ); - name = Products; - sourceTree = ""; - }; - C561F2FD91D31ED5AFE3FE37 /* gritsettings */ = { - isa = PBXGroup; - children = ( - E69FAB7C092C231EAE2CDE02 /* resource_ids */, - ); - path = gritsettings; - sourceTree = ""; - }; - C56741FF440BB08E59C40D2D /* common */ = { - isa = PBXGroup; - children = ( - CDB2A1AB7093EC0735069E23 /* cef_message_generator.cc */, - 109971241DE89588510AC552 /* cef_message_generator.h */, - 9F8DF3A8D0D5CBD2B5BE5E4E /* cef_messages.h */, - 8BA02D444B3792D97FDCEECE /* cef_switches.cc */, - D3BEDFBD500FED829DC71255 /* cef_switches.h */, - 5F2B2BFABAAE633D56780C3F /* command_line_impl.cc */, - D7A0E7112DB25D43079BDBD4 /* command_line_impl.h */, - D2E95DA195A44E9F13800933 /* content_client.cc */, - CC8CAF87DF780BDAEAEAD507 /* content_client.h */, - 7FCC66352C9D74203077F2BA /* http_header_utils.cc */, - 411B7B4E82F9CE8BCDB26F59 /* http_header_utils.h */, - 541553E5FE02113AC639ECD1 /* main_delegate.cc */, - 1F32D37DE39EA6518CBF7A97 /* main_delegate.h */, - D05576BEB3938E78B49B3AE0 /* process_message_impl.cc */, - 7F495BA8C8C936D373D7924B /* process_message_impl.h */, - C67B560402C9434CB1C7FEAC /* request_impl.cc */, - 60094E2013060E84B9F0A442 /* request_impl.h */, - 731F5270DCA0C5F127CDB37C /* response_impl.cc */, - 5A208C2BA07A723EA111E6FE /* response_impl.h */, - A7150BB7F6260DC5E3D6014F /* response_manager.cc */, - 20B9C1471565555B56117D65 /* response_manager.h */, - 5CE0453C5A2622362B584F68 /* scheme_registrar_impl.cc */, - 82DACC558D6C9791E80B0D9A /* scheme_registrar_impl.h */, - C7ACE0C68D51D0C218919A6C /* string_list_impl.cc */, - F0F966C99991A8DE7B491044 /* string_map_impl.cc */, - 5400F37F18ACCCBFE7562D10 /* string_multimap_impl.cc */, - 60D541BCDBD964C84437C645 /* string_types_impl.cc */, - 262BD76496AAB06FA64AC8A7 /* task_impl.cc */, - 94FC67A94B7C6A0594A768BB /* time_impl.cc */, - 518172B054CD1F54D77451B4 /* time_util.h */, - D455FB5D8F74CAB2B3F41A9E /* tracker.cc */, - 51010D89047ECE793711047F /* tracker.h */, - EC551A219A6DBB358916C1BF /* url_impl.cc */, - 5243D729B37F95262AC8F6FD /* urlrequest_impl.cc */, - F3E283BE9330EE912852D5AB /* value_base.cc */, - 99985A0B3AAA0CE9A2F58DBC /* value_base.h */, - 2C5DCA0E34DEC39C40C17F5C /* values_impl.cc */, - D97321F6316E0C86664EDF93 /* values_impl.h */, - ); - path = common; - sourceTree = ""; - }; - C88A97A845DC6AA1133FCB60 /* Products */ = { - isa = PBXGroup; - children = ( - 7652B3C9D954E11920222382 /* libwebrtc_libyuv.a */, - 279E280A5DEEDC4C69880518 /* libwebrtc_jpeg.a */, - ); - name = Products; - sourceTree = ""; - }; - CB63D0D4E8FF24EAC785B775 /* grit */ = { - isa = PBXGroup; - children = ( - 850FF5EF5174D22356396681 /* ui_strings.h */, - ); - path = grit; - sourceTree = ""; - }; - CBAAAC7CEE47A24B64DA4C0D /* chrome/browser */ = { - isa = PBXGroup; - children = ( - 0A57F4FC2979198F954E180E /* net */, - CCE39362660556D64641A3EB /* ui/cocoa */, - 50904314745D75720421875B /* disposition_utils.cc */, - 6B57B9E2B3A48DA03AE7AE74 /* disposition_utils.h */, - 3BD182E8FB7A3E22134DF860 /* event_disposition.cc */, - 2000433F0589FE061FBFC7B7 /* event_disposition.h */, - ); - path = chrome/browser; - sourceTree = ""; - }; - CBDA1C3CE0298FB688E9410E /* internal */ = { - isa = PBXGroup; - children = ( - B1DAA340DB834465A936E8F8 /* cef_build.h */, - 96863EC71FE8C19086ECC663 /* cef_export.h */, - 12B6B25CD0AC0FEF0C37C56B /* cef_mac.h */, - 3A045FCB7D7264E8890109A5 /* cef_ptr.h */, - CC2E0CD0BEC5AFA8BD641A34 /* cef_string.h */, - 8C138B705D2D3C374E61DB8B /* cef_string_list.h */, - A2542629E10750A9BC3BA215 /* cef_string_map.h */, - 9FDCE1753EAB6DD51D5E88E8 /* cef_string_multimap.h */, - 7C75D1B55249E9B2D60AED98 /* cef_string_types.h */, - 83A8579EFC53B0B57F009E48 /* cef_string_wrappers.h */, - AAEF5E0F1906033B0352D5B7 /* cef_time.h */, - 79234382345BA3C64994D511 /* cef_tuple.h */, - 37477D39B7F50223303252D7 /* cef_types.h */, - 8948E45DD951A069CAF5AC80 /* cef_types_mac.h */, - 4BBD9CB783AC852918EFEAAD /* cef_types_wrappers.h */, - ); - path = internal; - sourceTree = ""; - }; - CCE39362660556D64641A3EB /* ui/cocoa */ = { - isa = PBXGroup; - children = ( - DC2688FB8963B48B34A8CB30 /* event_utils.h */, - 49AEA50476542BABAA469E49 /* event_utils.mm */, - 50DA499BC7B870350F0B702F /* menu_controller.h */, - BA74D937DABFDDBFF7BC274A /* menu_controller.mm */, - ); - path = ui/cocoa; - sourceTree = ""; - }; - CE30A9051DCD5A462900CCE9 /* writers */ = { - isa = PBXGroup; - children = ( - AD46FECF48CAA90C69CBF929 /* __init__.py */, - F57922A52A9CBE7D6C5818B3 /* adm_writer.py */, - 006E2641277922A5B3C03BC2 /* adm_writer_unittest.py */, - 84EA5424F8B6B4C6138402A8 /* adml_writer.py */, - 54A6B02FA001B6569F481D8F /* adml_writer_unittest.py */, - D58C1FEF34712C6E4A5F8918 /* admx_writer.py */, - D64438538235B85A8AEE9557 /* admx_writer_unittest.py */, - 0AD75F3C85B1E8E79017CEB8 /* doc_writer.py */, - 3D8C3734F4BDB05000A0B9BC /* doc_writer_unittest.py */, - 8AA64D0F18ADA015BFE201A5 /* json_writer.py */, - 9D026DB1DED7CFBFCC17DE88 /* json_writer_unittest.py */, - A118A80152C4BFB2B86A7B82 /* mock_writer.py */, - 36997FB0DD94284E4BB95802 /* plist_helper.py */, - 4B5ADD9D75499F753CF4B5C6 /* plist_strings_writer.py */, - 8A1A6FA2F84381B4C6F7645E /* plist_strings_writer_unittest.py */, - 7E0D94AA2AA4A03F0193832B /* plist_writer.py */, - A10811BEC263444916496808 /* plist_writer_unittest.py */, - 34F700726B1ECBCC4D64D776 /* reg_writer.py */, - 316413852D2E429AB85DC6BE /* reg_writer_unittest.py */, - DA377C3032623ECAF54FE658 /* template_writer.py */, - 093E2FE093BECFD41D5335CE /* template_writer_unittest.py */, - 8510CB875D2FF04CC72D31FB /* writer_unittest_common.py */, - 46E883C7AF1E84BD492C9DFC /* xml_formatted_writer.py */, - C8D5566AFB8F260F77DAB20E /* xml_writer_base_unittest.py */, - ); - path = writers; - sourceTree = ""; - }; - CF97BE27D2381517A113E1D8 /* Products */ = { - isa = PBXGroup; - children = ( - 68CC739E8547E5DFAE8D1FB6 /* libcrnspr.a */, - 59713494F5DE6C0FDA8AC1D7 /* libcrnss.a */, - BE4562C3575A70024C40D583 /* libcrnssckbi.a */, - 1858A88FAD19882F6EBAB134 /* libnss_static.a */, - ); - name = Products; - sourceTree = ""; - }; - D06540FBE4AAE457E9C1029A /* Products */ = { - isa = PBXGroup; - children = ( - 3631B37F09E89E2035707B42 /* libleveldatabase.a */, - 3F6F4D70548B8A2806B4743C /* libleveldb_testutil.a */, - 31388FCDD842A75BAC59D1A9 /* leveldb_arena_test */, - 1B40BA02D77EA14446AE0E66 /* leveldb_cache_test */, - B6D545E11394F55CC4F354C8 /* leveldb_coding_test */, - 59D9F57B61ABC9BBFCBF410D /* leveldb_corruption_test */, - 18E4DDFEECA23064607EC5C0 /* leveldb_crc32c_test */, - 5D556B1739ACFBD9D8902528 /* leveldb_db_bench */, - 64F841BCD64DF489F9FD7045 /* leveldb_db_test */, - 4A7008C1860BAEE50202FF31 /* leveldb_dbformat_test */, - 3F6D427ED8100B09055510A2 /* leveldb_env_test */, - 9BA3259F6DDAFB8F88C9E3BC /* leveldb_filename_test */, - 0E39BDD243670D990FC3D5F6 /* leveldb_log_test */, - 2DC399D70FCD7BBC202A7277 /* leveldb_skiplist_test */, - 9FFA44978A353086446A547F /* leveldb_table_test */, - 97ADD3FE37990403BF1A2C35 /* leveldb_version_edit_test */, - 098B47A6E50F158627CFAF1D /* leveldb_write_batch_test */, - ); - name = Products; - sourceTree = ""; - }; - D342E33851D57FDA0EEF1ECD /* Products */ = { - isa = PBXGroup; - children = ( - 57951AF27EC4AEC7499B8E1E /* libjingle_glue.a */, - C22D91CAFF221E82478B3EC9 /* libnotifier.a */, - F4E51FB8FB4C99518B681C2E /* libnotifier_test_util.a */, - DBB1214DF375AF358E9D16D8 /* libjingle_glue_test_util.a */, - 7D09C922698D218271E813C4 /* jingle_unittests */, - ); - name = Products; - sourceTree = ""; - }; - D6F45F8D700242BBD4C31548 /* Products */ = { - isa = PBXGroup; - children = ( - A3AEB897C9125806F2A3F2E0 /* libsqlite3.a */, - ); - name = Products; - sourceTree = ""; - }; - D7C91B40183481DDB56892F9 /* Products */ = { - isa = PBXGroup; - children = ( - E520D20D9B313E81E46EFC44 /* libssl.a */, - ); - name = Products; - sourceTree = ""; - }; - D7F14D3A57B1534B765AA4E9 /* res */ = { - isa = PBXGroup; - children = ( - B3CBCE3BBAC700D4F20C4AB3 /* binding.html */, - FED6A7D4CC6FDAC0ACF00545 /* dialogs.html */, - 5C73B895D250886CB5582389 /* domaccess.html */, - 47601D042653DA09EF8A0C8B /* localstorage.html */, - C8A180CBAD1730307A7968AE /* logo.png */, - 348B64EB025FFE2A7337DC68 /* xmlhttprequest.html */, - ); - path = res; - sourceTree = ""; - }; - D926808B308378706FD7D1A3 = { - isa = PBXGroup; - children = ( - A90E1265C849F31BA7C13715 /* Source */, - A8558CE4AD60985B27A4FF18 /* Intermediates */, - B5485D05DB6610D0EAE0B7C6 /* Projects */, - 4F29216594804409F75AE9B5 /* Frameworks */, - 4399DC192342F10F75990BC7 /* Products */, - 633FC56C3A41DEE4B57061F7 /* Build */, - ); - sourceTree = ""; - }; - DE95397154FFF95C3B71D9D0 /* Products */ = { - isa = PBXGroup; - children = ( - 7B21CBD334DD8DE180E71548 /* libppapi_shared.a */, - E0124C00BC9DD166682EA919 /* libppapi_proxy.a */, - 2146F4980A38504DBC71F58C /* PPAPIExample.bundle */, - 5C700F1C23E9A371A3D0CED7 /* ppapi_tests.bundle */, - FF117249FEB88AAAB9B6C26C /* libppapi_unittest_shared.a */, - 56EC778DB94C3D3BC59A1FF6 /* ppapi_perftests */, - 3B2C2E73B999F5A73B947FAA /* ppapi_unittests */, - 4BF89795A541A4D4674AE808 /* ppapi_example_mouse_cursor.bundle */, - 556EEC1C9B7F92DD0FDA2D84 /* ppapi_example_mouse_lock.bundle */, - 814B0A4056F5CC5CD72E4308 /* ppapi_example_gamepad.bundle */, - 2C849ED35F93B7313A6B3A26 /* ppapi_example_c_stub.bundle */, - 1C373555E11300EB4535B7AC /* ppapi_example_cc_stub.bundle */, - 151440EC37643EF77F8F3361 /* ppapi_example_audio.bundle */, - 1E92EAF020A7823CBF886789 /* ppapi_example_audio_input.bundle */, - 4ADC86031782B27551EC2E38 /* ppapi_example_file_chooser.bundle */, - E455343DCDDA068A7A605236 /* ppapi_example_graphics_2d.bundle */, - 0D13E88698DFD01971DF95F0 /* ppapi_example_ime.bundle */, - 45653EFBE55EA6DAD77F852E /* ppapi_example_paint_manager.bundle */, - 6F1D49D6CC8D5B19C5B5F7F4 /* ppapi_example_post_message.bundle */, - 7C00C2577296D3966E61FE2E /* ppapi_example_scroll.bundle */, - E353FC738370E3181F299DE0 /* ppapi_example_simple_font.bundle */, - B3DB9C8FD60EBC30C15EC819 /* ppapi_example_url_loader.bundle */, - BD079598FEB10D85498A2269 /* ppapi_example_gles2.bundle */, - 1DBD318A565F9970BC623441 /* ppapi_example_video_decode.bundle */, - 0520B359A318A0CE6636BC65 /* ppapi_example_vc.bundle */, - A9C070899E89D194B452F2FF /* ppapi_example_flash_topmost.bundle */, - 5C297D97F04A9FE35F576C2F /* ppapi_example_printing.bundle */, - ); - name = Products; - sourceTree = ""; - }; - E026A76AD13F93DE7BF64A25 /* Products */ = { - isa = PBXGroup; - children = ( - A233A9E0F2972D84C108ED2A /* liballocator.a */, - AB208F3EF428319141B9B3A7 /* liballocator_extension_thunks.a */, - ); - name = Products; - sourceTree = ""; - }; - E10C0D8C1FD5C7E44E001D9A /* Products */ = { - isa = PBXGroup; - children = ( - 5F32C68901D0E2D38FC3B717 /* libtess.a */, - ); - name = Products; - sourceTree = ""; - }; - E1A4F9759B3EF4A5D45E6375 /* Products */ = { - isa = PBXGroup; - children = ( - 6EB049F6609DE833AF093CA6 /* libil.a */, - ); - name = Products; - sourceTree = ""; - }; - E4DF681FE7A091045A4118F0 /* tests */ = { - isa = PBXGroup; - children = ( - 38D2936464A136EEB0255508 /* cefclient */, - 441C0A99B45B946641BC3BBE /* unittests */, - ); - path = tests; - sourceTree = ""; - }; - E5E3827436D25A88E9D0700C /* grit */ = { - isa = PBXGroup; - children = ( - 6E95D63188E66A21B133C90F /* extern */, - 9A402D0D5EB7BD4E096289D6 /* format */, - 7604B20C2E3706D25B54F466 /* gather */, - 64CB63653C02F587F8F252D9 /* node */, - 379B94E26997803291E0A1EE /* tool */, - 420F3C36CE7631034364E422 /* __init__.py */, - 3CD3016562E16F98BD1F566B /* clique.py */, - 177DBE23FF52BC4B6AA97A61 /* clique_unittest.py */, - F75945ED70B897D40F27A14B /* constants.py */, - E8AD3F42F9B90E5553731848 /* exception.py */, - B96DB9A5EA5CB33C9CF4E3B6 /* grd_reader.py */, - 8D290D79F3EF4612A4721B41 /* grd_reader_unittest.py */, - 343398266DEB232FF344BE97 /* grit_runner.py */, - C52B2176F56D4DEDFA70B6AB /* grit_runner_unittest.py */, - F13EDB36838C78E6470B1A91 /* lazy_re.py */, - 378DA12B5CDE121479554F64 /* lazy_re_unittest.py */, - 7561B5E1D6E73275673FA6F4 /* pseudo.py */, - 0BF739A5B1C2AA176439A5F6 /* pseudo_rtl.py */, - F93BAD27A59BC516BB9311F8 /* pseudo_unittest.py */, - 694DE4CBA4F0460BAAB3ACBB /* scons.py */, - F67C700426EF8449E5CCC774 /* shortcuts.py */, - BB40C94651F5869982CD0D73 /* shortcuts_unittests.py */, - 80E1D3C0C90A9611E57BDE85 /* tclib.py */, - AE237E44F51811ABA1079BEF /* tclib_unittest.py */, - 6ABBA458072A19A85269F56F /* test_suite_all.py */, - 0B156A4CFECFA1AB636989F5 /* util.py */, - F6E29811FBA959CD7BC2EAA4 /* util_unittest.py */, - 98AF0BBBB8A81ABFFF43B0A9 /* xtb_reader.py */, - 78B16B5577F0099FE17A1B76 /* xtb_reader_unittest.py */, - ); - path = grit; - sourceTree = ""; - }; - E8959847354D16C537BD54DD /* tools */ = { - isa = PBXGroup; - children = ( - 1F7FF175E0E4D25F2BEF61EF /* grit */, - C561F2FD91D31ED5AFE3FE37 /* gritsettings */, - ); - path = tools; - sourceTree = ""; - }; - EA116707259DA812076CECFB /* Products */ = { - isa = PBXGroup; - children = ( - B104E9FB51B61FDBF8A2306B /* libjpeg_turbo.a */, - ); - name = Products; - sourceTree = ""; - }; - EDA42135948F78CB9DACAAAC /* Products */ = { - isa = PBXGroup; - children = ( - B5424446D74DD25BADD31F1E /* libgles2_utils.a */, - ); - name = Products; - sourceTree = ""; - }; - EE7A2CE9D2FEF5C88C3CD15F /* Products */ = { - isa = PBXGroup; - children = ( - A8210CD6DD0487DCD90423F1 /* libyarr.a */, - ); - name = Products; - sourceTree = ""; - }; - EF5F28849C437F31B44DC7F1 /* ui_strings */ = { - isa = PBXGroup; - children = ( - CB63D0D4E8FF24EAC785B775 /* grit */, - E543A7571C10044A6343AF07 /* ui_strings_am.pak */, - C51F821DAEE8400127A67F46 /* ui_strings_ar.pak */, - BE1DA88C9CE8AABA2DA12E5A /* ui_strings_bg.pak */, - D868357C760F520F1C128A40 /* ui_strings_bn.pak */, - C6060C990C83797D74493904 /* ui_strings_ca.pak */, - 17D3CBDD52BE57CF73F313AD /* ui_strings_cs.pak */, - 2A3EC5E90DB5938F169F8A1C /* ui_strings_da.pak */, - 585D881341ADB1E66C55A49C /* ui_strings_de.pak */, - 100EB023F2DA2005C72B04F3 /* ui_strings_el.pak */, - 5D0959B70633F8D90C216DDF /* ui_strings_en-GB.pak */, - 14C68B169971C62D93A299B5 /* ui_strings_en-US.pak */, - E85A0832181D596715491B18 /* ui_strings_es-419.pak */, - C20E23727BD91D92D67D9980 /* ui_strings_es.pak */, - 44382DD411BD299BDE154EDF /* ui_strings_et.pak */, - 44A723FB55027DB9CEDE41A6 /* ui_strings_fa.pak */, - BFF104F15A6A249851306E5B /* ui_strings_fi.pak */, - B21D03DC680F4FD5CE10D719 /* ui_strings_fil.pak */, - 2362E106BA358E24CDBFA2D3 /* ui_strings_fr.pak */, - 9B984E9924117932C6ABE9EE /* ui_strings_gu.pak */, - B143F70E2B242100A3AC61A1 /* ui_strings_he.pak */, - A613E999829F80C375BF561C /* ui_strings_hi.pak */, - D307D6AF258938000F036E81 /* ui_strings_hr.pak */, - 8A59126EFE9C5D97F374F4E3 /* ui_strings_hu.pak */, - 2F9D1C00603D4F8A5C80D756 /* ui_strings_id.pak */, - A01E24D255497ECA6A00724B /* ui_strings_it.pak */, - 0E7E7A3D338D3815128F4FE1 /* ui_strings_ja.pak */, - C90513F9659799663F6F0EF2 /* ui_strings_kn.pak */, - 308A839E957D36AE47662CB5 /* ui_strings_ko.pak */, - EAA971EFC721FB184CA622B6 /* ui_strings_lt.pak */, - 55ED39C002EBB5CCD16E0BA3 /* ui_strings_lv.pak */, - 585DEF23D9BFD4D198D6EA33 /* ui_strings_ml.pak */, - C58453B51F977741B3755433 /* ui_strings_mr.pak */, - FE84C71E002AAD230CDFA753 /* ui_strings_ms.pak */, - 106433B6C1D2BC480CCB7ED5 /* ui_strings_nb.pak */, - F0C44F397DE57FF0BF3EE6B4 /* ui_strings_nl.pak */, - 69C916786797700DC9969DA2 /* ui_strings_pl.pak */, - AED60E39DA93EBF9C3361DB2 /* ui_strings_pt-BR.pak */, - 39E8E123C0A0556E41BB6D24 /* ui_strings_pt-PT.pak */, - D980F0A679089BE9FB4C1F47 /* ui_strings_ro.pak */, - 3E0E0DB9439B50E58A406601 /* ui_strings_ru.pak */, - 729A2C7E82535377AF318E1C /* ui_strings_sk.pak */, - DDFAD28E804B0154D4660646 /* ui_strings_sl.pak */, - 0F17041FB76E0352E317070D /* ui_strings_sr.pak */, - 0F027973D0ADA67E74793587 /* ui_strings_sv.pak */, - 8E4CDC7E28233AAF8A1353E0 /* ui_strings_sw.pak */, - F8008887AB40C8E030162213 /* ui_strings_ta.pak */, - 6569C982849C795FA1D77C0D /* ui_strings_te.pak */, - ED774CC9A6E41E3411B553FA /* ui_strings_th.pak */, - 054D552370799D9F7EACC73A /* ui_strings_tr.pak */, - 380B3BF381D78DB573A92FDA /* ui_strings_uk.pak */, - CC02ACE784927C69439BC632 /* ui_strings_vi.pak */, - 3C71276E1976DF076B0A55B4 /* ui_strings_zh-CN.pak */, - 8EC24B77969614A9E69D79F8 /* ui_strings_zh-TW.pak */, - ); - path = ui_strings; - sourceTree = ""; - }; - F0CD083F623E6A718A2A22F5 /* Products */ = { - isa = PBXGroup; - children = ( - D874478C6297A52B77C4472D /* libsystem_wrappers.a */, - ); - name = Products; - sourceTree = ""; - }; - F12E9AF2BA7517115998992F /* Products */ = { - isa = PBXGroup; - children = ( - 8A972F262B243A199E70827A /* libyuv.a */, - ); - name = Products; - sourceTree = ""; - }; - F2110F4DC49E005B1E51B67D /* Products */ = { - isa = PBXGroup; - children = ( - E3EFB43DABABCB5B5A738A2A /* libsfntly.a */, - ); - name = Products; - sourceTree = ""; - }; - FB929E32ABBBF57701094854 /* Products */ = { - isa = PBXGroup; - children = ( - EB159E178A7EBD4D052A34C7 /* libjingle.a */, - 16534921BF1B3E5292745B4E /* libjingle_p2p.a */, - 2F4B7D113B38123301170B05 /* libjingle_peerconnection.a */, - FD86F492F6C7DDEF4E61078F /* peerconnection_server */, - ); - name = Products; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 0493E18E77BAF61DDB854B47 /* cefclient */ = { - isa = PBXNativeTarget; - buildConfigurationList = F8BE8D5B24FBDFFAE459ADFB /* Build configuration list for PBXNativeTarget "cefclient" */; - buildPhases = ( - 363E6395E0705F8426E2F3E6 /* Copy to $(BUILT_PRODUCTS_DIR)/cefclient.app/Contents/Frameworks */, - 41B57737E8DFAF5F2FE86479 /* Copy to $(BUILT_PRODUCTS_DIR)/cefclient.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/ */, - B8B42A60AC7F478B1CBC517D /* Copy to $(BUILT_PRODUCTS_DIR)/cefclient.app/Contents/Frameworks/Chromium Embedded Framework.framework/Libraries/ */, - EF19C4CF1107FD1F8A1D58A1 /* Resources */, - 52AEDA1BA716D79F5BB98D8F /* Sources */, - 9705A89604762C019F4CA5B7 /* Frameworks */, - 75E283402CB05DC628E11273 /* Postbuild "Fix Framework Link" */, - 03A6A45959528523C7D649EA /* Postbuild "Copy Pack File" */, - 3639EADC695DADA070AB399B /* Postbuild "Copy WebCore Resources" */, - 3C9AFFAC17C9AC4410282CC2 /* Postbuild "Tweak Info.plist" */, - AD62A6B22A45C4C5A439D10C /* Postbuild "Make More Helpers" */, - BB7AE9DBAC3E98B040D5A1E1 /* Postbuild "Change Mach-O Flags" */, - C877D034A6CB2A4B434403D2 /* Postbuild "Strip If Needed" */, - ); - buildRules = ( - ); - dependencies = ( - FE2FCE7EA59AC634052A5124 /* PBXTargetDependency */, - C7E3361284E1F7D7C26E2D86 /* PBXTargetDependency */, - A67F761434AA6D80B00A4461 /* PBXTargetDependency */, - C759DC2977118579D0A96459 /* PBXTargetDependency */, - 00CC8BAF0A7A8E509848A36A /* PBXTargetDependency */, - F62CE60DD219AB04B67F1065 /* PBXTargetDependency */, - 70E8027D63C1504658A02E3A /* PBXTargetDependency */, - F2BB4FA3B940C07D89157EC9 /* PBXTargetDependency */, - CBEC0AD6362E3C9763E6645D /* PBXTargetDependency */, - 99BDB901D446F13EC2438D13 /* PBXTargetDependency */, - 028099C6F71DC42913A49104 /* PBXTargetDependency */, - 540798F295EEAC241257CEB8 /* PBXTargetDependency */, - 5BBB719F52008A86D3804FAB /* PBXTargetDependency */, - FC74A51F8B1C1F3E93952A9C /* PBXTargetDependency */, - 8086F1C2F886BB0FA6C3808C /* PBXTargetDependency */, - 1066787E3F98599D487F6AD9 /* PBXTargetDependency */, - F1C03BDF885790512F75EB01 /* PBXTargetDependency */, - 1539050364269C63EB69EB20 /* PBXTargetDependency */, - DBC2E821446337E0737E7AA1 /* PBXTargetDependency */, - 36DDF6E7056E8715A37E34EB /* PBXTargetDependency */, - FF0396C5BADD3C1A6445DEE2 /* PBXTargetDependency */, - 7B01A2656BB896DD657E03F2 /* PBXTargetDependency */, - 68D746A8CD1006F0100D1ED9 /* PBXTargetDependency */, - F0CA185DCC290D621BFBCFD1 /* PBXTargetDependency */, - 228E575EBCFD2F5AF4642E1B /* PBXTargetDependency */, - ); - name = cefclient; - productName = cefclient; - productReference = 335F63827821FB9FB71D0599 /* cefclient.app */; - productType = "com.apple.product-type.application"; - }; - 26DD2CB0340D816F3DF64EC9 /* libcef */ = { - isa = PBXNativeTarget; - buildConfigurationList = 86C662A5BDD8770B165021CD /* Build configuration list for PBXNativeTarget "libcef" */; - buildPhases = ( - 15AAF6C809448EC005E189B1 /* Sources */, - BCCF06AC835461591F8E6D9B /* Frameworks */, - DC5E0389A842A86C8885389B /* Postbuild "Strip If Needed" */, - ); - buildRules = ( - ); - dependencies = ( - A8475ADAE98E744D60D4FA2D /* PBXTargetDependency */, - 28A055A00F3B727579EB90E8 /* PBXTargetDependency */, - C87925E134D9B5DED1872997 /* PBXTargetDependency */, - 484AFC5054BDB319C75B4EAD /* PBXTargetDependency */, - 3C80EE74550ECE50F416926A /* PBXTargetDependency */, - 8CC7119C59AED674DDEC33A9 /* PBXTargetDependency */, - 66C1553721A4251B5FF2BE19 /* PBXTargetDependency */, - ADFE0487AC629536E7D3EEE9 /* PBXTargetDependency */, - BD97A80B0F044A62288E0E16 /* PBXTargetDependency */, - 6155A0EC77BD3E6FD922A778 /* PBXTargetDependency */, - 8BEC2A9DA21546398AE15AB4 /* PBXTargetDependency */, - F6209F2F154B8EDAC16F5D24 /* PBXTargetDependency */, - D4B32F5B63922E4C30765E62 /* PBXTargetDependency */, - 69D9011739B5C00D91962EE4 /* PBXTargetDependency */, - F8D0C8803EDBC67FD6553421 /* PBXTargetDependency */, - 52274D1E656EA0F4A7052558 /* PBXTargetDependency */, - 296095DCF49A827D4A9CD0DD /* PBXTargetDependency */, - 758D8664DBCA67282B14DC0F /* PBXTargetDependency */, - 6EBD39DE2A1C669C32FBE0EA /* PBXTargetDependency */, - 84796E5A790BD8AE52D809D9 /* PBXTargetDependency */, - 982664829BD1394D4FBAC30E /* PBXTargetDependency */, - F2679D3E14329F842B356CAA /* PBXTargetDependency */, - 4B72BEDE7217B509D2600B9F /* PBXTargetDependency */, - 1BDDEB568DB5442E20CAE6DF /* PBXTargetDependency */, - 3C5BF9FDE0FA061D4E213715 /* PBXTargetDependency */, - D4C3FDD69C6792EF9A1FCAA7 /* PBXTargetDependency */, - A5CD4A0369A1F5A93C9B1CE4 /* PBXTargetDependency */, - 8A1A94222C247E6B927783B4 /* PBXTargetDependency */, - A4427590BB7DD68EACBC16D7 /* PBXTargetDependency */, - D7C35C1D4B238BC1476638C8 /* PBXTargetDependency */, - 4B44D3877B1417EE50334F8C /* PBXTargetDependency */, - 9F4D474C6AAFDFD20ED9BDE4 /* PBXTargetDependency */, - 87DEEE47CF06B777B5004DC4 /* PBXTargetDependency */, - 897B18EA020CD10C5C92630A /* PBXTargetDependency */, - 37577390E57F4FBF244B1678 /* PBXTargetDependency */, - CB20BF2B84CAE7083B2F2609 /* PBXTargetDependency */, - 3766D1A3950B959D5CE56D1A /* PBXTargetDependency */, - A91AA97476150E261D8035AA /* PBXTargetDependency */, - 30541C58BCABF7CA64100986 /* PBXTargetDependency */, - E7D004A9273847E38D358ED2 /* PBXTargetDependency */, - 8EC605E0120603FBAC00E26F /* PBXTargetDependency */, - DB4DB9A8D28928F15DC54961 /* PBXTargetDependency */, - A36499018124CA3345F02A46 /* PBXTargetDependency */, - 86C35E93660FB4836609A431 /* PBXTargetDependency */, - 227432A6F74AFF42EFBFEF87 /* PBXTargetDependency */, - 91E61E43A283207178B02A1D /* PBXTargetDependency */, - 64644ABAC504E64F7A9CDB36 /* PBXTargetDependency */, - 401B9B206A61F21C85E51C75 /* PBXTargetDependency */, - E52010F8FD971760FCEFF954 /* PBXTargetDependency */, - F0B723B4F97690C506395CBB /* PBXTargetDependency */, - 8DBD55E95FAF06BFAB060981 /* PBXTargetDependency */, - 3E9D7987872A083EC773AFEC /* PBXTargetDependency */, - B784D096609A64A036DEC09E /* PBXTargetDependency */, - 97FD452B6EB19DF401DA8B03 /* PBXTargetDependency */, - 953B2BFA40E139C4CDC72CD7 /* PBXTargetDependency */, - D865DA821ED58CBF81B167B0 /* PBXTargetDependency */, - 39EBC6589AAC582B3EC95EA2 /* PBXTargetDependency */, - CECE00B958801956686E3535 /* PBXTargetDependency */, - 2D13543C7300F6E4DA78AAE5 /* PBXTargetDependency */, - 7CF98C7700E3B8EA4CE8E593 /* PBXTargetDependency */, - A1A072890819927711EF0762 /* PBXTargetDependency */, - C2EE1EC0A89FB359F99930D4 /* PBXTargetDependency */, - 4FA57FD67641983A172A7AEA /* PBXTargetDependency */, - ED1F3DA1BF2CBD12B366DC8E /* PBXTargetDependency */, - A8D88718842A615C2E5F8AE9 /* PBXTargetDependency */, - 018FE750CF501704E7933F75 /* PBXTargetDependency */, - 34CC444EF3CAADBEF921E3E1 /* PBXTargetDependency */, - 909C73A418602D84E1ED31B4 /* PBXTargetDependency */, - AC5FB89F35A36E5480C739CB /* PBXTargetDependency */, - 188EA8ED60991519923E9381 /* PBXTargetDependency */, - 08F502C3BD79E57B00A009D4 /* PBXTargetDependency */, - E55705F2149D6E6B4377C1E9 /* PBXTargetDependency */, - 6214A01CB11669182FA76449 /* PBXTargetDependency */, - 4B50B513F5D397E7DB633513 /* PBXTargetDependency */, - DF46FDAE1F4C33EF1A3EF27C /* PBXTargetDependency */, - 17CE9CB2BD146E5D3C69E0F8 /* PBXTargetDependency */, - 01DDDBD6CC9D07715FF38356 /* PBXTargetDependency */, - 20EB5AB3F0C0920F58F61675 /* PBXTargetDependency */, - 5984773E310FA1F734FDE1C8 /* PBXTargetDependency */, - 891C540F1779E4D880D78A77 /* PBXTargetDependency */, - 585AA89D4631F08224C9D00B /* PBXTargetDependency */, - 8EFB690D89687BDE3CDA4DA8 /* PBXTargetDependency */, - F62351C167200E946175EF15 /* PBXTargetDependency */, - E6A5E45AC2BBCA574F629848 /* PBXTargetDependency */, - D62A77AB9AF0B5C6CA6DD10A /* PBXTargetDependency */, - FB2DDCC207B854AD4FA2BD55 /* PBXTargetDependency */, - 44BE494DF00E33217EADB95F /* PBXTargetDependency */, - D4E971F7303C938071EC5A2E /* PBXTargetDependency */, - 0C9993BD290C3BC779AA5C05 /* PBXTargetDependency */, - 3ECFFA6BB917CB66E5928EAF /* PBXTargetDependency */, - 246B87C2FE1BA5EC2FA1754D /* PBXTargetDependency */, - 32541601F69C527499C9016D /* PBXTargetDependency */, - 590BE005DE4FAC19AAA1F968 /* PBXTargetDependency */, - CED29D01F7E6B437AA1B8F55 /* PBXTargetDependency */, - F43C88B1CC50EBB3FAEECBDE /* PBXTargetDependency */, - 9271BC0F42F41DBB3313BEA0 /* PBXTargetDependency */, - 018018695BEDC2B974BDE164 /* PBXTargetDependency */, - 6FF9442036876548B657834F /* PBXTargetDependency */, - 652D7D5F084AE948D073F4B6 /* PBXTargetDependency */, - 1A11351E16DCE360168336ED /* PBXTargetDependency */, - 0FF7D98572DAD9E964B21030 /* PBXTargetDependency */, - 0E5AD89016FFF8CEF869D1C3 /* PBXTargetDependency */, - 8567BB2B3AFE7442A6E3F7F7 /* PBXTargetDependency */, - 93E425833C2643FD23FE1F7C /* PBXTargetDependency */, - F8DA36B1F207ED049BC8B1B0 /* PBXTargetDependency */, - E2E90A60156F59E4170DA218 /* PBXTargetDependency */, - 9F0F24CBA9265CCC260D748E /* PBXTargetDependency */, - A6F6C80051573A8B72D17E68 /* PBXTargetDependency */, - C216A1EF9DFFA341DD1FF0A0 /* PBXTargetDependency */, - 3483302F5089952C0B1A341B /* PBXTargetDependency */, - CEAF706BE29DF4FC8007A5FA /* PBXTargetDependency */, - E8B5563B938B7089EFCAF709 /* PBXTargetDependency */, - EC4968AF05ED345F4C0568B0 /* PBXTargetDependency */, - 07D1D14CEBA3794874E91835 /* PBXTargetDependency */, - F4B1DAFAEBE2F272F77A1157 /* PBXTargetDependency */, - C7A76CE1D0D1DA3B256C2CFF /* PBXTargetDependency */, - 941A82AECCF13B61507D8FCA /* PBXTargetDependency */, - 4CE756CB03A45F41A46F30E6 /* PBXTargetDependency */, - F34A8190B10255E6B5E7245E /* PBXTargetDependency */, - BAAC718AEE06C92454F0C470 /* PBXTargetDependency */, - 8401EAD11384253DFEBD95AC /* PBXTargetDependency */, - 1CDC06A90ADFB3628D4737E4 /* PBXTargetDependency */, - 0E48D108765D5175A14C18C8 /* PBXTargetDependency */, - 69735C3504CA6548644E20D5 /* PBXTargetDependency */, - CCABC28C7229D914B0166755 /* PBXTargetDependency */, - 2259BFCC7F2B441712F43DAD /* PBXTargetDependency */, - 526DB93E57BF32C87DE2100E /* PBXTargetDependency */, - 126B209540241A45504C408E /* PBXTargetDependency */, - FB18C19A700F0008333FB2B2 /* PBXTargetDependency */, - E8C18615379C40545C7FBE21 /* PBXTargetDependency */, - BDFFE2C07E56354EAD8A1832 /* PBXTargetDependency */, - 7B345739958F21CEF1622363 /* PBXTargetDependency */, - FDB175F4706DD32BC8642CBA /* PBXTargetDependency */, - 0EC294FA5E7846C044B3D311 /* PBXTargetDependency */, - 5A958BB0525526F334EFCF04 /* PBXTargetDependency */, - 6D296BB1F607881183C98EEA /* PBXTargetDependency */, - 6B09209542CB7F47787DFF80 /* PBXTargetDependency */, - 924FE3007F44A850F3D98B29 /* PBXTargetDependency */, - 83A968FEC9B77B6C1760E272 /* PBXTargetDependency */, - 08F034B898C717EC093423AA /* PBXTargetDependency */, - 3ACD8CCE9DE5AC89B1617302 /* PBXTargetDependency */, - 68FDF28FDCEE90BB367CB7AB /* PBXTargetDependency */, - A7B693B69170AA4ECA288790 /* PBXTargetDependency */, - EFC63B579D17F4D1B0766435 /* PBXTargetDependency */, - 8C7AA0A739649197931E39F8 /* PBXTargetDependency */, - 0D6A729B06C9C99F67688304 /* PBXTargetDependency */, - 04277D2C7B69F2426AA0B6B4 /* PBXTargetDependency */, - 773248346B27F6A58720474E /* PBXTargetDependency */, - 532D9A1513C8583C40E0A2A3 /* PBXTargetDependency */, - AF8AAC0FA463088CFDC7406F /* PBXTargetDependency */, - D9C35CBA4217039633C22450 /* PBXTargetDependency */, - 09015733EC03E44F76E49F8B /* PBXTargetDependency */, - 9ECA24FA1C1D782D51C509E5 /* PBXTargetDependency */, - 2848E0BD5FE75507C5044611 /* PBXTargetDependency */, - 3A45BD1F2320206C7BBC081B /* PBXTargetDependency */, - B44FB998F5B58EAF00144080 /* PBXTargetDependency */, - B46F40D25EA68E98ED7AC4DF /* PBXTargetDependency */, - 28B0906BC92410A1E8A22A04 /* PBXTargetDependency */, - 11763C99A26EC98C83F45C00 /* PBXTargetDependency */, - 9D98F90F0B2D2CF1B34D9349 /* PBXTargetDependency */, - B2D9D83008DF76C3EFA8EB71 /* PBXTargetDependency */, - DD648AE0CEAD3B920AD2C49E /* PBXTargetDependency */, - 945ED72D954B41788CDFF222 /* PBXTargetDependency */, - 27D3B3479115A3226A63E602 /* PBXTargetDependency */, - B2A78482BA3852DC25AF5ECC /* PBXTargetDependency */, - 083D93B1EA1202E1D5BEEDEE /* PBXTargetDependency */, - 209C1916E50D686D8974ACE0 /* PBXTargetDependency */, - EE182D9359430CBC11B12B17 /* PBXTargetDependency */, - B7441324E2ACE24C3AD58F27 /* PBXTargetDependency */, - FC4FC4583C47C1909FF4DDB4 /* PBXTargetDependency */, - 38F06282E6CF6FC3E204D074 /* PBXTargetDependency */, - 5A33A3E27755B7349EAE1EA7 /* PBXTargetDependency */, - 0561F12C1B4E226E9EC4580C /* PBXTargetDependency */, - 68C922E53442F67D9724E7B6 /* PBXTargetDependency */, - 17024752957D72AC3993E625 /* PBXTargetDependency */, - 72BB74C982A49A0091FE7005 /* PBXTargetDependency */, - 7F6FD1F99EE06A9DD7E96CF4 /* PBXTargetDependency */, - 23E4C15A4B2CDA370FE05EBA /* PBXTargetDependency */, - 535B42FD5E84DB25FD9B6F6C /* PBXTargetDependency */, - C191AB6D80B73206C3EFB700 /* PBXTargetDependency */, - EE4FDA1878F278A35FA3AFC9 /* PBXTargetDependency */, - 358CC58FB67EB73F37C2B942 /* PBXTargetDependency */, - 6B1D91115389C6B23FF2CAC1 /* PBXTargetDependency */, - 34E5A9255A3CA3C752E30B29 /* PBXTargetDependency */, - 98238BABFA753D2FD44BF099 /* PBXTargetDependency */, - 1DB8A60BF127EBE36599760F /* PBXTargetDependency */, - 23DC6924F1BFDA9085F1F23A /* PBXTargetDependency */, - C3A8950A78F771F433883B03 /* PBXTargetDependency */, - 5EEC34626F2BEE1D822A64F3 /* PBXTargetDependency */, - CB10DA56733DE60BA0001808 /* PBXTargetDependency */, - ); - name = libcef; - productName = cef; - productReference = 6E33046A4EDB56251FF60662 /* libcef.dylib */; - productType = "com.apple.product-type.library.dynamic"; - }; - 8DBADDE353DC46B377FC4192 /* libcef_static */ = { - isa = PBXNativeTarget; - buildConfigurationList = DC556C973BE9072C58775672 /* Build configuration list for PBXNativeTarget "libcef_static" */; - buildPhases = ( - 89C81779558346D9923CB00A /* Sources */, - FF7A801E01D9A5D08874F92D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 2A2FCF7E43A072536BC50158 /* PBXTargetDependency */, - 1336D33832312F64220373F9 /* PBXTargetDependency */, - DE33C57E5B2E869B66768B55 /* PBXTargetDependency */, - 6ECA079A6DC4163BA797402E /* PBXTargetDependency */, - 7C1A473A79B462ADBABDF0BE /* PBXTargetDependency */, - 4A07CB85D4649A637B0A72BD /* PBXTargetDependency */, - ); - name = libcef_static; - productName = cef_static; - productReference = 3555939C4755250EAA5AE2D0 /* libcef_static.a */; - productType = "com.apple.product-type.library.static"; - }; - 94BAF60C7C90712E7F239E35 /* libcef_dll_wrapper */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6BE12BAEC226B0826AF78434 /* Build configuration list for PBXNativeTarget "libcef_dll_wrapper" */; - buildPhases = ( - 4A0EC8CCC35A03E5F9AFDB2C /* Sources */, - 0EFC4FEA51E5E61F716A04B7 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - E48C1957A87A9D58917A490B /* PBXTargetDependency */, - ); - name = libcef_dll_wrapper; - productName = cef_dll_wrapper; - productReference = 9BDB4C89AB31661B24EC5AD7 /* libcef_dll_wrapper.a */; - productType = "com.apple.product-type.library.static"; - }; - A9EF68F8BF3234583509BD43 /* Atom */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1174878B18A3C3D3A426A10D /* Build configuration list for PBXNativeTarget "Atom" */; - buildPhases = ( - 21654BF73893AF5F2F54CB22 /* Copy to $(BUILT_PRODUCTS_DIR)/Atom.app/Contents/Frameworks */, - BB909587FCDAA5C2AEB69999 /* Copy to $(BUILT_PRODUCTS_DIR)/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/ */, - 110C3A0677FD3FB02DC58AA3 /* Copy to $(BUILT_PRODUCTS_DIR)/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Libraries/ */, - 6817CDB95BD034F292DA8F53 /* Resources */, - CC4ADB3EA7D1A4EAE3B45DDA /* Sources */, - 714FEC28B84B5C81930A0035 /* Frameworks */, - 54CA849DD7D891C030CFAB8D /* Postbuild "Fix Framework Link" */, - 0310BBDDD26FDFD9481502AE /* Postbuild "Copy Pack File" */, - 8FACF06540BB4D8E03202976 /* Postbuild "Copy WebCore Resources" */, - F893089D73E0B020449C4564 /* Postbuild "Tweak Info.plist" */, - 088D60E05B862F8EDEEF51C9 /* Postbuild "Make More Helpers" */, - 6E9206029272010913615E30 /* Postbuild "Change Mach-O Flags" */, - 81B48C19E2353482EA798BDC /* Postbuild "Strip If Needed" */, - ); - buildRules = ( - ); - dependencies = ( - 83709877BB29B37B1C92BD69 /* PBXTargetDependency */, - 33FA3CE13523A005F6637542 /* PBXTargetDependency */, - B8C2F9932BD812C91648B312 /* PBXTargetDependency */, - BFF345F0E2483933810B4967 /* PBXTargetDependency */, - 7778D2B4810EEB8B13596EFC /* PBXTargetDependency */, - 1DAAEBBDC21120A2BA5554CD /* PBXTargetDependency */, - A377701C78E94637691E4540 /* PBXTargetDependency */, - AFE212C0CA2DAF8A25E3240F /* PBXTargetDependency */, - 59B6C06E60371905C023EF88 /* PBXTargetDependency */, - 6E9F702DBF56871D8784C659 /* PBXTargetDependency */, - EC7DE7ABB6CCA086B36CB92B /* PBXTargetDependency */, - 8FA2690062158BFBA8709A0A /* PBXTargetDependency */, - 8FDB318D702CDB5B50573BA0 /* PBXTargetDependency */, - DA3D488D325CBBFB1762FA73 /* PBXTargetDependency */, - E6A0A8A887CA18F8E51725DC /* PBXTargetDependency */, - 7D15E4AD75676E3C2481F28A /* PBXTargetDependency */, - 30949FF2FD6FE023AAD0C599 /* PBXTargetDependency */, - F1B2B92053DF854D163A1553 /* PBXTargetDependency */, - CABA16FFBF964F3E0877AE92 /* PBXTargetDependency */, - F8FBEA78C0E87AC82CC5990F /* PBXTargetDependency */, - 5AA84938089115DBA6AF746D /* PBXTargetDependency */, - CFEE9A8D3AFA97BC2AC56599 /* PBXTargetDependency */, - 9C5E1EF2C1DB083B2B44725F /* PBXTargetDependency */, - 4EA8325CB5958DA70F4EA0F6 /* PBXTargetDependency */, - 2ADCFE2607C12E72B11E5956 /* PBXTargetDependency */, - ); - name = Atom; - productName = Atom; - productReference = 217AE35B8A9BA24CD3E26EFA /* Atom.app */; - productType = "com.apple.product-type.application"; - }; - DA259FAFFD7136C8A5C881A8 /* cef_unittests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 9368946EEA5D018D56087305 /* Build configuration list for PBXNativeTarget "cef_unittests" */; - buildPhases = ( - 9DDB81FEBAA8E1149D805F39 /* Copy to $(BUILT_PRODUCTS_DIR)/cef_unittests.app/Contents/Frameworks */, - CEBDE3A692F8AF3998E534C0 /* Copy to $(BUILT_PRODUCTS_DIR)/cef_unittests.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/ */, - A19B3F0175919B22410392C8 /* Copy to $(BUILT_PRODUCTS_DIR)/cef_unittests.app/Contents/Frameworks/Chromium Embedded Framework.framework/Libraries/ */, - 905C10454B56710E20BFBB4C /* Resources */, - 2B59DED28F1CA97C1BEDABA0 /* Sources */, - 50130A990C148A218B7C3BD9 /* Frameworks */, - D3A607D63C1C6C789F5BFEE9 /* Postbuild "Fix Framework Link" */, - F530C19B5115115D7A7639EB /* Postbuild "Copy Pack File" */, - 4E78B13E3141E87A1C8839E4 /* Postbuild "Copy WebCore Resources" */, - 5242EEED2E14B727C773C262 /* Postbuild "Tweak Info.plist" */, - 0302AE1153B70E8F68D38370 /* Postbuild "Make More Helpers" */, - 499266B4B1AB1CE16FF810FC /* Postbuild "Change Mach-O Flags" */, - 9D7F4F37E16955CBDBB8B64A /* Postbuild "Strip If Needed" */, - ); - buildRules = ( - ); - dependencies = ( - 82853600193836A7ABE4CB69 /* PBXTargetDependency */, - 03924FAB6548882A8FA3FDF9 /* PBXTargetDependency */, - 9DAA018E161C538137C5B4DC /* PBXTargetDependency */, - C61CF4352A96E883FBD8648A /* PBXTargetDependency */, - B52B6B2CBB3D2EB5891AABEE /* PBXTargetDependency */, - A5FB2BD7F7D8DB45EFEFC723 /* PBXTargetDependency */, - 820BF79B902B5306B8BBFDB2 /* PBXTargetDependency */, - CD34116734A4250D23757470 /* PBXTargetDependency */, - 84B18BC5C21E915281D4A860 /* PBXTargetDependency */, - 078F3BFD741FC0181D2C5BFB /* PBXTargetDependency */, - CFDD3160FFD38A5A103F5C46 /* PBXTargetDependency */, - 1C5C1B9FA301D7CB56AE9719 /* PBXTargetDependency */, - D73B1CC21AE30C491438895B /* PBXTargetDependency */, - C0AA512C56B4CA181B73FF42 /* PBXTargetDependency */, - 30F2FE0EF3498498F5EF043D /* PBXTargetDependency */, - 278B38B322EEE5AF0A1E5673 /* PBXTargetDependency */, - 30C396F70D462E8540382230 /* PBXTargetDependency */, - E9CA9A04B2BB0C839FE53EF9 /* PBXTargetDependency */, - B04DD3BCCD24DDA72185A9D0 /* PBXTargetDependency */, - 8E2FD9149B8727F536867E00 /* PBXTargetDependency */, - 738A5BE7BA4CD9DAEBBBDF83 /* PBXTargetDependency */, - 878CE2270DE477FFA158E094 /* PBXTargetDependency */, - DAC5C714D00EB16221DE217C /* PBXTargetDependency */, - 4143A681BF1DAF2414D46C6E /* PBXTargetDependency */, - DA435D4861F6629421F8206F /* PBXTargetDependency */, - 8C8142F6763B303179E6C0DF /* PBXTargetDependency */, - 35C900F57711847D325F6627 /* PBXTargetDependency */, - F7BC8BF9A2CEC8FA8D4992A3 /* PBXTargetDependency */, - 8718C8550C80AE7CE8AF0A35 /* PBXTargetDependency */, - 0817E1BB3B61065DBC1A264D /* PBXTargetDependency */, - 963672EBBDDD69ADEADDF56D /* PBXTargetDependency */, - 4511C4D866B66A8B4AB452E2 /* PBXTargetDependency */, - 0723211F3CD6BED158C58898 /* PBXTargetDependency */, - A04FC7E1DE747D5F75E4402C /* PBXTargetDependency */, - 9995E522BA205FE09383D33B /* PBXTargetDependency */, - 54066FF3F964DB2600B6C979 /* PBXTargetDependency */, - 0CDB92373DDC2A1C014AE337 /* PBXTargetDependency */, - C40EFA3F6D1C6F9DE6D4C2DC /* PBXTargetDependency */, - 665F71C74381066EF3169B9C /* PBXTargetDependency */, - 510B2B2D9E49DB29CC008B1F /* PBXTargetDependency */, - ); - name = cef_unittests; - productName = cef_unittests; - productReference = 60FDBC13FBB130A5982C0CC1 /* cef_unittests.app */; - productType = "com.apple.product-type.application"; - }; - DA98FB3E241B73BA47200DFF /* AtomHelperApp */ = { - isa = PBXNativeTarget; - buildConfigurationList = 3C1ACB3AF7F069E5CDF14E2C /* Build configuration list for PBXNativeTarget "AtomHelperApp" */; - buildPhases = ( - 660B06395030BC8F8F5AFAEA /* Sources */, - B903C7B9144BA6DAAF123B1A /* Frameworks */, - 4D8A02B632CBD7D3A480A954 /* Postbuild "Fix Framework Link" */, - 2A4EBA340C9E27703AF0630F /* Postbuild "Tweak Info.plist" */, - 8B7A5C0773D0725D94DACA20 /* Postbuild "Change Mach-O Flags" */, - 175A437AC43F027F233A6A47 /* Postbuild "Strip If Needed" */, - ); - buildRules = ( - ); - dependencies = ( - 7739908E957DA2487EBDB6C6 /* PBXTargetDependency */, - 6342CE64CFD5181540EAB3F8 /* PBXTargetDependency */, - EF89825F1F1D8C085B2D062D /* PBXTargetDependency */, - 9853FA541A219C3E1892FEEF /* PBXTargetDependency */, - E7BF5B47F1BE81DC0321B9FB /* PBXTargetDependency */, - D4A81AA031FDFFFD564D116A /* PBXTargetDependency */, - 61BE2B6370F8609262DC4E31 /* PBXTargetDependency */, - C21C8DF836E38F82A780D9E0 /* PBXTargetDependency */, - 178013DF56ED7719DAD441AF /* PBXTargetDependency */, - 5CCB13FAA4B13E6EA39F80B0 /* PBXTargetDependency */, - D6269028369F81CEE750919B /* PBXTargetDependency */, - 7F6CA27CDFC510F192395E0A /* PBXTargetDependency */, - AFBD472159527629D176CDD1 /* PBXTargetDependency */, - 63539F42A4F447AAADF3C4FD /* PBXTargetDependency */, - 65E8BAA34C272E4797C6C8B4 /* PBXTargetDependency */, - DCA81FD0679CDBDC87C90B95 /* PBXTargetDependency */, - 3632689D80672EE57D218C9C /* PBXTargetDependency */, - CACF350ABA7092F2EED4885B /* PBXTargetDependency */, - AF9CFE3BE26BBFB2EC760464 /* PBXTargetDependency */, - AD3C01CD58386E99F4993BBC /* PBXTargetDependency */, - 42B0C642B26E234B18115A7B /* PBXTargetDependency */, - 7F7A47B4E066C7FBB4D5D6B6 /* PBXTargetDependency */, - 165E18E56A410771B0140D0B /* PBXTargetDependency */, - 37AEFBDF1CC93EBF210DBE84 /* PBXTargetDependency */, - ); - name = AtomHelperApp; - productName = "Atom Helper"; - productReference = 9F7159CBC485389851637A19 /* Atom Helper.app */; - productType = "com.apple.product-type.application"; - }; - DCB001A34DDB8A1DBDB1A9C4 /* cefclient_helper_app */ = { - isa = PBXNativeTarget; - buildConfigurationList = DC1D5F02BEA3B133DF72CAA5 /* Build configuration list for PBXNativeTarget "cefclient_helper_app" */; - buildPhases = ( - 44932A9FD29C6A7F954CE8EC /* Sources */, - 2E3453E8D91CCB4E6DE1F68A /* Frameworks */, - AAEB415B37B6A705C7DAC877 /* Postbuild "Fix Framework Link" */, - 292469D37E7F54C53612D2DA /* Postbuild "Tweak Info.plist" */, - B7F19AED801FC55033369354 /* Postbuild "Change Mach-O Flags" */, - CD9DA8F3139BF447C6EAD60F /* Postbuild "Strip If Needed" */, - ); - buildRules = ( - ); - dependencies = ( - C3FEC5456936C6187B8524BE /* PBXTargetDependency */, - B361D916D0D9478CEBCCB194 /* PBXTargetDependency */, - 470884EB5CF60CE0EE9DB6EE /* PBXTargetDependency */, - C679DF31865E8994EB9FF3A8 /* PBXTargetDependency */, - 597AC5141DD941EF7CDACCC5 /* PBXTargetDependency */, - 67A1D1E1FED91745EDA96C3E /* PBXTargetDependency */, - 4B25B32F1D89C5E158C8331A /* PBXTargetDependency */, - 0073BA28D4FD916D20F04F74 /* PBXTargetDependency */, - 0BA49104A34A8D7896E9882E /* PBXTargetDependency */, - 0BAC8CD9FDD4640303922A85 /* PBXTargetDependency */, - D9C00D60B7473D8C80DC41B1 /* PBXTargetDependency */, - 9557816F1C288E829259A841 /* PBXTargetDependency */, - 078CA1911D3E9BBDACA768C7 /* PBXTargetDependency */, - E14394DC375369022496EB91 /* PBXTargetDependency */, - 50C55A37345BF5C79B0B724F /* PBXTargetDependency */, - 6E07A063DBC6CCB26CA157E7 /* PBXTargetDependency */, - 077955227EBB7E8C64D6F56A /* PBXTargetDependency */, - 8AEBB66F831D51043D88869F /* PBXTargetDependency */, - 65DB4F9FB555B097100DAF88 /* PBXTargetDependency */, - 56F918F1487EA8627F78BECF /* PBXTargetDependency */, - 7F224C17F06B6D071BFCB52D /* PBXTargetDependency */, - 3B680DD8EBAA46AFDBC353B0 /* PBXTargetDependency */, - 9DDDB808257CA7E6873741B7 /* PBXTargetDependency */, - 2FC3271BF0ACE651BC4DB637 /* PBXTargetDependency */, - ); - name = cefclient_helper_app; - productName = "cefclient Helper"; - productReference = E5BBF422E9D920423158F973 /* cefclient Helper.app */; - productType = "com.apple.product-type.application"; - }; - EF59E18D1B94CB26A18E3A3E /* cef_unittests_helper_app */ = { - isa = PBXNativeTarget; - buildConfigurationList = C55EAE453ACD4BF4839354A4 /* Build configuration list for PBXNativeTarget "cef_unittests_helper_app" */; - buildPhases = ( - 486323A0EF1B8BEF51AFE250 /* Sources */, - C28AC5467575EA30992399FC /* Frameworks */, - BFEFD08C1BBEBBF67A1479FE /* Postbuild "Fix Framework Link" */, - FC00781F5CB1A05417F28E8C /* Postbuild "Tweak Info.plist" */, - 9308A67602FDE42160C8E44C /* Postbuild "Change Mach-O Flags" */, - 83404D3B1F90F336C021A2E4 /* Postbuild "Strip If Needed" */, - ); - buildRules = ( - ); - dependencies = ( - FA5AC5784CF82BFB7E445A9A /* PBXTargetDependency */, - BC1DA3A1A8DFBD458309DF84 /* PBXTargetDependency */, - 34874AC4FDC6FB72CF5ED754 /* PBXTargetDependency */, - DDCBA090E5F6FF449541DC7B /* PBXTargetDependency */, - 61A456F2E4CE1E590E747210 /* PBXTargetDependency */, - 6EE720636749E5E8D20D3C24 /* PBXTargetDependency */, - 2C8D5E18F97214B83BEEF6C8 /* PBXTargetDependency */, - 56118112E14FFBF55D8084EA /* PBXTargetDependency */, - 43379012EACDB04007B211F0 /* PBXTargetDependency */, - 8480066A6E189D3624BDD3A8 /* PBXTargetDependency */, - A55B35614B8A8FC163035C1F /* PBXTargetDependency */, - 4C8387146A53FC00CEF17B71 /* PBXTargetDependency */, - A97C19D15AADB7375DA5485B /* PBXTargetDependency */, - 75EC6347006D1C82D1B06767 /* PBXTargetDependency */, - F9BD1E0CF1BF1CE250FDCB42 /* PBXTargetDependency */, - ADCFE4A390ACB5E254E38CE6 /* PBXTargetDependency */, - 8EBF9843D6C38CD7C4AC69F1 /* PBXTargetDependency */, - 4781DDA43F8F114DA7235E0A /* PBXTargetDependency */, - 8427FB00951CA3A5F7D993B7 /* PBXTargetDependency */, - 0B2DA38336A0CD7301071411 /* PBXTargetDependency */, - A6C858D0BD86057FE8BB2887 /* PBXTargetDependency */, - C16A64F27789BF415AD72E91 /* PBXTargetDependency */, - E65DBA579EE92F66AC6A4E39 /* PBXTargetDependency */, - 6DACA229296F828AF8BE82B1 /* PBXTargetDependency */, - 85B644EEBF2C8180377F5192 /* PBXTargetDependency */, - FA1E0AA7915B8467B9684838 /* PBXTargetDependency */, - B9A773106F83A6413A6687D9 /* PBXTargetDependency */, - 7B0D02ED61E3BACDBE6F8E0E /* PBXTargetDependency */, - 0EEFA96B104BF2376354DA78 /* PBXTargetDependency */, - F48E6804BAFE55960848350C /* PBXTargetDependency */, - 54B1DFD416D553261C4028D5 /* PBXTargetDependency */, - 2CA9E7BBCC486304F39922B0 /* PBXTargetDependency */, - 6E14ACED0E6E4B5CFC38B4A0 /* PBXTargetDependency */, - 8A31E76F00A065F4571D0CCD /* PBXTargetDependency */, - 4C3F317B91120655483110A3 /* PBXTargetDependency */, - 6A02A30D7D8D7C69FAE0475D /* PBXTargetDependency */, - B7F2A5490315CF7FEED0A128 /* PBXTargetDependency */, - C982BD4CEA60C1EE560E1E0F /* PBXTargetDependency */, - 9B20F39FB9E5BE58F0110E5F /* PBXTargetDependency */, - ); - name = cef_unittests_helper_app; - productName = "cef_unittests Helper"; - productReference = E0F66F6372DC53DDA571C522 /* cef_unittests Helper.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - C2F20C4F45FBF5D7ACC93412 /* Project object */ = { - isa = PBXProject; - attributes = { - BuildIndependentTargetsInParallel = YES; - }; - buildConfigurationList = 705B3EDF846FDFBBD2B42764 /* Build configuration list for PBXProject "cef" */; - compatibilityVersion = "Xcode 3.2"; - hasScannedForEncodings = 1; - mainGroup = D926808B308378706FD7D1A3; - projectDirPath = ""; - projectReferences = ( - { - ProductGroup = 522233B92E9BC54056C720A5 /* Products */; - ProjectRef = 25EEC66C5B03F5672152ACCB /* all.xcodeproj */; - }, - { - ProductGroup = E026A76AD13F93DE7BF64A25 /* Products */; - ProjectRef = 79CF3557612C4997DAB1A862 /* allocator.xcodeproj */; - }, - { - ProductGroup = 1882AC3D3E4436D106A05D1E /* Products */; - ProjectRef = 1565CFD5145C22BAC85C3EEE /* base.xcodeproj */; - }, - { - ProductGroup = 4AF90D72B04F524EF024F0B4 /* Products */; - ProjectRef = 914996F06142B7006F4C1AC7 /* build_angle.xcodeproj */; - }, - { - ProductGroup = EDA42135948F78CB9DACAAAC /* Products */; - ProjectRef = 3D3157B668F5872BF7A22811 /* command_buffer.xcodeproj */; - }, - { - ProductGroup = C0D377AED2CD9427264853BA /* Products */; - ProjectRef = 81B31A421FA8B15344436AA7 /* common_audio.xcodeproj */; - }, - { - ProductGroup = C88A97A845DC6AA1133FCB60 /* Products */; - ProjectRef = 159546C2D7977EF25EFA7B40 /* common_video.xcodeproj */; - }, - { - ProductGroup = 14B091E8F66195D659065DE3 /* Products */; - ProjectRef = 63589532FDDE3888E6D68564 /* content.xcodeproj */; - }, - { - ProductGroup = 75F7B403FD5801BA5AFE0EB6 /* Products */; - ProjectRef = 4335E893FC259036D8785066 /* content_resources.xcodeproj */; - }, - { - ProductGroup = 855260D5F8EB9A5F5D90583B /* Products */; - ProjectRef = 1DBB070EBD1333BBE5C68D1C /* crypto.xcodeproj */; - }, - { - ProductGroup = 359DC2DF2DC84A5DF59E9DAB /* Products */; - ProjectRef = 21CD3E93FEA7E8ABD82BFBAF /* devtools_resources.xcodeproj */; - }, - { - ProductGroup = 7846595C5BF71D662A4872BA /* Products */; - ProjectRef = 993D5FB77B5591A0FFDF0D3A /* dynamic_annotations.xcodeproj */; - }, - { - ProductGroup = 355EF8BEF450D878E3BFBFA5 /* Products */; - ProjectRef = 2AA818CBAF5F61D7A21B18D7 /* expat.xcodeproj */; - }, - { - ProductGroup = 6CA7C7EBCDFF514D1291B57E /* Products */; - ProjectRef = 34C9C80A8A51D6228A02CE15 /* ffmpeg.xcodeproj */; - }, - { - ProductGroup = 3CBEE1BCA0F7BC9250684D95 /* Products */; - ProjectRef = 8ECFAA9E466819116DFF920F /* flac.xcodeproj */; - }, - { - ProductGroup = 3CEE93E380722D95E8075888 /* Products */; - ProjectRef = 33D2D9A353D54120D3468266 /* gl.xcodeproj */; - }, - { - ProductGroup = E10C0D8C1FD5C7E44E001D9A /* Products */; - ProjectRef = E430F79B1322631374180E88 /* glu.xcodeproj */; - }, - { - ProductGroup = 745BB341F5095532FA4D7E24 /* Products */; - ProjectRef = 40EA4C2F8133B05D9D7E5A83 /* gmock.xcodeproj */; - }, - { - ProductGroup = 0D308C0F1C74382E7D174B45 /* Products */; - ProjectRef = FE315AF8B75A20D4F79D2EFE /* googleurl.xcodeproj */; - }, - { - ProductGroup = 0E7682419CD1D4CFAE35608F /* Products */; - ProjectRef = 2402718FB1781B628D8E9890 /* gpu.xcodeproj */; - }, - { - ProductGroup = 1163FF8B98F887BD220732CF /* Products */; - ProjectRef = 2BDFA0D019DB383FCBE2863E /* gtest.xcodeproj */; - }, - { - ProductGroup = 6AC0B3F3686943C881540614 /* Products */; - ProjectRef = B1B0B00499622B5212B3B8C8 /* harfbuzz.xcodeproj */; - }, - { - ProductGroup = 0AE0B805F4C7418FC2BE7CBB /* Products */; - ProjectRef = EBDA2F288039C5E20D832C0F /* iccjpeg.xcodeproj */; - }, - { - ProductGroup = 876CF2BFEA22440C21B8445F /* Products */; - ProjectRef = 42BA615544865FC9F7795548 /* icu.xcodeproj */; - }, - { - ProductGroup = 8641E33E140AD05FA6EF538A /* Products */; - ProjectRef = 1C025E27C1B803BE216F4F86 /* ipc.xcodeproj */; - }, - { - ProductGroup = EE7A2CE9D2FEF5C88C3CD15F /* Products */; - ProjectRef = CD86FFEA2D5001FA726510BE /* JavaScriptCore.xcodeproj */; - }, - { - ProductGroup = D342E33851D57FDA0EEF1ECD /* Products */; - ProjectRef = C986618ECAB0A5C043D8BB3F /* jingle.xcodeproj */; - }, - { - ProductGroup = 3AF23DDB112C563E6F66BFA2 /* Products */; - ProjectRef = 0651D00FD6E7F704270E6F29 /* jsoncpp.xcodeproj */; - }, - { - ProductGroup = D06540FBE4AAE457E9C1029A /* Products */; - ProjectRef = 461BAAD82F8AB804176FDFE3 /* leveldatabase.xcodeproj */; - }, - { - ProductGroup = 88F70CD187AB20E99EB3666C /* Products */; - ProjectRef = B2F3D77B6647DF374CFCE5D4 /* libevent.xcodeproj */; - }, - { - ProductGroup = FB929E32ABBBF57701094854 /* Products */; - ProjectRef = 2D953328A837658D8BC680C6 /* libjingle.xcodeproj */; - }, - { - ProductGroup = EA116707259DA812076CECFB /* Products */; - ProjectRef = F6FC8D0B14E925438D497470 /* libjpeg.xcodeproj */; - }, - { - ProductGroup = B3020DDB0727745BB8CFA371 /* Products */; - ProjectRef = 913E0B3B78A79604B8375494 /* libpng.xcodeproj */; - }, - { - ProductGroup = B730FCB501E5A58141A4A7C5 /* Products */; - ProjectRef = BBB91956C816083526AB2EF2 /* libsrtp.xcodeproj */; - }, - { - ProductGroup = 2D7E46727E85457FD7C7E494 /* Products */; - ProjectRef = 334689EC756D47C76DABB010 /* libvpx.xcodeproj */; - }, - { - ProductGroup = AE3B4A403D2D6BCFA4296AFD /* Products */; - ProjectRef = 7C28C9975417680D544A5BA4 /* libwebp.xcodeproj */; - }, - { - ProductGroup = A74D756F1971EC0EDC5F1D39 /* Products */; - ProjectRef = D0856E7B20F81C035637FEEE /* libxml.xcodeproj */; - }, - { - ProductGroup = 6DCB4D40930F3E8F0137BEC9 /* Products */; - ProjectRef = D7A7DCA77B5D7E0417FA2EE7 /* libxslt.xcodeproj */; - }, - { - ProductGroup = F12E9AF2BA7517115998992F /* Products */; - ProjectRef = 10FB137FABDB2510091F240E /* libyuv.xcodeproj */; - }, - { - ProductGroup = 1F7CA0EA50BBAB521B321365 /* Products */; - ProjectRef = 9B4BBCC00C0C1A2BEEFA0D01 /* mach_override.xcodeproj */; - }, - { - ProductGroup = 9326958257DAA1843FADA0A0 /* Products */; - ProjectRef = 4F303C29F3D1E527A63C3797 /* media.xcodeproj */; - }, - { - ProductGroup = 21277E07B09DDCAFB11DD602 /* Products */; - ProjectRef = 8FC259076BAAC6707AF40AB9 /* modp_b64.xcodeproj */; - }, - { - ProductGroup = 9DB10F9640171D3C0B81E069 /* Products */; - ProjectRef = 5DA409E878B3995C3EB7E55B /* modules.xcodeproj */; - }, - { - ProductGroup = 696BE6E415443CFDD08142A5 /* Products */; - ProjectRef = C3F9A1466747A71994443EE8 /* net.xcodeproj */; - }, - { - ProductGroup = C54631913F021FCC1952873E /* Products */; - ProjectRef = FFF00D66C4A59FA632CF355D /* npapi.xcodeproj */; - }, - { - ProductGroup = CF97BE27D2381517A113E1D8 /* Products */; - ProjectRef = 1C1D2B476CB71FED19A90525 /* nss.xcodeproj */; - }, - { - ProductGroup = E1A4F9759B3EF4A5D45E6375 /* Products */; - ProjectRef = 6A3B8076CA7CD96C8E25A966 /* openmax.xcodeproj */; - }, - { - ProductGroup = B30A3443E29F5A775A662DC5 /* Products */; - ProjectRef = 6A8A5FC8599E16C4CE106A47 /* ots.xcodeproj */; - }, - { - ProductGroup = 55D65E95E695280545C49BFB /* Products */; - ProjectRef = 1193F2D58AEF3615DD79DEF7 /* Platform.xcodeproj */; - }, - { - ProductGroup = 294295DEA98D91E039FB0B17 /* Products */; - ProjectRef = 4EB85F5F7EB3A7B3221230A6 /* ppapi.xcodeproj */; - }, - { - ProductGroup = DE95397154FFF95C3B71D9D0 /* Products */; - ProjectRef = 8A8806D9491FFB692E6B67CE /* ppapi_internal.xcodeproj */; - }, - { - ProductGroup = BFD3D49A6960822DE76D2EE3 /* Products */; - ProjectRef = D70F2AD41B444A90D0917EFB /* printing.xcodeproj */; - }, - { - ProductGroup = 7AF118EBD6F7476696974ECF /* Products */; - ProjectRef = C7EE4C2E678C3D80B0A02DA2 /* protobuf.xcodeproj */; - }, - { - ProductGroup = 18CA616B6D7C7067CF56A158 /* Products */; - ProjectRef = F826FF98E5F795F91C77DDCA /* sdch.xcodeproj */; - }, - { - ProductGroup = F2110F4DC49E005B1E51B67D /* Products */; - ProjectRef = 6991125C79C2BFE97903DCF9 /* sfntly.xcodeproj */; - }, - { - ProductGroup = 26144774FE45D7ABF19C9895 /* Products */; - ProjectRef = 941319F6C213FD2E5AF1379C /* skia.xcodeproj */; - }, - { - ProductGroup = 3D0AB27073899706187D4089 /* Products */; - ProjectRef = 71682F05AB957D4FB877358C /* speech_proto.xcodeproj */; - }, - { - ProductGroup = 3ED2B5AE87A1D0442B901B78 /* Products */; - ProjectRef = F80705F721F23C071C68CBF0 /* speex.xcodeproj */; - }, - { - ProductGroup = 4B8640B24DEEFFAECF63C786 /* Products */; - ProjectRef = E628C159157AD577B39C0B42 /* sql.xcodeproj */; - }, - { - ProductGroup = D6F45F8D700242BBD4C31548 /* Products */; - ProjectRef = 3E3D7C67B9F21F228D244464 /* sqlite.xcodeproj */; - }, - { - ProductGroup = D7C91B40183481DDB56892F9 /* Products */; - ProjectRef = 0896A4568A6EF547A818E252 /* ssl.xcodeproj */; - }, - { - ProductGroup = 073C9061E63852E216E02CCE /* Products */; - ProjectRef = 0A252C48128C7984A5A7D199 /* sudden_motion_sensor.xcodeproj */; - }, - { - ProductGroup = 209E0FC2D20323A6D349A006 /* Products */; - ProjectRef = A2154ED96A97D207C4234EB2 /* surface.xcodeproj */; - }, - { - ProductGroup = F0CD083F623E6A718A2A22F5 /* Products */; - ProjectRef = 074D7464D208F959F4EFA456 /* system_wrappers.xcodeproj */; - }, - { - ProductGroup = BBB306902212C99A76FF1BB5 /* Products */; - ProjectRef = 36EE862F886D7E5F8DD66BF6 /* ui.xcodeproj */; - }, - { - ProductGroup = 224CE785D57ED4345CAA93FE /* Products */; - ProjectRef = D828014EA35F6FF11305AC18 /* ui_strings.xcodeproj */; - }, - { - ProductGroup = 872ECB232111A77A324C2A9F /* Products */; - ProjectRef = 55DB375A3CC916F84D8CCE4A /* v8.xcodeproj */; - }, - { - ProductGroup = 5DCFD674AFE14452D5CE8922 /* Products */; - ProjectRef = D750300952CFEECA77BB2E09 /* video_engine.xcodeproj */; - }, - { - ProductGroup = 625356F8D3FBA28D8CB3DE44 /* Products */; - ProjectRef = C29ADD61716033F36EC6FA4A /* voice_engine.xcodeproj */; - }, - { - ProductGroup = B73EFEBDF0CF6CD4FD06A18D /* Products */; - ProjectRef = DC72D0B7D1A6B663CB335034 /* WebCore.xcodeproj */; - }, - { - ProductGroup = 524BF9BB09F0FBBD3F465B97 /* Products */; - ProjectRef = 87F45A638FBE61B6FDF891DC /* WebKit.xcodeproj */; - }, - { - ProductGroup = 65CE2FCEC207BBF0A8C37B4B /* Products */; - ProjectRef = AE72EF7CAB16AAED4E988E57 /* webkit_support.xcodeproj */; - }, - { - ProductGroup = 3F0AA54C36F7A9444E4F42A4 /* Products */; - ProjectRef = 421637DBD3560D81535E4C3A /* WTF.xcodeproj */; - }, - { - ProductGroup = 057B966FE29A268A6863588E /* Products */; - ProjectRef = 2DF0099F0EE8FE9B392AACC4 /* zlib.xcodeproj */; - }, - ); - projectRoot = ""; - targets = ( - 26784BB866DFCCEB6B563D28 /* All */, - E921F9B822AD67F873DF6E09 /* Run All Tests */, - A9EF68F8BF3234583509BD43 /* Atom */, - 0493E18E77BAF61DDB854B47 /* cefclient */, - DA259FAFFD7136C8A5C881A8 /* cef_unittests */, - EF3BCECA3610152FBA76BFFF /* Run cef_unittests */, - 26DD2CB0340D816F3DF64EC9 /* libcef */, - 94BAF60C7C90712E7F239E35 /* libcef_dll_wrapper */, - 2E847C594D99442F54D6FA7B /* cef_strings */, - F506A5805463407F45E5D21B /* cef_locales */, - 667F41D8C9AE14BC19339FE5 /* cef_resources */, - 34C94585C2266BDAEE3DB526 /* cef_pak */, - 8DBADDE353DC46B377FC4192 /* libcef_static */, - DA98FB3E241B73BA47200DFF /* AtomHelperApp */, - DCB001A34DDB8A1DBDB1A9C4 /* cefclient_helper_app */, - EF59E18D1B94CB26A18E3A3E /* cef_unittests_helper_app */, - EEA6DA7521B65D3FCF65806C /* Run cef_unittests_helper_app */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXReferenceProxy section */ - 035C1AFA36256CDAE5AB3302 /* libfileapi.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libfileapi.a; - remoteRef = 3A38BC662343C7F360F72E2A /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 038F9C52C4A43A403A11E976 /* libtest_support_content.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libtest_support_content.a; - remoteRef = 44509FF661D7982110D48438 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 03E1F4E49E9F8F568B054A97 /* libcontent_utility.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_utility.a; - remoteRef = 76C4B41D98B415764747B5A1 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 0520B359A318A0CE6636BC65 /* ppapi_example_vc.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_vc.bundle; - remoteRef = D718DF3AA3C9884E1CD5D695 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 09633865ED0F4E9A65F5413F /* Content Shell.app */ = { - isa = PBXReferenceProxy; - fileType = wrapper.application; - path = "Content Shell.app"; - remoteRef = 9CB97F3375016342AE4A3D92 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 098B47A6E50F158627CFAF1D /* leveldb_write_batch_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_write_batch_test; - remoteRef = CC525BAEE75FC1660D0557D9 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 0CB1640F4F4FB4AEB3B59E60 /* libaec.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libaec.a; - remoteRef = 4098E63EB9705E8E4740D6B1 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 0D13E88698DFD01971DF95F0 /* ppapi_example_ime.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_ime.bundle; - remoteRef = 27CF927C0087D5D5173E4B53 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 0D1ACC57664C588B614EA509 /* Content Shell Framework.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = "Content Shell Framework.framework"; - remoteRef = BEB773F063F9834CE9948EA8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 0E39BDD243670D990FC3D5F6 /* leveldb_log_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_log_test; - remoteRef = A838DB9897203FB9DCA78D7C /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 0E7983D75D8A30A5BF897AC1 /* libskia_opts_ssse3.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libskia_opts_ssse3.a; - remoteRef = D8A2AFC6C1C96EF5687B4C5D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 0EF0DF8FF56F5E3BCFAA3D4D /* libbase_i18n.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libbase_i18n.a; - remoteRef = D48D9800B6274BD37EFBD034 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 0F34905BD3FE48763B983E73 /* media_bench */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = media_bench; - remoteRef = 97DB7DF7B33FB161025F0449 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 10BC44DEA8FC22DDF2FA034F /* libgmock.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgmock.a; - remoteRef = 4527000AD737F95CA3728E20 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 11577ADA978F291FD88572E3 /* fetch_client */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = fetch_client; - remoteRef = B1755058A9FA0E05D519DC19 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 12423B699EEA302F59D5E5D2 /* libvideo_processing.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libvideo_processing.a; - remoteRef = 42DB37E3F89630F236D4F73C /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 14D6BA9BB146A4F2A2B2247A /* libwebcore_bindings.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebcore_bindings.a; - remoteRef = 69E1058B4FFD87138ED365C5 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 151440EC37643EF77F8F3361 /* ppapi_example_audio.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_audio.bundle; - remoteRef = 872D7527C9712E7D5D836C98 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 16534921BF1B3E5292745B4E /* libjingle_p2p.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libjingle_p2p.a; - remoteRef = 8C1E595BB360EEF7A3A9964E /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 16FE174CC7907A923C79B6AD /* sql_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = sql_unittests; - remoteRef = 49196A5B921639F4C0C35877 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 17FFBEFCC8836FBB73E582A9 /* libiLBC.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libiLBC.a; - remoteRef = 39269951A5F848887F20BDA5 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1858A88FAD19882F6EBAB134 /* libnss_static.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libnss_static.a; - remoteRef = 44A32A5D1BE0B65C384AB3BF /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 188573DF6F5F630250FBAA30 /* mksnapshot */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = mksnapshot; - remoteRef = AF33AE17C2418B0C2CA2DE38 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 18E4DDFEECA23064607EC5C0 /* leveldb_crc32c_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_crc32c_test; - remoteRef = 167D3048DDFA1422483C94EC /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 19A90B3A2AC4765B210294B8 /* libprinting.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libprinting.a; - remoteRef = 5FABE8E2A745643674348F33 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 19F011132AA33EFA48C6040F /* libcontent_shell_lib.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_shell_lib.a; - remoteRef = E8D0319DAEA64A19C25591BC /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1A83EB2DBE27D347EF022E73 /* libgtest.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgtest.a; - remoteRef = 7F13126F9BA59D5B85402575 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1B40BA02D77EA14446AE0E66 /* leveldb_cache_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_cache_test; - remoteRef = 7F3DBFB8573C42F0498440A2 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1B42CA3D41E586DB8B43EE68 /* libipc.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libipc.a; - remoteRef = 7C455153F0AC479787C35F06 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1C373555E11300EB4535B7AC /* ppapi_example_cc_stub.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_cc_stub.bundle; - remoteRef = 46EDEFFBD453D96F60F75D10 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1C999732FF6506A36E60DA85 /* libskia.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libskia.a; - remoteRef = F3B91E976B3A5B52D0B5BCC9 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1DBD318A565F9970BC623441 /* ppapi_example_video_decode.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_video_decode.bundle; - remoteRef = 01D8BC3A545B287109F847A1 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1E7BCAB13DD3E553324824B7 /* libagc.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libagc.a; - remoteRef = 5433D0AD4B4F9E7327634029 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1E92EAF020A7823CBF886789 /* ppapi_example_audio_input.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_audio_input.bundle; - remoteRef = 6DD4434E22750DA8C342D211 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1F34CFD1E43CF0AD3D60FE45 /* libnet.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libnet.a; - remoteRef = 589837BF39218883DAEF0C04 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 1FA65F55B2768A2CDB7C17E9 /* libtest_support_perf.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libtest_support_perf.a; - remoteRef = 4C2FCB3F63A16B39F1505548 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 2146F4980A38504DBC71F58C /* PPAPIExample.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = PPAPIExample.bundle; - remoteRef = A4867B9BA0C68A51B75162A3 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 222C454B32CA6D3246827AAD /* libiSAC.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libiSAC.a; - remoteRef = 2931EF7FE0AD887B4799662B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 231941D6606B6153490120F0 /* libxml2.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libxml2.a; - remoteRef = 709ED43691DC25D8235B765C /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 25436BD64F6B22C9A36C0344 /* libffmpeg.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libffmpeg.a; - remoteRef = AD16D0CFAB96E526A83F04BD /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 25F438E765C88ED06989C4EE /* ffmpeg_regression_tests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = ffmpeg_regression_tests; - remoteRef = 2A16A18FB04BCB1BF32A04A9 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 270F097F583DBB970DC90625 /* dns_fuzz_stub */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = dns_fuzz_stub; - remoteRef = 651987B881549F2B0F6424B1 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 279E280A5DEEDC4C69880518 /* libwebrtc_jpeg.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebrtc_jpeg.a; - remoteRef = 4D16818AA685157645B21643 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 281602B1CB941C0039247C5F /* libgpu_ipc.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgpu_ipc.a; - remoteRef = 8DDA7AE164862557CC7B64AB /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 29AE609668619FB64D9573DC /* libcontent_worker.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_worker.a; - remoteRef = 1FC857C93D19F398184995C6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 2C1351997F60F82884D6DAC4 /* libwebkit_gpu.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebkit_gpu.a; - remoteRef = BEDF628093C51AE2763ECBEC /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 2C707A0DCA7193E218AE2BB4 /* libwebrtc_utility.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebrtc_utility.a; - remoteRef = 8C31A2A4AE65323F53620FB0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 2C849ED35F93B7313A6B3A26 /* ppapi_example_c_stub.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_c_stub.bundle; - remoteRef = B8CE858DEE0C708AFC75CD47 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 2DC399D70FCD7BBC202A7277 /* leveldb_skiplist_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_skiplist_test; - remoteRef = 45BEFF5BB82EAB50C6CA544D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 2F4B7D113B38123301170B05 /* libjingle_peerconnection.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libjingle_peerconnection.a; - remoteRef = B86EBE98D6127C3FC0B004AB /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31388FCDD842A75BAC59D1A9 /* leveldb_arena_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_arena_test; - remoteRef = 124694D125B6AA97E516621B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 325CBE7F77333A222059F4FB /* libmedia_test_support.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libmedia_test_support.a; - remoteRef = 45970FE6B27FD5564D1CE7C3 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 32814E763645F6CCB2CD720E /* crl_set_dump */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = crl_set_dump; - remoteRef = 91B7BC723DF4CD348E0F263E /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 33601FF4D83436341934DA90 /* libyuv_convert_simd_x86.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libyuv_convert_simd_x86.a; - remoteRef = A57B904872400D0F68ED4B3E /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 338DD3A741C5E6F0A7D1AC6F /* libcontent_ppapi_plugin.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_ppapi_plugin.a; - remoteRef = B8FD255232BF834B02FC2FA8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 34087D210DD3578FDC3F4176 /* libquota.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libquota.a; - remoteRef = 88861E8351FA2DAEDCA6E49D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 35BDDB08E575F02E3D8A6351 /* libui.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libui.a; - remoteRef = 01EFAD5C91DC26388FD529A8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3631B37F09E89E2035707B42 /* libleveldatabase.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libleveldatabase.a; - remoteRef = 12EC3B9607993E6244B3D851 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3AE65874B3D2B86C62583370 /* libsrtp.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libsrtp.a; - remoteRef = 9167451208F2ABE2A2BA12B4 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3B0ACFDE6A97007CA3F45358 /* libtest_support_ipc.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libtest_support_ipc.a; - remoteRef = 1E6565D9CBC613B8FFB37B0D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3B2C2E73B999F5A73B947FAA /* ppapi_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = ppapi_unittests; - remoteRef = 28C8C15DF5DC8C7412A2E632 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3D4E9841FF43307DE368DD09 /* libv8_nosnapshot.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libv8_nosnapshot.a; - remoteRef = 423AAC27E17A7FAE4FD689D8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3D8ACFBFC35FF085E7365C21 /* simple_decoder */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = simple_decoder; - remoteRef = C4D2AAE1DACB5CA92EC17B30 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3E85B3AAEDB5CB93E736DEA9 /* libcommand_buffer_client.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcommand_buffer_client.a; - remoteRef = B19F602B2DD707D79E79C261 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3F4CEF83D8D4C2FDCC104362 /* stress_cache */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = stress_cache; - remoteRef = 8ABBE5A96D4E6C7D245E2E01 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3F6D427ED8100B09055510A2 /* leveldb_env_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_env_test; - remoteRef = 5F7D3DDC4D2A1A665F30E012 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3F6F4D70548B8A2806B4743C /* libleveldb_testutil.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libleveldb_testutil.a; - remoteRef = 42554B8506C574C0E79EBD5F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 40D8450E3A3D3953B2131E33 /* libv8_snapshot.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libv8_snapshot.a; - remoteRef = DCC90410740FBFD94D59B004 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 41802089CC60B523FD636494 /* libvideo_capture_module.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libvideo_capture_module.a; - remoteRef = B052BE67662976953475D96C /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 44995BB877107C1B83D23200 /* libaudio_conference_mixer.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libaudio_conference_mixer.a; - remoteRef = DC08B008E4156961FC70756D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 45653EFBE55EA6DAD77F852E /* ppapi_example_paint_manager.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_paint_manager.bundle; - remoteRef = B09ADD058FE4CFBC58B6E594 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4690FA9F614135E1BCC39B3B /* libwebp_dec.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebp_dec.a; - remoteRef = 47C9AD12CF5281C8DAEF2361 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 469881A7AA01977748606E75 /* libyuv_convert.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libyuv_convert.a; - remoteRef = E57D6B6F51871058DF7165BD /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 47B457ECEE53FA38DB10AA91 /* libgles2_c_lib.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgles2_c_lib.a; - remoteRef = E53487F87235833D9F96ABAD /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4965FA5E4825686FE1C34124 /* libv8-i18n.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = "libv8-i18n.a"; - remoteRef = D8C1372E0BE4ADB935C582F3 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 49FDFDC518AA7089085453C4 /* libtranslator_glsl.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libtranslator_glsl.a; - remoteRef = 6B24F6AA70A4F52E2DE745AC /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4A7008C1860BAEE50202FF31 /* leveldb_dbformat_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_dbformat_test; - remoteRef = 812B3A8362856EB4B548E8CD /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4AB21D2D37F3E9F8AB2006E2 /* media_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = media_unittests; - remoteRef = 8EF99DA1EECF7C99E4A19B82 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4AD7CDE66D187C0F40782BF2 /* run_testserver */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = run_testserver; - remoteRef = 2E733A53CA6D6D70433EE065 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4ADC86031782B27551EC2E38 /* ppapi_example_file_chooser.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_file_chooser.bundle; - remoteRef = 5648E7C7E6D4CE8421E1FD66 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4BF89795A541A4D4674AE808 /* ppapi_example_mouse_cursor.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_mouse_cursor.bundle; - remoteRef = BBC054C15CE32203F4DB15F1 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 50795C98B83A7CE571E4664B /* libwebkit_support_common.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebkit_support_common.a; - remoteRef = 3200479F5CDB332D6B9B6D05 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 508555DF81226478DF9A01DE /* libbitrate_controller.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libbitrate_controller.a; - remoteRef = 0954812B221659C47A0E46D0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 51D58396CAC439AD5F352B7B /* libicudata.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libicudata.a; - remoteRef = 406224E007CB5E54C49B1A1E /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 51FB1488787DE290A94E5A7B /* ffmpeg_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = ffmpeg_unittests; - remoteRef = B77C9C403D2BCC80226D3AED /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 52125294678FD58D1610131B /* libaudio_coding_module.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libaudio_coding_module.a; - remoteRef = 297067644368E3B8004C602F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 532E866DC0DA884190819DA5 /* ui_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = ui_unittests; - remoteRef = E37A892E15211665139F509B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 53C1E5EAC4E420FFB5E93F71 /* libmodp_b64.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libmodp_b64.a; - remoteRef = 7DDB4F5E3B2006CD96097F4A /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 54CF46DE6F3E2690DDB3A91F /* libicuuc.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libicuuc.a; - remoteRef = 052D505D84FC9587CE159D29 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 54FB30231426CF8A98CB55CC /* libmedia.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libmedia.a; - remoteRef = 5E44809EE7B1E960E4DC2981 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 55099067C5B3B3719C34A3C6 /* libudp_transport.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libudp_transport.a; - remoteRef = 9FD5E8ACEE7AEA14F92940B4 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 556EEC1C9B7F92DD0FDA2D84 /* ppapi_example_mouse_lock.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_mouse_lock.bundle; - remoteRef = 33A64AF3FF2805E00CED7C48 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 55D519F24BC4D5CCFE6CB241 /* net_perftests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = net_perftests; - remoteRef = E00C4BE24AF64ECC61BA16EC /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 56EC778DB94C3D3BC59A1FF6 /* ppapi_perftests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = ppapi_perftests; - remoteRef = 9BB2EA43EF4A2534073D2F19 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 57951AF27EC4AEC7499B8E1E /* libjingle_glue.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libjingle_glue.a; - remoteRef = A5BF4F208A631E61975C2ED8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 59713494F5DE6C0FDA8AC1D7 /* libcrnss.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcrnss.a; - remoteRef = 0EBEBDC9B06D0BD168B413BF /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 59D9F57B61ABC9BBFCBF410D /* leveldb_corruption_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_corruption_test; - remoteRef = D30F83195C6CC56FD1465A95 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5ADF6FC0952597ED22A12929 /* libcontent_browser.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_browser.a; - remoteRef = 6F05A6E2CBAF5680F76959D0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5BB4D9F4524105F699CA6CB2 /* v8_shell */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = v8_shell; - remoteRef = F0B3F4EA11C34E3E9F3138E9 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5BB57088018F375BCDD62765 /* libharfbuzz-ng.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = "libharfbuzz-ng.a"; - remoteRef = 212CA76ED76EC538C52B1239 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5C297D97F04A9FE35F576C2F /* ppapi_example_printing.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_printing.bundle; - remoteRef = 950187467EC1114941B845B7 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5C700F1C23E9A371A3D0CED7 /* ppapi_tests.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_tests.bundle; - remoteRef = C83E28FF66C71E7DA92029D0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5D556B1739ACFBD9D8902528 /* leveldb_db_bench */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_db_bench; - remoteRef = 17567AD6C66622AB5A38047D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5E776449B0DD985AA3A92196 /* librtp_rtcp.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = librtp_rtcp.a; - remoteRef = C66F2E0108250010242F612B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5F32C68901D0E2D38FC3B717 /* libtess.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libtess.a; - remoteRef = E578090655E4B2338FA246EB /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5F6FFD63F4F6EB981AD41AF5 /* libG711.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libG711.a; - remoteRef = B0F6A081E0B0FD792ADF32E4 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 5FEB3CC6289A9674F13CC926 /* fetch_server */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = fetch_server; - remoteRef = 4294C7F14658D1FC2ADA5776 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 61692EC9A96F57D2E7F4FFEC /* libgles2_implementation_client_side_arrays_no_check.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgles2_implementation_client_side_arrays_no_check.a; - remoteRef = A245AB91418B85BB3A335B84 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 62D22A4533A0F0117E8A48B9 /* scaler_bench */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = scaler_bench; - remoteRef = D8DA17F3E65342FA50A5E9E3 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 6385D313EA67413A056C5B94 /* libvideo_processing_sse2.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libvideo_processing_sse2.a; - remoteRef = 79C1FA1CFA8D0C21198F7735 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 6454259BDFA3FECE94D1C1AE /* libdatabase.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libdatabase.a; - remoteRef = 306D1ADD6A8D8C87CD8C414A /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 648860494CFE2034D2C49E9B /* libmedia_file.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libmedia_file.a; - remoteRef = 95EF8E92DDC64A7588A4669F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 64F841BCD64DF489F9FD7045 /* leveldb_db_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_db_test; - remoteRef = 157BA94EB126504F6E91B9B6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 65E4C9298E5BDF5797ED3622 /* libpreparser_lib.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libpreparser_lib.a; - remoteRef = 511E3D5D251A5DA16BB0B44C /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 66166FA92F25B0DEEFA6A67B /* crypto_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = crypto_unittests; - remoteRef = B19F5840640B11C577C20C87 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 66396C6EFF9BDBC369436179 /* libtest_support_base.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libtest_support_base.a; - remoteRef = 20EDE7E4E59B516C67A2BE1B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 67F31BA941D7E94E56456F3B /* libblob.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libblob.a; - remoteRef = 078058CEFC1E73BC5238EDCE /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 68CC739E8547E5DFAE8D1FB6 /* libcrnspr.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcrnspr.a; - remoteRef = A9FBF3B9709C9F899FA16189 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 6A7B02C22238DAA06DCF08A2 /* libcommand_buffer_service.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcommand_buffer_service.a; - remoteRef = AF5FF72F98C5682F4C2AED38 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 6BF642FBB4D4C46EE72E5A9C /* content_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = content_unittests; - remoteRef = 203229A7B81AC4C1C4E604F5 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 6C2F171B97F577E374A8FAA5 /* libdom_storage.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libdom_storage.a; - remoteRef = 666A5DF91CA38763B4443DB0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 6CE7806BDE6763DCD46EBCD5 /* libwebcore_platform.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebcore_platform.a; - remoteRef = 0A4A17C53C83FF99C5333C3A /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 6EB049F6609DE833AF093CA6 /* libil.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libil.a; - remoteRef = BE42A98CD0C23A35A52230D4 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 6EC88F387B997B180C0EC59D /* libtranslator_common.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libtranslator_common.a; - remoteRef = 1BBC83A06799BEA58B9F13B8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 6F1D49D6CC8D5B19C5B5F7F4 /* ppapi_example_post_message.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_post_message.bundle; - remoteRef = 6E73100767B8F3ADC4FC34E1 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 72FF378E500352A3FE8EEBF4 /* libbase.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libbase.a; - remoteRef = A9C9A31586BDFC0A2E29B78F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 76364D7D679109D4EF2C5D78 /* libevent.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libevent.a; - remoteRef = 0E9ACC4A0A33DA5FE9B90DF0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7652B3C9D954E11920222382 /* libwebrtc_libyuv.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebrtc_libyuv.a; - remoteRef = 36E86A8C41ED02B3B3FB9646 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 77967929794A8C9FAF7C3650 /* libspeech_proto.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libspeech_proto.a; - remoteRef = BBFF9499765B7B7724710183 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 77B8699CF89F70FBB168FD2F /* libsql.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libsql.a; - remoteRef = DA52B0805D9DECC2A0FE2D83 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7B21CBD334DD8DE180E71548 /* libppapi_shared.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libppapi_shared.a; - remoteRef = EF069F559439835BDE70DD0C /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7B4E766CE33B391FD5965AC9 /* libCNG.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libCNG.a; - remoteRef = AA259A8BD26170F64A997497 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7C00C2577296D3966E61FE2E /* ppapi_example_scroll.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_scroll.bundle; - remoteRef = 6CFCD1A94EA1A27FA4A881B8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7CF5A3CF60F25BA53D943E4D /* dnssec_chain_verify */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = dnssec_chain_verify; - remoteRef = 03E5F7D9598CA2D9C71AB275 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7D09C922698D218271E813C4 /* jingle_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = jingle_unittests; - remoteRef = 8ABEE84F655F3535F2532625 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7DFA5E6BE0D6213823703DE1 /* libwebp_utils.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebp_utils.a; - remoteRef = B925FCBDCEF3C3E55AD423A5 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7E2AB0DD9FB567A6ABF1527D /* base_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = base_unittests; - remoteRef = B25167DDF781A3E8C2D9C814 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7F9E6BE9EC02F6F4CA505DA6 /* libsudden_motion_sensor.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libsudden_motion_sensor.a; - remoteRef = 5A9FC87E9BA409E38603C7D6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7FD04038A230D56812EFC77C /* libsdch.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libsdch.a; - remoteRef = E8CCC11172FE5D355217C99D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7FDD976D13F31E5F969FF6F2 /* libG722.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libG722.a; - remoteRef = 596D710A621CA0838B632011 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 814B0A4056F5CC5CD72E4308 /* ppapi_example_gamepad.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_gamepad.bundle; - remoteRef = 1542D0F0CB8116170CA9B935 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 819DCC59DB3C3F90565A2D0B /* libcontent_app.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_app.a; - remoteRef = 75E8621E1E0B1FD3D445D1DC /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 824E7A6946DF27DEC5C519B5 /* content_browsertests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = content_browsertests; - remoteRef = DA4E220FF77AA30D6BFF897F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 84D084EB8AED55509F9E5E99 /* libNetEq.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libNetEq.a; - remoteRef = E0313043359ABEA6A2653261 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 855A63411CC69C553F60E233 /* libyuv_convert_simd_arm.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libyuv_convert_simd_arm.a; - remoteRef = 8AAF4DDB7BE16A173B8C7BBA /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 8706630C78544D75CEB14721 /* libPCM16B.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libPCM16B.a; - remoteRef = BCEE39A5F60EA1FFE3B09044 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 8725C0D8895B52CE87B9AE29 /* tld_cleanup */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = tld_cleanup; - remoteRef = 01669EAF0458A34F2C0B5BE2 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 872BC5E7AD7B237BB766949C /* libexpat.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libexpat.a; - remoteRef = A505B929CFEBA66CADD67D25 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 8766E29593091A172075AC50 /* libbase_static_win64.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libbase_static_win64.a; - remoteRef = 265CD11A29815A994C588508 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 8796C04D2F5E75DABA00CF5A /* libgles2_implementation_client_side_arrays.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgles2_implementation_client_side_arrays.a; - remoteRef = 02D4896094B6AE5EB580D3BF /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 89AA68583C800AD48D8910B9 /* libaecm.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libaecm.a; - remoteRef = D8104A799E0347717B762D56 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 8A972F262B243A199E70827A /* libyuv.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libyuv.a; - remoteRef = 05F9047A2B7E060731C636A0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 8AB95AF34C0769AA29C00D81 /* protoc */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = protoc; - remoteRef = D77322942ECE7F8A9ADFBCB1 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 8B282EDEF149A2A957FC5891 /* libwebkit_media.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebkit_media.a; - remoteRef = CA2C0F6230A89D42A7514C82 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 8D5761F6A0D523F7AA92BA0B /* libaudio_device.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libaudio_device.a; - remoteRef = 34472E5A5C84919C6A988764 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 8DBB27495FD5C44CEEF44483 /* libppapi_cpp_objects.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libppapi_cpp_objects.a; - remoteRef = DB0CBDD952FE2503D928B4C4 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 909D528CC75B31A615278676 /* libwebp_dsp.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebp_dsp.a; - remoteRef = 4FBF1072304C087A8596CC27 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 91833DED3D99DF0B2E532040 /* libgles2_cmd_helper.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgles2_cmd_helper.a; - remoteRef = 775DA362D42F421F68FC39F8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 92D8EE4C39482EEDE27C545D /* libwebkit_support.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebkit_support.a; - remoteRef = D7A26746AC6F4D64A9C44B32 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 93032758CCEA393AF6F03221 /* libui_test_support.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libui_test_support.a; - remoteRef = C4F7427774574D91E25D3B31 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 9427891299B218D591E06C60 /* libgmock_main.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgmock_main.a; - remoteRef = DCAC63CB6D0B6A9358CCD753 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 966078E69F34CDDB98FA7FE0 /* googleurl_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = googleurl_unittests; - remoteRef = 5086657C5C041E82FE233E89 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 9718AEB2EBE47349877370D9 /* libapm_util.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libapm_util.a; - remoteRef = E51931D5F2DFA1C8B36B098A /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 97ADD3FE37990403BF1A2C35 /* leveldb_version_edit_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_version_edit_test; - remoteRef = 1E70F8589CAC6E5BA6586531 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 98BC68C30AAE03AA50B0AFBA /* libaudio_processing.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libaudio_processing.a; - remoteRef = 7CCE93D76101424C3B8BBC36 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 9BA3259F6DDAFB8F88C9E3BC /* leveldb_filename_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_filename_test; - remoteRef = 3C8D20728FFF6B0E47817978 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 9C56F3341074BDEBBDF0317D /* ipc_tests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = ipc_tests; - remoteRef = 788F8EC08840C2A970DB8523 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 9E3EA75D29A3C66D3E96AD23 /* libvpx.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libvpx.a; - remoteRef = 332A124E63C41FB4EEE401A6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 9E7793E9F576458BDD0FDC07 /* libwebcore_html.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebcore_html.a; - remoteRef = 09839A215E44C25239DE4E58 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 9FFA44978A353086446A547F /* leveldb_table_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_table_test; - remoteRef = 3584755236AA6009AAB2975D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A10A80D34F695765402364FE /* libwebkit_platform.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebkit_platform.a; - remoteRef = CFFE5595A014867EF71B19AE /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A1ED3E139080E96DF8598E9C /* libhttp_server.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libhttp_server.a; - remoteRef = E4FC8C7B2CB0A01B72282772 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A233A9E0F2972D84C108ED2A /* liballocator.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = liballocator.a; - remoteRef = 583DD2D919F2747C04D9ACD9 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A273E1A508576CCE31BDA52A /* libdynamic_annotations.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libdynamic_annotations.a; - remoteRef = 3BBAB5EA78264BA664C52847 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A3459879EAAEA6159327E0AA /* libcontent_common.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_common.a; - remoteRef = 3B04A9CD0C2DBDD0587B37FD /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A3AEB897C9125806F2A3F2E0 /* libsqlite3.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libsqlite3.a; - remoteRef = F3197215D82CADBA7F64F2CC /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A48CC24A6E16EDFACDF20C3C /* net_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = net_unittests; - remoteRef = 69906B47CD2CEF046835C99E /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A4D2CF33E3C3DAB91EDF8525 /* libwebkit_user_agent.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebkit_user_agent.a; - remoteRef = C14678C5565E6CEC1B714B95 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A522DCC2F11AB53EB593778D /* libppapi_gles2.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libppapi_gles2.a; - remoteRef = B094D1FE687DFE9FD89C3C13 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A6EA5F801A212058E50C26BB /* libvoice_engine_core.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libvoice_engine_core.a; - remoteRef = AB5E4498C8D560A9ADE9D2C9 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A8210CD6DD0487DCD90423F1 /* libyarr.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libyarr.a; - remoteRef = 03A2ACB8E4D5C90024B12502 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A92D4D8C36225CC694E6249F /* libwebcore_test_support.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebcore_test_support.a; - remoteRef = 96B2FC72D8ED5C8B24DAA3B8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - A9C070899E89D194B452F2FF /* ppapi_example_flash_topmost.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_flash_topmost.bundle; - remoteRef = 3B49E618212E1AB75C4C0A3F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - AA529CAE1A9752141B3D6AA0 /* libwebcore_remaining.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebcore_remaining.a; - remoteRef = F65A6C40E27DECB93742ECDF /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - AA9C990C6F0804F225B3E5F3 /* libchrome_zlib.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libchrome_zlib.a; - remoteRef = 02E8CF2E38D6F6D963B444BB /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - AADC551C1F61A7F0AF341714 /* libaec_sse2.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libaec_sse2.a; - remoteRef = 195F6D5F9F63FEC3597AC35B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - AB208F3EF428319141B9B3A7 /* liballocator_extension_thunks.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = liballocator_extension_thunks.a; - remoteRef = 68D942F582DB08C170E75A6C /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - ACD648B6FF476EEF5D9024F6 /* gdig */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = gdig; - remoteRef = E4C22E4AF63D445BFE0803D2 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - AE79CC2DBE576E182EE2D94C /* libcommand_buffer_common.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcommand_buffer_common.a; - remoteRef = E074AF527176C4C382C92E55 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B0D1337B3DE31CF644918BEB /* libgoogleurl.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgoogleurl.a; - remoteRef = 7A417E8CD8AAEE73461A62BD /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B104E9FB51B61FDBF8A2306B /* libjpeg_turbo.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libjpeg_turbo.a; - remoteRef = 22A9936BAE6B666AF9EA5F9F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B2E4D4A3022DC3194BDC73C3 /* libgles2_c_lib_nocheck.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgles2_c_lib_nocheck.a; - remoteRef = 20559EF77E152DCBDBCACD61 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B3C7283D59714B85617794EC /* libwebrtc_vp8.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebrtc_vp8.a; - remoteRef = 8D8BF107B33A99B00650C1E8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B3DB9C8FD60EBC30C15EC819 /* ppapi_example_url_loader.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_url_loader.bundle; - remoteRef = 14B71F19D25F7CD05F8E3DDF /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B5424446D74DD25BADD31F1E /* libgles2_utils.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgles2_utils.a; - remoteRef = 4BD7773500D4CAFAB3333ABF /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B6D545E11394F55CC4F354C8 /* leveldb_coding_test */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = leveldb_coding_test; - remoteRef = 8BF8F1D4A26689E9E4BA787D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B85BED980F0C092062FC7BF6 /* libprotobuf_lite.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libprotobuf_lite.a; - remoteRef = A57C6E219399AC37D75990BD /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B8CA1A3F3DC012EE6B29B090 /* libvideo_render_module.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libvideo_render_module.a; - remoteRef = 23940005BF133F95EF9D007D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B8FF1DA4847671490A5DA716 /* libxslt.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libxslt.a; - remoteRef = 3C5DA11E367A749F7A226CFF /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - B901B1AA0FFB8733D3D34CDF /* video_decode_accelerator_unittest */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = video_decode_accelerator_unittest; - remoteRef = 7228ECD848A4EC3EABA72867 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - BA2A08B372DBB101485675DB /* libgtest_main.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgtest_main.a; - remoteRef = AD367C0C18A9638B9A9CD14F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - BAC8E39ACB2547774B671733 /* image_operations_bench */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = image_operations_bench; - remoteRef = 287BC2061A8621C6BAD40E03 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - BC8AF58C370537486626D135 /* libflac.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libflac.a; - remoteRef = F98C6D60F0811D23B77F37B7 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - BD079598FEB10D85498A2269 /* ppapi_example_gles2.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_gles2.bundle; - remoteRef = 22FE8682A9454DD2E86A123B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - BD2D7D254989E0B420EC6779 /* libgl_wrapper.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgl_wrapper.a; - remoteRef = 359BBA05F82695D400F50790 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - BDBFE371ED8537F0321E26F4 /* printing_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = printing_unittests; - remoteRef = 9196032B42BBA523596827C5 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - BE4562C3575A70024C40D583 /* libcrnssckbi.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcrnssckbi.a; - remoteRef = 2F8A4DF6A923DB6CB1A30DB8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - BECB43A340B591D3D2E5BFD9 /* librun_all_unittests.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = librun_all_unittests.a; - remoteRef = 757FEF3F76D43131CBED8C5B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - C22D91CAFF221E82478B3EC9 /* libnotifier.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libnotifier.a; - remoteRef = 4066BA2095586535894C789F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - C34A4DA3E2E9C8D31557AD00 /* ffmpeg_tests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = ffmpeg_tests; - remoteRef = B12BC585D8189CB3AA157913 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - C740E01F34E473CAC79E1412 /* libwebcore_rendering.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebcore_rendering.a; - remoteRef = 5024107804D2AF1514F55ED4 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - C8E96D60D671FC45CD96BAC3 /* libglue.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libglue.a; - remoteRef = FAED0753F9D3F926B209F5DD /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - C914BC2649BE52A52D67FE5C /* libwebrtc_i420.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebrtc_i420.a; - remoteRef = F39E714E91C2EFB29ABD70D8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - CA8D18339EA75625526C90B6 /* libvad.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libvad.a; - remoteRef = 169529FE3831F88FB9B7527C /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - CD32E80AD06B431CD489F6E8 /* libgpu_unittest_utils.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgpu_unittest_utils.a; - remoteRef = B7F4315EB8996BF458F8A705 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - CD3756258E34DFF18BE68DD7 /* libppapi_cpp.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libppapi_cpp.a; - remoteRef = B1D5D88E164CE31074399525 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - CE3B9660F42A253072C6E429 /* libcontent_gpu.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_gpu.a; - remoteRef = B6698193902A916B7DCACAAE /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - CEBEAB89230F4E0AA610345F /* libppapi_egl.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libppapi_egl.a; - remoteRef = 148B64294A71827DD32268AD /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - D09AE7D9C7AA685F3778A4AB /* libwebrtc_video_coding.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebrtc_video_coding.a; - remoteRef = E2326D6EC24DCC7B01A1CA5B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - D48B0CC2B1FE4D2EE9210079 /* ffmpegsumo.so */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.dylib"; - path = ffmpegsumo.so; - remoteRef = 00D318C15C59AE5C6BAC0FF8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - D67EA0D4989FD408DD77B66C /* libgles2_implementation.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libgles2_implementation.a; - remoteRef = BD2C8B7022E96CA12CFC6BB6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - D7E4226EAF9EC841EFBEAD98 /* libv8_base.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libv8_base.a; - remoteRef = 4B4C49DFEED47558DE0D9A5D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - D85B04783FE65DAC171C848C /* check_example */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = check_example; - remoteRef = 0BD9F7B23CFC802A88FC0578 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - D870F67866877AB7743458DE /* libcontent_renderer.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_renderer.a; - remoteRef = C3140C49BC89699AF2D1F475 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - D874478C6297A52B77C4472D /* libsystem_wrappers.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libsystem_wrappers.a; - remoteRef = 37582B4A7787192DACC6CF7A /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - D90E6D4C0A489F1C4BE5685A /* libcontent_plugin.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcontent_plugin.a; - remoteRef = 55594EB3B5984E205D0C5BF8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - D9A70841E03E00AE35585728 /* Content Shell Helper.app */ = { - isa = PBXReferenceProxy; - fileType = wrapper.application; - path = "Content Shell Helper.app"; - remoteRef = E985B72ED8CD6CEC96B6DEC0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - DA0A21F8A0EAAC0756DC19D5 /* libjsoncpp.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libjsoncpp.a; - remoteRef = 86FC41C04DD2CF043BD641EB /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - DBB1214DF375AF358E9D16D8 /* libjingle_glue_test_util.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libjingle_glue_test_util.a; - remoteRef = 5FF9709814B475BDD9BB9634 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - DCED4C272049F1F4D50F792C /* gl_tests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = gl_tests; - remoteRef = DD5CAB90FFC753B757B16188 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - DF39FC582E99207308E5F0D3 /* libwtf.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwtf.a; - remoteRef = DA49162825FEC6F2DF920FD7 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - DFAC89ACAC85C56A837AE4A4 /* libresampler.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libresampler.a; - remoteRef = D1D65BDA9DF16F93372B6D38 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E0124C00BC9DD166682EA919 /* libppapi_proxy.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libppapi_proxy.a; - remoteRef = 49A2BA04069DBA0AD5BDF22C /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E10BE1AF48EF909F62A87B9C /* gpu_unittests */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = gpu_unittests; - remoteRef = AE997F4CEA4AABD7207F01CC /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E248C9BFA32A55025003A1F9 /* libbase_static.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libbase_static.a; - remoteRef = 17CC7BA1DE5BA019E48297BA /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E2B0AD96A1FD510ACD225119 /* simple_encoder */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = simple_encoder; - remoteRef = AB5C31A5287161C47750D7B7 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E2C2F26B2F9DD883DE77215C /* libskia_opts.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libskia_opts.a; - remoteRef = B2B0C693036EAAF6ADC7BD66 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E353FC738370E3181F299DE0 /* ppapi_example_simple_font.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_simple_font.bundle; - remoteRef = 7EE119AA57BC4D9AD80AF080 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E37BA3D3C92CCF19ACA1B9BC /* libpreprocessor.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libpreprocessor.a; - remoteRef = A96CB68E7E80957E540864C4 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E3B63B91F23894A10980BB49 /* qt_faststart */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = qt_faststart; - remoteRef = BB0679EB8A203E2492706D58 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E3EFB43DABABCB5B5A738A2A /* libsfntly.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libsfntly.a; - remoteRef = CD409CCFCE8F689F35FEFD30 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E455343DCDDA068A7A605236 /* ppapi_example_graphics_2d.bundle */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = ppapi_example_graphics_2d.bundle; - remoteRef = 76544C9F69DC787144A255A8 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E520D20D9B313E81E46EFC44 /* libssl.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libssl.a; - remoteRef = 06167690665816396A64B996 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E65826B5F5DCCEDCB9302BAC /* libwebkit.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebkit.a; - remoteRef = AB52844EA4733C15CEA1631E /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - EAA20445274A6E929DA02F50 /* libmach_override.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libmach_override.a; - remoteRef = A9C613C9FBACDBBB5E2A3E1B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - EAA7B595FCFF3CBBB104B76B /* libiccjpeg.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libiccjpeg.a; - remoteRef = 181842CDA2DC32CFE2DE45C6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - EB159E178A7EBD4D052A34C7 /* libjingle.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libjingle.a; - remoteRef = 71793833EA9EEC26D3E6F4B9 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - EC96295730C4344F46C4CF8C /* libcrcrypto.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libcrcrypto.a; - remoteRef = F526DF0C0B2A32EE9DE22AB5 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - ED37D78E0792BDA1C05BA20E /* libpng.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libpng.a; - remoteRef = C2E3C1171C23414E7B7A0D52 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - EE5959986B547B1347497441 /* libspeex.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libspeex.a; - remoteRef = DBF7F2D58A098B5842A8724F /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - EEF3DEBE3DF87BA94FA84325 /* libsignal_processing.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libsignal_processing.a; - remoteRef = 3D7D3A7B1A9446ACCFF69A1B /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - F01AB71003340479A007B9FD /* libwebkit_support_gfx.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebkit_support_gfx.a; - remoteRef = 4A31BD4C9F1DD9CDE3F57506 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - F0228BA8E7241096B69FA0D1 /* libicui18n.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libicui18n.a; - remoteRef = 188A1E8CF31DBE9DA966CCC4 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - F1A30087FEB5F03EBA42EF92 /* libwebcore_dom.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebcore_dom.a; - remoteRef = 800666C6BC68781DFA64D6B2 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - F3D7F0DDB63CA77F1F5205EA /* libiSACFix.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libiSACFix.a; - remoteRef = 742841A1810AEF9EE3864067 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - F4E51FB8FB4C99518B681C2E /* libnotifier_test_util.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libnotifier_test_util.a; - remoteRef = 0668D05BC7D7D96761471AB1 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - F6CBA8C62E1D8E7F45C05DC8 /* libns_fix.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libns_fix.a; - remoteRef = 36215738AD0AE516908809F7 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - F730AB17FB0BA0A61A7EF46C /* libns.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libns.a; - remoteRef = C4AEE6A041383B93F7026D89 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - F80EA39EE90B63653656CFE7 /* libappcache.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libappcache.a; - remoteRef = 865143ABA457D476C0389B76 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FA5C43585F17E267CF43DA3D /* libwebcore_svg.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebcore_svg.a; - remoteRef = 03D476619DA5E842CDF2CCDB /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FA96B3B9711BEAA356D3BB42 /* seek_tester */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = seek_tester; - remoteRef = 3C9D021E7C9F329F69CA98A9 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FC0BA8C2E6DAEBB62B81A46E /* libvideo_engine_core.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libvideo_engine_core.a; - remoteRef = 8B0DE9C8E5207E95CB1E2CEF /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FD86F492F6C7DDEF4E61078F /* peerconnection_server */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = peerconnection_server; - remoteRef = 93191A65543C391EBBEC6FBA /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FDE3F18B0794AC39BE153998 /* libots.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libots.a; - remoteRef = 4512A67BA93A52CFC91E9BEF /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FE3CC6EBD545B506351CCA2E /* libwebp_enc.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libwebp_enc.a; - remoteRef = D4A73E4F6037E259005EDB82 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FE91E39839004AF69907B7A7 /* crash_cache */ = { - isa = PBXReferenceProxy; - fileType = "compiled.mach-o.executable"; - path = crash_cache; - remoteRef = 176C1F95CEE96BDBAFFE170D /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FF117249FEB88AAAB9B6C26C /* libppapi_unittest_shared.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libppapi_unittest_shared.a; - remoteRef = 0F36EA3E37A087B808E76763 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FF2B8B0E9DAEBCCFE02F46C8 /* libsurface.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libsurface.a; - remoteRef = B34D16D8958181A331C9A3A2 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FF6806AF1530C10B07E48E78 /* libprotobuf_full_do_not_use.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libprotobuf_full_do_not_use.a; - remoteRef = 7F0C73855BC0E63127D8A822 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - FFA0AC7FB9FD43ED5B983135 /* libnet_test_support.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libnet_test_support.a; - remoteRef = 265DB56B7F309F5B34073DA3 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; -/* End PBXReferenceProxy section */ - -/* Begin PBXResourcesBuildPhase section */ - 6817CDB95BD034F292DA8F53 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - E9FA34F609DF067411A52C2B /* cefclient.icns in Resources */, - 234C5EB8ADE760FC5BAE647A /* InfoPlist.strings in Resources */, - BB50F5BD53C21286A1BD2D3D /* MainMenu.xib in Resources */, - 49C38710F28BC411D070F6EB /* binding.html in Resources */, - 093232FD5BBBEDCCFEB3F60F /* dialogs.html in Resources */, - A904368AF1F66C48DF17C2CD /* domaccess.html in Resources */, - 0C6C0FC67FB6A8079761A88D /* localstorage.html in Resources */, - 69474D6F7142BCFDF61EC73C /* logo.png in Resources */, - 76564BCA0FC47C829F93A8F9 /* xmlhttprequest.html in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 905C10454B56710E20BFBB4C /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CC2124B3195237E3C341EA45 /* unittests.icns in Resources */, - 22BBB6A28901D896920B4E2F /* InfoPlist.strings in Resources */, - C7CE8FA5C7F0CC3516A3C3F0 /* MainMenu.xib in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EF19C4CF1107FD1F8A1D58A1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3537BD5A7006FA48C4B84632 /* cefclient.icns in Resources */, - 0B23ED3968B19B9697B01B68 /* InfoPlist.strings in Resources */, - CF2069290E8EB1CCD228A4C8 /* MainMenu.xib in Resources */, - 6B39FD64E8841DE9A91D5902 /* binding.html in Resources */, - 8994E6C97FE7ADC8C3B9C2F1 /* dialogs.html in Resources */, - A64C48D0208E61228F3637E6 /* domaccess.html in Resources */, - B6DA0EA2BF8DD2E047DDCD1F /* localstorage.html in Resources */, - 2098CE57A8D49507B73CF379 /* logo.png in Resources */, - 19D404D668C11055204ECCD1 /* xmlhttprequest.html in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 0302AE1153B70E8F68D38370 /* Postbuild "Make More Helpers" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Make More Helpers\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/make_more_helpers.sh Frameworks cef_unittests\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 0310BBDDD26FDFD9481502AE /* Postbuild "Copy Pack File" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Copy Pack File\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec cp -f \"${BUILT_PRODUCTS_DIR}/cef.pak\" \"${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/cef.pak\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 03A6A45959528523C7D649EA /* Postbuild "Copy Pack File" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Copy Pack File\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec cp -f \"${BUILT_PRODUCTS_DIR}/cef.pak\" \"${BUILT_PRODUCTS_DIR}/cefclient.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/cef.pak\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 088D60E05B862F8EDEEF51C9 /* Postbuild "Make More Helpers" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Make More Helpers\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/make_more_helpers.sh Frameworks Atom\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 175A437AC43F027F233A6A47 /* Postbuild "Strip If Needed" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Strip If Needed\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/strip_from_xcode\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 292469D37E7F54C53612D2DA /* Postbuild "Tweak Info.plist" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Tweak Info.plist\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/tweak_info_plist.py \"--breakpad=0\" \"--keystone=0\" \"--svn=0\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 2A4EBA340C9E27703AF0630F /* Postbuild "Tweak Info.plist" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Tweak Info.plist\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/tweak_info_plist.py \"--breakpad=0\" \"--keystone=0\" \"--svn=0\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 3639EADC695DADA070AB399B /* Postbuild "Copy WebCore Resources" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Copy WebCore Resources\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec cp -Rf \"${BUILT_PRODUCTS_DIR}/../../third_party/WebKit/Source/WebCore/Resources/\" \"${BUILT_PRODUCTS_DIR}/cefclient.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 3B02B03470D5140960D97432 /* Action "repack_cef_pack" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ../tools/grit/grit/format/repack.py, - "$(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak", - "$(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standard.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_resources.pak", - ); - name = "Action \"repack_cef_pack\""; - outputPaths = ( - "$(BUILT_PRODUCTS_DIR)/cef.pak", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec python ../tools/grit/grit/format/repack.py \"${BUILT_PRODUCTS_DIR}/cef.pak\" \"${SHARED_INTERMEDIATE_DIR}/content/content_resources.pak\" \"${SHARED_INTERMEDIATE_DIR}/net/net_resources.pak\" \"${SHARED_INTERMEDIATE_DIR}/ui/ui_resources/ui_resources.pak\" \"${SHARED_INTERMEDIATE_DIR}/ui/ui_resources_standard/ui_resources_standard.pak\" \"${SHARED_INTERMEDIATE_DIR}/webkit/devtools_resources.pak\" \"${SHARED_INTERMEDIATE_DIR}/webkit/webkit_chromium_resources.pak\" \"${SHARED_INTERMEDIATE_DIR}/webkit/webkit_resources.pak\" \"${SHARED_INTERMEDIATE_DIR}/cef/cef_resources.pak\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 3C9AFFAC17C9AC4410282CC2 /* Postbuild "Tweak Info.plist" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Tweak Info.plist\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/tweak_info_plist.py \"--svn=1\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 499266B4B1AB1CE16FF810FC /* Postbuild "Change Mach-O Flags" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Change Mach-O Flags\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/change_mach_o_flags_from_xcode.sh\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 4D8A02B632CBD7D3A480A954 /* Postbuild "Fix Framework Link" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Fix Framework Link\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec install_name_tool -change @executable_path/libcef.dylib \"@executable_path/../../../../Frameworks/Chromium Embedded Framework.framework/Libraries/libcef.dylib\" \"${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 4E78B13E3141E87A1C8839E4 /* Postbuild "Copy WebCore Resources" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Copy WebCore Resources\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec cp -Rf \"${BUILT_PRODUCTS_DIR}/../../third_party/WebKit/Source/WebCore/Resources/\" \"${BUILT_PRODUCTS_DIR}/cef_unittests.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 5242EEED2E14B727C773C262 /* Postbuild "Tweak Info.plist" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Tweak Info.plist\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/tweak_info_plist.py \"--svn=1\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 54CA849DD7D891C030CFAB8D /* Postbuild "Fix Framework Link" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Fix Framework Link\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec install_name_tool -change @executable_path/libcef.dylib \"@executable_path/../Frameworks/Chromium Embedded Framework.framework/Libraries/libcef.dylib\" \"${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 6E9206029272010913615E30 /* Postbuild "Change Mach-O Flags" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Change Mach-O Flags\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/change_mach_o_flags_from_xcode.sh\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 75E283402CB05DC628E11273 /* Postbuild "Fix Framework Link" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Fix Framework Link\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec install_name_tool -change @executable_path/libcef.dylib \"@executable_path/../Frameworks/Chromium Embedded Framework.framework/Libraries/libcef.dylib\" \"${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 81B48C19E2353482EA798BDC /* Postbuild "Strip If Needed" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Strip If Needed\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/strip_from_xcode\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 83404D3B1F90F336C021A2E4 /* Postbuild "Strip If Needed" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Strip If Needed\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/strip_from_xcode\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 8852D1799E67EDB07CC36E6B /* Action "cef_strings" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ../tools/gritsettings/resource_ids, - libcef/resources/cef_strings.grd, - ../tools/grit/grit.py, - ../tools/grit/grit_info.py, - ../tools/grit/PRESUBMIT.py, - ../tools/grit/grit/__init__.py, - ../tools/grit/grit/clique.py, - ../tools/grit/grit/clique_unittest.py, - ../tools/grit/grit/constants.py, - ../tools/grit/grit/exception.py, - ../tools/grit/grit/grd_reader.py, - ../tools/grit/grit/grd_reader_unittest.py, - ../tools/grit/grit/grit_runner.py, - ../tools/grit/grit/grit_runner_unittest.py, - ../tools/grit/grit/lazy_re.py, - ../tools/grit/grit/lazy_re_unittest.py, - ../tools/grit/grit/pseudo.py, - ../tools/grit/grit/pseudo_rtl.py, - ../tools/grit/grit/pseudo_unittest.py, - ../tools/grit/grit/scons.py, - ../tools/grit/grit/shortcuts.py, - ../tools/grit/grit/shortcuts_unittests.py, - ../tools/grit/grit/tclib.py, - ../tools/grit/grit/tclib_unittest.py, - ../tools/grit/grit/test_suite_all.py, - ../tools/grit/grit/util.py, - ../tools/grit/grit/util_unittest.py, - ../tools/grit/grit/xtb_reader.py, - ../tools/grit/grit/xtb_reader_unittest.py, - ../tools/grit/grit/extern/__init__.py, - ../tools/grit/grit/extern/BogoFP.py, - ../tools/grit/grit/extern/FP.py, - ../tools/grit/grit/extern/tclib.py, - ../tools/grit/grit/format/__init__.py, - ../tools/grit/grit/format/c_format.py, - ../tools/grit/grit/format/c_format_unittest.py, - ../tools/grit/grit/format/data_pack.py, - ../tools/grit/grit/format/data_pack_unittest.py, - ../tools/grit/grit/format/html_inline.py, - ../tools/grit/grit/format/interface.py, - ../tools/grit/grit/format/js_map_format.py, - ../tools/grit/grit/format/js_map_format_unittest.py, - ../tools/grit/grit/format/rc.py, - ../tools/grit/grit/format/rc_header.py, - ../tools/grit/grit/format/rc_header_unittest.py, - ../tools/grit/grit/format/rc_unittest.py, - ../tools/grit/grit/format/repack.py, - ../tools/grit/grit/format/resource_map.py, - ../tools/grit/grit/format/policy_templates/__init__.py, - ../tools/grit/grit/format/policy_templates/policy_template_generator.py, - ../tools/grit/grit/format/policy_templates/policy_template_generator_unittest.py, - ../tools/grit/grit/format/policy_templates/PRESUBMIT.py, - ../tools/grit/grit/format/policy_templates/template_formatter.py, - ../tools/grit/grit/format/policy_templates/writer_configuration.py, - ../tools/grit/grit/format/policy_templates/writers/__init__.py, - ../tools/grit/grit/format/policy_templates/writers/adm_writer.py, - ../tools/grit/grit/format/policy_templates/writers/adm_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/adml_writer.py, - ../tools/grit/grit/format/policy_templates/writers/adml_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/admx_writer.py, - ../tools/grit/grit/format/policy_templates/writers/admx_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/doc_writer.py, - ../tools/grit/grit/format/policy_templates/writers/doc_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/json_writer.py, - ../tools/grit/grit/format/policy_templates/writers/json_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/mock_writer.py, - ../tools/grit/grit/format/policy_templates/writers/plist_helper.py, - ../tools/grit/grit/format/policy_templates/writers/plist_strings_writer.py, - ../tools/grit/grit/format/policy_templates/writers/plist_strings_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/plist_writer.py, - ../tools/grit/grit/format/policy_templates/writers/plist_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/reg_writer.py, - ../tools/grit/grit/format/policy_templates/writers/reg_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/template_writer.py, - ../tools/grit/grit/format/policy_templates/writers/template_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/writer_unittest_common.py, - ../tools/grit/grit/format/policy_templates/writers/xml_formatted_writer.py, - ../tools/grit/grit/format/policy_templates/writers/xml_writer_base_unittest.py, - ../tools/grit/grit/gather/__init__.py, - ../tools/grit/grit/gather/admin_template.py, - ../tools/grit/grit/gather/admin_template_unittest.py, - ../tools/grit/grit/gather/chrome_html.py, - ../tools/grit/grit/gather/chrome_html_unittest.py, - ../tools/grit/grit/gather/chrome_scaled_image.py, - ../tools/grit/grit/gather/chrome_scaled_image_unittest.py, - ../tools/grit/grit/gather/igoogle_strings.py, - ../tools/grit/grit/gather/igoogle_strings_unittest.py, - ../tools/grit/grit/gather/interface.py, - ../tools/grit/grit/gather/json_loader.py, - ../tools/grit/grit/gather/muppet_strings.py, - ../tools/grit/grit/gather/muppet_strings_unittest.py, - ../tools/grit/grit/gather/policy_json.py, - ../tools/grit/grit/gather/policy_json_unittest.py, - ../tools/grit/grit/gather/rc.py, - ../tools/grit/grit/gather/rc_unittest.py, - ../tools/grit/grit/gather/regexp.py, - ../tools/grit/grit/gather/skeleton_gatherer.py, - ../tools/grit/grit/gather/tr_html.py, - ../tools/grit/grit/gather/tr_html_unittest.py, - ../tools/grit/grit/gather/txt.py, - ../tools/grit/grit/gather/txt_unittest.py, - ../tools/grit/grit/node/__init__.py, - ../tools/grit/grit/node/base.py, - ../tools/grit/grit/node/base_unittest.py, - ../tools/grit/grit/node/empty.py, - ../tools/grit/grit/node/include.py, - ../tools/grit/grit/node/io.py, - ../tools/grit/grit/node/io_unittest.py, - ../tools/grit/grit/node/mapping.py, - ../tools/grit/grit/node/message.py, - ../tools/grit/grit/node/message_unittest.py, - ../tools/grit/grit/node/misc.py, - ../tools/grit/grit/node/misc_unittest.py, - ../tools/grit/grit/node/structure.py, - ../tools/grit/grit/node/structure_unittest.py, - ../tools/grit/grit/node/variant.py, - ../tools/grit/grit/node/custom/__init__.py, - ../tools/grit/grit/node/custom/filename.py, - ../tools/grit/grit/node/custom/filename_unittest.py, - ../tools/grit/grit/tool/__init__.py, - ../tools/grit/grit/tool/build.py, - ../tools/grit/grit/tool/build_unittest.py, - ../tools/grit/grit/tool/buildinfo.py, - ../tools/grit/grit/tool/buildinfo_unittest.py, - ../tools/grit/grit/tool/count.py, - ../tools/grit/grit/tool/diff_structures.py, - ../tools/grit/grit/tool/interface.py, - ../tools/grit/grit/tool/menu_from_parts.py, - ../tools/grit/grit/tool/newgrd.py, - ../tools/grit/grit/tool/postprocess_interface.py, - ../tools/grit/grit/tool/postprocess_unittest.py, - ../tools/grit/grit/tool/preprocess_interface.py, - ../tools/grit/grit/tool/preprocess_unittest.py, - ../tools/grit/grit/tool/rc2grd.py, - ../tools/grit/grit/tool/rc2grd_unittest.py, - ../tools/grit/grit/tool/resize.py, - ../tools/grit/grit/tool/test.py, - ../tools/grit/grit/tool/toolbar_postprocess.py, - ../tools/grit/grit/tool/toolbar_preprocess.py, - ../tools/grit/grit/tool/transl2tc.py, - ../tools/grit/grit/tool/transl2tc_unittest.py, - ../tools/grit/grit/tool/unit.py, - ../tools/grit/grit/tool/xmb.py, - ../tools/grit/grit/tool/xmb_unittest.py, - ); - name = "Action \"cef_strings\""; - outputPaths = ( - "$(SHARED_INTERMEDIATE_DIR)/cef/grit/cef_strings.h", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_am.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ar.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_bg.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_bn.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ca.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_cs.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_da.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_de.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_el.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_en-GB.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_en-US.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_es.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_es-419.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_et.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_fa.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_fake-bidi.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_fi.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_fil.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_fr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_gu.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_he.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_hi.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_hr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_hu.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_id.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_it.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ja.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_kn.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ko.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_lt.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_lv.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ml.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_mr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ms.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_nl.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_nb.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_pl.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_pt-BR.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_pt-PT.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ro.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ru.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sk.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sl.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sv.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sw.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ta.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_te.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_th.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_tr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_uk.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_vi.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_zh-CN.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_zh-TW.pak", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "echo note: \"Generating resources from libcef/resources/cef_strings.grd\"\nexec python ../tools/grit/grit.py -i libcef/resources/cef_strings.grd build -f GRIT_DIR/../gritsettings/resource_ids -o \"${SHARED_INTERMEDIATE_DIR}/cef\" -D _chromium -E \"CHROMIUM_BUILD=chromium\" -D remoting -D use_titlecase -D enable_extensions -D enable_printing\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 8B7A5C0773D0725D94DACA20 /* Postbuild "Change Mach-O Flags" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Change Mach-O Flags\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/change_mach_o_flags_from_xcode.sh\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 8FACF06540BB4D8E03202976 /* Postbuild "Copy WebCore Resources" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Copy WebCore Resources\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec cp -Rf \"${BUILT_PRODUCTS_DIR}/../../third_party/WebKit/Source/WebCore/Resources/\" \"${BUILT_PRODUCTS_DIR}/Atom.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 9308A67602FDE42160C8E44C /* Postbuild "Change Mach-O Flags" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Change Mach-O Flags\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/change_mach_o_flags_from_xcode.sh\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 9953FC55F4311BA11D160112 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec python -c \"import fcntl, subprocess, sys\nfile = open('$TMPDIR/GYP_serialize_test_runs', 'a')\nfcntl.flock(file.fileno(), fcntl.LOCK_EX)\nsys.exit(subprocess.call(sys.argv[1:]))\" \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 9C2348DE2A7F270B8F0C0850 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec python -c \"import fcntl, subprocess, sys\nfile = open('$TMPDIR/GYP_serialize_test_runs', 'a')\nfcntl.flock(file.fileno(), fcntl.LOCK_EX)\nsys.exit(subprocess.call(sys.argv[1:]))\" \"${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/Contents/MacOS/${PRODUCT_NAME}\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - 9D7F4F37E16955CBDBB8B64A /* Postbuild "Strip If Needed" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Strip If Needed\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/strip_from_xcode\nexit 1\n"; - showEnvVarsInLog = 0; - }; - AAEB415B37B6A705C7DAC877 /* Postbuild "Fix Framework Link" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Fix Framework Link\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec install_name_tool -change @executable_path/libcef.dylib \"@executable_path/../../../../Frameworks/Chromium Embedded Framework.framework/Libraries/libcef.dylib\" \"${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - AD62A6B22A45C4C5A439D10C /* Postbuild "Make More Helpers" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Make More Helpers\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/make_more_helpers.sh Frameworks cefclient\nexit 1\n"; - showEnvVarsInLog = 0; - }; - B7F19AED801FC55033369354 /* Postbuild "Change Mach-O Flags" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Change Mach-O Flags\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/change_mach_o_flags_from_xcode.sh\nexit 1\n"; - showEnvVarsInLog = 0; - }; - B8A7A0CE7518319208F686E9 /* Action "cef_resources" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ../tools/gritsettings/resource_ids, - libcef/resources/cef_resources.grd, - libcef/resources/devtools_discovery_page.html, - ../tools/grit/grit.py, - ../tools/grit/grit_info.py, - ../tools/grit/PRESUBMIT.py, - ../tools/grit/grit/__init__.py, - ../tools/grit/grit/clique.py, - ../tools/grit/grit/clique_unittest.py, - ../tools/grit/grit/constants.py, - ../tools/grit/grit/exception.py, - ../tools/grit/grit/grd_reader.py, - ../tools/grit/grit/grd_reader_unittest.py, - ../tools/grit/grit/grit_runner.py, - ../tools/grit/grit/grit_runner_unittest.py, - ../tools/grit/grit/lazy_re.py, - ../tools/grit/grit/lazy_re_unittest.py, - ../tools/grit/grit/pseudo.py, - ../tools/grit/grit/pseudo_rtl.py, - ../tools/grit/grit/pseudo_unittest.py, - ../tools/grit/grit/scons.py, - ../tools/grit/grit/shortcuts.py, - ../tools/grit/grit/shortcuts_unittests.py, - ../tools/grit/grit/tclib.py, - ../tools/grit/grit/tclib_unittest.py, - ../tools/grit/grit/test_suite_all.py, - ../tools/grit/grit/util.py, - ../tools/grit/grit/util_unittest.py, - ../tools/grit/grit/xtb_reader.py, - ../tools/grit/grit/xtb_reader_unittest.py, - ../tools/grit/grit/extern/__init__.py, - ../tools/grit/grit/extern/BogoFP.py, - ../tools/grit/grit/extern/FP.py, - ../tools/grit/grit/extern/tclib.py, - ../tools/grit/grit/format/__init__.py, - ../tools/grit/grit/format/c_format.py, - ../tools/grit/grit/format/c_format_unittest.py, - ../tools/grit/grit/format/data_pack.py, - ../tools/grit/grit/format/data_pack_unittest.py, - ../tools/grit/grit/format/html_inline.py, - ../tools/grit/grit/format/interface.py, - ../tools/grit/grit/format/js_map_format.py, - ../tools/grit/grit/format/js_map_format_unittest.py, - ../tools/grit/grit/format/rc.py, - ../tools/grit/grit/format/rc_header.py, - ../tools/grit/grit/format/rc_header_unittest.py, - ../tools/grit/grit/format/rc_unittest.py, - ../tools/grit/grit/format/repack.py, - ../tools/grit/grit/format/resource_map.py, - ../tools/grit/grit/format/policy_templates/__init__.py, - ../tools/grit/grit/format/policy_templates/policy_template_generator.py, - ../tools/grit/grit/format/policy_templates/policy_template_generator_unittest.py, - ../tools/grit/grit/format/policy_templates/PRESUBMIT.py, - ../tools/grit/grit/format/policy_templates/template_formatter.py, - ../tools/grit/grit/format/policy_templates/writer_configuration.py, - ../tools/grit/grit/format/policy_templates/writers/__init__.py, - ../tools/grit/grit/format/policy_templates/writers/adm_writer.py, - ../tools/grit/grit/format/policy_templates/writers/adm_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/adml_writer.py, - ../tools/grit/grit/format/policy_templates/writers/adml_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/admx_writer.py, - ../tools/grit/grit/format/policy_templates/writers/admx_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/doc_writer.py, - ../tools/grit/grit/format/policy_templates/writers/doc_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/json_writer.py, - ../tools/grit/grit/format/policy_templates/writers/json_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/mock_writer.py, - ../tools/grit/grit/format/policy_templates/writers/plist_helper.py, - ../tools/grit/grit/format/policy_templates/writers/plist_strings_writer.py, - ../tools/grit/grit/format/policy_templates/writers/plist_strings_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/plist_writer.py, - ../tools/grit/grit/format/policy_templates/writers/plist_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/reg_writer.py, - ../tools/grit/grit/format/policy_templates/writers/reg_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/template_writer.py, - ../tools/grit/grit/format/policy_templates/writers/template_writer_unittest.py, - ../tools/grit/grit/format/policy_templates/writers/writer_unittest_common.py, - ../tools/grit/grit/format/policy_templates/writers/xml_formatted_writer.py, - ../tools/grit/grit/format/policy_templates/writers/xml_writer_base_unittest.py, - ../tools/grit/grit/gather/__init__.py, - ../tools/grit/grit/gather/admin_template.py, - ../tools/grit/grit/gather/admin_template_unittest.py, - ../tools/grit/grit/gather/chrome_html.py, - ../tools/grit/grit/gather/chrome_html_unittest.py, - ../tools/grit/grit/gather/chrome_scaled_image.py, - ../tools/grit/grit/gather/chrome_scaled_image_unittest.py, - ../tools/grit/grit/gather/igoogle_strings.py, - ../tools/grit/grit/gather/igoogle_strings_unittest.py, - ../tools/grit/grit/gather/interface.py, - ../tools/grit/grit/gather/json_loader.py, - ../tools/grit/grit/gather/muppet_strings.py, - ../tools/grit/grit/gather/muppet_strings_unittest.py, - ../tools/grit/grit/gather/policy_json.py, - ../tools/grit/grit/gather/policy_json_unittest.py, - ../tools/grit/grit/gather/rc.py, - ../tools/grit/grit/gather/rc_unittest.py, - ../tools/grit/grit/gather/regexp.py, - ../tools/grit/grit/gather/skeleton_gatherer.py, - ../tools/grit/grit/gather/tr_html.py, - ../tools/grit/grit/gather/tr_html_unittest.py, - ../tools/grit/grit/gather/txt.py, - ../tools/grit/grit/gather/txt_unittest.py, - ../tools/grit/grit/node/__init__.py, - ../tools/grit/grit/node/base.py, - ../tools/grit/grit/node/base_unittest.py, - ../tools/grit/grit/node/empty.py, - ../tools/grit/grit/node/include.py, - ../tools/grit/grit/node/io.py, - ../tools/grit/grit/node/io_unittest.py, - ../tools/grit/grit/node/mapping.py, - ../tools/grit/grit/node/message.py, - ../tools/grit/grit/node/message_unittest.py, - ../tools/grit/grit/node/misc.py, - ../tools/grit/grit/node/misc_unittest.py, - ../tools/grit/grit/node/structure.py, - ../tools/grit/grit/node/structure_unittest.py, - ../tools/grit/grit/node/variant.py, - ../tools/grit/grit/node/custom/__init__.py, - ../tools/grit/grit/node/custom/filename.py, - ../tools/grit/grit/node/custom/filename_unittest.py, - ../tools/grit/grit/tool/__init__.py, - ../tools/grit/grit/tool/build.py, - ../tools/grit/grit/tool/build_unittest.py, - ../tools/grit/grit/tool/buildinfo.py, - ../tools/grit/grit/tool/buildinfo_unittest.py, - ../tools/grit/grit/tool/count.py, - ../tools/grit/grit/tool/diff_structures.py, - ../tools/grit/grit/tool/interface.py, - ../tools/grit/grit/tool/menu_from_parts.py, - ../tools/grit/grit/tool/newgrd.py, - ../tools/grit/grit/tool/postprocess_interface.py, - ../tools/grit/grit/tool/postprocess_unittest.py, - ../tools/grit/grit/tool/preprocess_interface.py, - ../tools/grit/grit/tool/preprocess_unittest.py, - ../tools/grit/grit/tool/rc2grd.py, - ../tools/grit/grit/tool/rc2grd_unittest.py, - ../tools/grit/grit/tool/resize.py, - ../tools/grit/grit/tool/test.py, - ../tools/grit/grit/tool/toolbar_postprocess.py, - ../tools/grit/grit/tool/toolbar_preprocess.py, - ../tools/grit/grit/tool/transl2tc.py, - ../tools/grit/grit/tool/transl2tc_unittest.py, - ../tools/grit/grit/tool/unit.py, - ../tools/grit/grit/tool/xmb.py, - ../tools/grit/grit/tool/xmb_unittest.py, - ); - name = "Action \"cef_resources\""; - outputPaths = ( - "$(SHARED_INTERMEDIATE_DIR)/cef/grit/cef_resources.h", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_resources.pak", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "echo note: \"Generating resources from libcef/resources/cef_resources.grd\"\nexec python ../tools/grit/grit.py -i libcef/resources/cef_resources.grd build -f GRIT_DIR/../gritsettings/resource_ids -o \"${SHARED_INTERMEDIATE_DIR}/cef\" -D _chromium -E \"CHROMIUM_BUILD=chromium\" -D remoting -D use_titlecase -D enable_extensions -D enable_printing\nexit 1\n"; - showEnvVarsInLog = 0; - }; - BB7AE9DBAC3E98B040D5A1E1 /* Postbuild "Change Mach-O Flags" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Change Mach-O Flags\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/change_mach_o_flags_from_xcode.sh\nexit 1\n"; - showEnvVarsInLog = 0; - }; - BFEFD08C1BBEBBF67A1479FE /* Postbuild "Fix Framework Link" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Fix Framework Link\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec install_name_tool -change @executable_path/libcef.dylib \"@executable_path/../../../../Frameworks/Chromium Embedded Framework.framework/Libraries/libcef.dylib\" \"${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - C877D034A6CB2A4B434403D2 /* Postbuild "Strip If Needed" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Strip If Needed\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/strip_from_xcode\nexit 1\n"; - showEnvVarsInLog = 0; - }; - CD9DA8F3139BF447C6EAD60F /* Postbuild "Strip If Needed" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Strip If Needed\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/strip_from_xcode\nexit 1\n"; - showEnvVarsInLog = 0; - }; - D3373A7377E5AA9C261D591A /* Action "make_pack_strings_header" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - tools/make_pack_header.py, - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/grit/ui_strings.h", - "$(SHARED_INTERMEDIATE_DIR)/webkit/grit/webkit_strings.h", - "$(SHARED_INTERMEDIATE_DIR)/cef/grit/cef_strings.h", - ); - name = "Action \"make_pack_strings_header\""; - outputPaths = ( - include/cef_pack_strings.h, - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec python tools/make_pack_header.py include/cef_pack_strings.h \"${SHARED_INTERMEDIATE_DIR}/ui/ui_strings/grit/ui_strings.h\" \"${SHARED_INTERMEDIATE_DIR}/webkit/grit/webkit_strings.h\" \"${SHARED_INTERMEDIATE_DIR}/cef/grit/cef_strings.h\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - D3A607D63C1C6C789F5BFEE9 /* Postbuild "Fix Framework Link" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Fix Framework Link\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec install_name_tool -change @executable_path/libcef.dylib \"@executable_path/../Frameworks/Chromium Embedded Framework.framework/Libraries/libcef.dylib\" \"${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - DC5E0389A842A86C8885389B /* Postbuild "Strip If Needed" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Strip If Needed\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/strip_from_xcode\nexit 1\n"; - showEnvVarsInLog = 0; - }; - F530C19B5115115D7A7639EB /* Postbuild "Copy Pack File" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Copy Pack File\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec cp -f \"${BUILT_PRODUCTS_DIR}/cef.pak\" \"${BUILT_PRODUCTS_DIR}/cef_unittests.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/cef.pak\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - F56F85D11FE913389343E424 /* Action "make_pack_resources_header" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - tools/make_pack_header.py, - "$(SHARED_INTERMEDIATE_DIR)/content/grit/content_resources.h", - "$(SHARED_INTERMEDIATE_DIR)/net/grit/net_resources.h", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/grit/ui_resources.h", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/grit/ui_resources_standard.h", - "$(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources.h", - "$(SHARED_INTERMEDIATE_DIR)/webkit/grit/webkit_chromium_resources.h", - "$(SHARED_INTERMEDIATE_DIR)/webkit/grit/webkit_resources.h", - "$(SHARED_INTERMEDIATE_DIR)/cef/grit/cef_resources.h", - ); - name = "Action \"make_pack_resources_header\""; - outputPaths = ( - include/cef_pack_resources.h, - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec python tools/make_pack_header.py include/cef_pack_resources.h \"${SHARED_INTERMEDIATE_DIR}/content/grit/content_resources.h\" \"${SHARED_INTERMEDIATE_DIR}/net/grit/net_resources.h\" \"${SHARED_INTERMEDIATE_DIR}/ui/ui_resources/grit/ui_resources.h\" \"${SHARED_INTERMEDIATE_DIR}/ui/ui_resources_standard/grit/ui_resources_standard.h\" \"${SHARED_INTERMEDIATE_DIR}/webkit/grit/devtools_resources.h\" \"${SHARED_INTERMEDIATE_DIR}/webkit/grit/webkit_chromium_resources.h\" \"${SHARED_INTERMEDIATE_DIR}/webkit/grit/webkit_resources.h\" \"${SHARED_INTERMEDIATE_DIR}/cef/grit/cef_resources.h\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - F757F82DE3BE900D86F73BCB /* Action "repack_locales" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - tools/repack_locales.py, - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_am.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_am.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_am.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_am.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_ar.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_ar.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_ar.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ar.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_bg.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_bg.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_bg.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_bg.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_bn.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_bn.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_bn.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_bn.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_ca.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_ca.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_ca.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ca.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_cs.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_cs.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_cs.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_cs.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_da.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_da.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_da.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_da.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_de.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_de.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_de.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_de.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_el.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_el.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_el.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_el.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-GB.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_en-GB.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_en-GB.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_en-GB.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_en-US.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_en-US.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_en-US.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_es-419.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_es-419.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_es-419.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_es-419.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_es.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_es.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_es.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_es.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_et.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_et.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_et.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_et.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_fa.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_fa.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_fa.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_fa.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_fi.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_fi.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_fi.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_fi.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_fil.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_fil.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_fil.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_fil.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_fr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_fr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_fr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_fr.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_gu.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_gu.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_gu.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_gu.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_he.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_he.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_he.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_he.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_hi.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_hi.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_hi.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_hi.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_hr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_hr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_hr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_hr.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_hu.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_hu.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_hu.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_hu.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_id.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_id.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_id.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_id.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_it.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_it.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_it.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_it.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_ja.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_ja.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_ja.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ja.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_kn.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_kn.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_kn.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_kn.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_ko.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_ko.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_ko.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ko.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_lt.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_lt.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_lt.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_lt.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_lv.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_lv.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_lv.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_lv.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_ml.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_ml.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_ml.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ml.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_mr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_mr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_mr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_mr.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_ms.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_ms.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_ms.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ms.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_nb.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_nb.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_nb.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_nb.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_nl.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_nl.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_nl.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_nl.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_pl.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_pl.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_pl.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_pl.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_pt-BR.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_pt-BR.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_pt-BR.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_pt-BR.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_pt-PT.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_pt-PT.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_pt-PT.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_pt-PT.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_ro.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_ro.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_ro.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ro.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_ru.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_ru.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_ru.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ru.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_sk.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_sk.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_sk.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sk.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_sl.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_sl.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_sl.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sl.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_sr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_sr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_sr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sr.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_sv.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_sv.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_sv.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sv.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_sw.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_sw.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_sw.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_sw.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_ta.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_ta.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_ta.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_ta.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_te.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_te.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_te.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_te.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_th.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_th.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_th.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_th.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_tr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_tr.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_tr.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_tr.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_uk.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_uk.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_uk.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_uk.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_vi.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_vi.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_vi.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_vi.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_zh-CN.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_zh-CN.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_zh-CN.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_zh-CN.pak", - "$(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_zh-TW.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_zh-TW.pak", - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_zh-TW.pak", - "$(SHARED_INTERMEDIATE_DIR)/cef/cef_strings_zh-TW.pak", - ); - name = "Action \"repack_locales\""; - outputPaths = ( - "$(INTERMEDIATE_DIR)/repack/am.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/ar.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/bg.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/bn.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/ca.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/cs.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/da.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/de.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/el.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/en_GB.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/en.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/es_419.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/es.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/et.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/fa.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/fi.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/fil.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/fr.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/gu.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/he.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/hi.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/hr.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/hu.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/id.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/it.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/ja.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/kn.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/ko.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/lt.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/lv.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/ml.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/mr.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/ms.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/nb.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/nl.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/pl.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/pt_BR.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/pt_PT.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/ro.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/ru.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/sk.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/sl.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/sr.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/sv.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/sw.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/ta.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/te.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/th.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/tr.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/uk.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/vi.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/zh_CN.lproj/locale.pak", - "$(INTERMEDIATE_DIR)/repack/zh_TW.lproj/locale.pak", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec python tools/repack_locales.py -g \"${SHARED_INTERMEDIATE_DIR}/cef\" -s \"${SHARED_INTERMEDIATE_DIR}\" -x \"${INTERMEDIATE_DIR}\" am ar bg bn ca cs da de el en-GB en-US es-419 es et fa fi fil fr gu he hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv sw ta te th tr uk vi zh-CN zh-TW\nexit 1\n"; - showEnvVarsInLog = 0; - }; - F893089D73E0B020449C4564 /* Postbuild "Tweak Info.plist" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Tweak Info.plist\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/tweak_info_plist.py \"--svn=1\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; - FC00781F5CB1A05417F28E8C /* Postbuild "Tweak Info.plist" */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(EXECUTABLE_PATH)", - ); - name = "Postbuild \"Tweak Info.plist\""; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "exec ../build/mac/tweak_info_plist.py \"--breakpad=0\" \"--keystone=0\" \"--svn=0\"\nexit 1\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 15AAF6C809448EC005E189B1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2DF072D42F50C2AADCD9A443 /* libcef_dll.cc in Sources */, - 08412B2E2C0B784C94B4B65C /* libcef_dll2.cc in Sources */, - 0D80A5612DA59B05B6E1377F /* transfer_util.cpp in Sources */, - C082C526C4206732EDF63B9D /* app_ctocpp.cc in Sources */, - B748B2EEE8236127C08286F4 /* auth_callback_cpptoc.cc in Sources */, - 4E57B24E987042000672DDA1 /* before_download_callback_cpptoc.cc in Sources */, - 875BD0C679820178259D8A54 /* binary_value_cpptoc.cc in Sources */, - D87FF136BAB97CEA8D161814 /* browser_cpptoc.cc in Sources */, - AFEF9C6F2628CB105AD4F321 /* browser_host_cpptoc.cc in Sources */, - E004336F9CA973BC2B4C2D89 /* browser_process_handler_ctocpp.cc in Sources */, - 0BF0FCD0D4DACCA6B02D3E8C /* callback_cpptoc.cc in Sources */, - 61D619FD31277653C59F3321 /* client_ctocpp.cc in Sources */, - 9323D6AB7358CCF83CF1CB2F /* command_line_cpptoc.cc in Sources */, - F374C92C39CEA9F60F0FCC05 /* context_menu_handler_ctocpp.cc in Sources */, - BCE4623E435AF586325B1C80 /* context_menu_params_cpptoc.cc in Sources */, - 73B3D2659F6B8627581CB6EE /* cookie_manager_cpptoc.cc in Sources */, - A2D803E4D8490FE31E529E99 /* cookie_visitor_ctocpp.cc in Sources */, - 3C346B000B851A07F942D73B /* domdocument_cpptoc.cc in Sources */, - 91BE77E51A3340A218F4038F /* domevent_cpptoc.cc in Sources */, - EAA910BDE60E69E30F874F6D /* domevent_listener_ctocpp.cc in Sources */, - EB6DB5276DEA3F58BEDC1040 /* domnode_cpptoc.cc in Sources */, - DF63410737D13ACDC025F374 /* domvisitor_ctocpp.cc in Sources */, - 2A041BC7517CF78C04F49078 /* dictionary_value_cpptoc.cc in Sources */, - 4C635AC480BF4EDCB3E27792 /* display_handler_ctocpp.cc in Sources */, - A9467139CD19AE3B696FD9B8 /* download_handler_ctocpp.cc in Sources */, - 899A35A45B4EADE0D3764E1E /* download_item_cpptoc.cc in Sources */, - D9BEADA483C036DE6FAEA4FC /* download_item_callback_cpptoc.cc in Sources */, - DDA64DC3A66A44E199A883A7 /* focus_handler_ctocpp.cc in Sources */, - 5DA997DDE1F405CAD58953E3 /* frame_cpptoc.cc in Sources */, - 0F8E893EA4DE27BA8848DD68 /* geolocation_callback_cpptoc.cc in Sources */, - C08FF368F5378B72038BF7E8 /* geolocation_handler_ctocpp.cc in Sources */, - C5699629E74C69F3CF3517B0 /* jsdialog_callback_cpptoc.cc in Sources */, - 73455E9EDC893647F381032B /* jsdialog_handler_ctocpp.cc in Sources */, - 62291349F25A362F3B59D669 /* keyboard_handler_ctocpp.cc in Sources */, - 4CDC6E8014B1571C5F2E5FD6 /* life_span_handler_ctocpp.cc in Sources */, - C4BB12B924AEBD633D5FAB3E /* list_value_cpptoc.cc in Sources */, - 8DFE19F368355E317F165229 /* load_handler_ctocpp.cc in Sources */, - 360074340588876A70AE5B0C /* menu_model_cpptoc.cc in Sources */, - C9459B2BF34765BA9524DDD6 /* post_data_cpptoc.cc in Sources */, - 1DAF18310B9DFA66C6CE12C2 /* post_data_element_cpptoc.cc in Sources */, - AAEAC6F81ABB290DF1735820 /* process_message_cpptoc.cc in Sources */, - BDF482FC9A53CDC5923ECE38 /* proxy_handler_ctocpp.cc in Sources */, - FD62A620BD921FFA875D143B /* read_handler_ctocpp.cc in Sources */, - 9B3E98E8DA49920FDBCDD0AD /* render_process_handler_ctocpp.cc in Sources */, - B5E36AEEB67433195546BD80 /* request_cpptoc.cc in Sources */, - AF3E2C0767F941C5ECC1BC93 /* request_handler_ctocpp.cc in Sources */, - AEE856E8A7519A49816BB1D1 /* resource_bundle_handler_ctocpp.cc in Sources */, - 7B39271DAC5E572C257A889C /* resource_handler_ctocpp.cc in Sources */, - C3DD604EA8D146259CE01DF7 /* response_cpptoc.cc in Sources */, - 6383BE17F7297A566E7A8BD7 /* scheme_handler_factory_ctocpp.cc in Sources */, - 08D551BCC9772DA2B96743BA /* scheme_registrar_cpptoc.cc in Sources */, - 5EEB1217F1C92481B2CF5C4C /* stream_reader_cpptoc.cc in Sources */, - E2C8642C814A208E60596978 /* stream_writer_cpptoc.cc in Sources */, - 5A54C44C64D4BD8CA7C1817A /* string_visitor_ctocpp.cc in Sources */, - 944CB3AC150171A86FF0B832 /* task_ctocpp.cc in Sources */, - 7FA9BE1AF30B2F7A1182B69C /* urlrequest_cpptoc.cc in Sources */, - 443A4A941B679112E634C384 /* urlrequest_client_ctocpp.cc in Sources */, - 3FA0904E6D772D22699C5A8D /* v8accessor_ctocpp.cc in Sources */, - BA860F25AFB15AD6595D34C3 /* v8context_cpptoc.cc in Sources */, - 4E05C1EB5BF58D945F0999F0 /* v8exception_cpptoc.cc in Sources */, - 7A8E5101821E458CC15C6DB9 /* v8handler_ctocpp.cc in Sources */, - DD6B019B2E9DE6E43DB718EF /* v8value_cpptoc.cc in Sources */, - AC2816CE95D57F2AA8E621FC /* web_plugin_info_cpptoc.cc in Sources */, - 305F53952C6045E05E2FB947 /* web_plugin_info_visitor_ctocpp.cc in Sources */, - 88A9842446D178140DCC74BC /* write_handler_ctocpp.cc in Sources */, - 39CFE7BD9D246259B82499EA /* xml_reader_cpptoc.cc in Sources */, - 1C2C0C47609812747AA1E8FD /* zip_reader_cpptoc.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2B59DED28F1CA97C1BEDABA0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9EADCCD9BF39A15442F81B92 /* client_app.cpp in Sources */, - DE09853654C85450CE9D67A2 /* client_switches.cpp in Sources */, - 9DC4DAEEAF08796B413BEC8C /* command_line_unittest.cc in Sources */, - 3DD609000669D9030D45F1BF /* cookie_unittest.cc in Sources */, - 2F637B5E0119842E2C5AF158 /* dom_unittest.cc in Sources */, - F1798D10917E9B878CE07511 /* jsdialog_unittest.cc in Sources */, - 53AF2C15B7C6E5247A380382 /* navigation_unittest.cc in Sources */, - FEDE2ED57A314174A97796CE /* process_message_unittest.cc in Sources */, - B984F24F1479F1FDC3B78875 /* request_unittest.cc in Sources */, - 04013A25517C49B02113629C /* run_all_unittests.cc in Sources */, - EFB2279A40210EEB91A31ADD /* scheme_handler_unittest.cc in Sources */, - 5A8C2F4DF73CE319F30E49BC /* stream_unittest.cc in Sources */, - 6908868821973BA856EA77A7 /* string_unittest.cc in Sources */, - 6F5C012F8EC4F87FDFB9596A /* client_app_delegates.cc in Sources */, - C0EEAB6423D08739B4EAE4EE /* test_handler.cc in Sources */, - 37D7C2A28CFFE76FE93D5251 /* test_suite.cc in Sources */, - EF70618DF1DF2F9F74BD5A0F /* test_util.cc in Sources */, - 55A64C0CF1052BFD7171F927 /* url_unittest.cc in Sources */, - B7ADCE3010BEBCA1C768775B /* urlrequest_unittest.cc in Sources */, - C5EF13DA50BB0EE92739CD1A /* v8_unittest.cc in Sources */, - 7D0676006B7170D1D0D2DCF2 /* values_unittest.cc in Sources */, - 9A9EA2D039A1E40ED9799526 /* xml_reader_unittest.cc in Sources */, - 7F20178041CEA2A7849602FC /* zip_reader_unittest.cc in Sources */, - 72D9CBB856E7243132D47096 /* run_all_unittests_mac.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 44932A9FD29C6A7F954CE8EC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - B613E4F4FD6132849B9BA80E /* binding_test.cpp in Sources */, - D09980C48813C6BEF7CBAF97 /* client_app.cpp in Sources */, - 721A7D55867C4F6A7B7CC0C7 /* client_app_delegates.cpp in Sources */, - EE1EBB5BA44DD269AB853863 /* client_handler.cpp in Sources */, - ED0A02304E4BE94FB03238B1 /* client_handler_mac.mm in Sources */, - 19DEBD12054F64267E393E82 /* client_renderer.cpp in Sources */, - A990225C4CDA6BEBA9590A03 /* client_switches.cpp in Sources */, - 2EF5AE209CDC63E8BD2959DA /* dom_test.cpp in Sources */, - 66D8CD56A63405E304590A52 /* process_helper_mac.cpp in Sources */, - 68C8856B8468B74A65E862DF /* resource_util_mac.mm in Sources */, - CA816B4F8892082999A14DB1 /* scheme_test.cpp in Sources */, - 35329B61633FD584C7719194 /* string_util.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 486323A0EF1B8BEF51AFE250 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A3461E375FD8257EE29ED3EF /* client_app.cpp in Sources */, - B57015B08B96608B1A95FC09 /* client_switches.cpp in Sources */, - 300D5B4875D909290FF01391 /* process_helper_mac.cpp in Sources */, - EF2058F40B91E555C75987EB /* client_app_delegates.cc in Sources */, - AE514A5836AEF1B7CA5A23DE /* cookie_unittest.cc in Sources */, - BD80B72B0EB668CE54562914 /* dom_unittest.cc in Sources */, - E6444CDC3D1EE8EC1325BE02 /* process_message_unittest.cc in Sources */, - D3AFBD947F49F414ED1EC4A2 /* scheme_handler_unittest.cc in Sources */, - 1C775B6CAA6602A323FD750C /* urlrequest_unittest.cc in Sources */, - EC05C69B721CD430572CF766 /* test_handler.cc in Sources */, - CEE26CF7C0892A04179E1B63 /* test_suite.cc in Sources */, - CBF4118EDE596DB7AE7023B7 /* test_util.cc in Sources */, - 7CA9909934EC2339EDED706A /* v8_unittest.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A0EC8CCC35A03E5F9AFDB2C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 233E56DEBCA6C8F7989482AC /* transfer_util.cpp in Sources */, - 4BE408BB5B1467CA381E2678 /* cef_byte_read_handler.cc in Sources */, - 020BE1CD2D14F1FEB5249134 /* cef_stream_resource_handler.cc in Sources */, - 56B0FD5F26042F668FAEF18C /* cef_xml_object.cc in Sources */, - DAD3AF7978FBB188E7BA34DC /* cef_zip_archive.cc in Sources */, - 0C67BA8FBC882A7534317601 /* libcef_dll_wrapper.cc in Sources */, - 61DEF6984CE2172E120EC660 /* libcef_dll_wrapper2.cc in Sources */, - 59C331F42AD962B343B84C10 /* app_cpptoc.cc in Sources */, - 1CBB7FA8D8F04950C87552DF /* auth_callback_ctocpp.cc in Sources */, - 7DDDA7773D2F742660814A03 /* before_download_callback_ctocpp.cc in Sources */, - 274076827E1CB76E48A6BEA7 /* binary_value_ctocpp.cc in Sources */, - CC24459DD31BF83F32DE4789 /* browser_ctocpp.cc in Sources */, - 5F0076C9EADE201BD9FBD18E /* browser_host_ctocpp.cc in Sources */, - 4045C3D8475E54CEF29AB4D3 /* browser_process_handler_cpptoc.cc in Sources */, - 47C2F10BE54E292FF7BCB758 /* callback_ctocpp.cc in Sources */, - F1032E0815347BDA722D20B9 /* client_cpptoc.cc in Sources */, - 219B1671D6CC20D63C711589 /* command_line_ctocpp.cc in Sources */, - 71C92DE2E19F04A793BF5613 /* context_menu_handler_cpptoc.cc in Sources */, - BE4F31BCD2026A0D95D301CE /* context_menu_params_ctocpp.cc in Sources */, - D7C93774D9C6095A3100A564 /* cookie_manager_ctocpp.cc in Sources */, - 835BE369FFCCA69BE9AD76B6 /* cookie_visitor_cpptoc.cc in Sources */, - 3DAD1A1BC6FE1C33F98B6CE7 /* domdocument_ctocpp.cc in Sources */, - C86070A15BA5DE7E6C4BEC4C /* domevent_ctocpp.cc in Sources */, - 183D9A5FC65A0C8BA5C65B6E /* domevent_listener_cpptoc.cc in Sources */, - 478EF5029C5524310C41796D /* domnode_ctocpp.cc in Sources */, - 248D2C3BC283B7431D7A2C3B /* domvisitor_cpptoc.cc in Sources */, - 4DBB16038D4206562C281B16 /* dictionary_value_ctocpp.cc in Sources */, - 95544C16CCE60691A7A79851 /* display_handler_cpptoc.cc in Sources */, - EA04E4BC7EE2E008D452F932 /* download_handler_cpptoc.cc in Sources */, - 843694346F1D2172313022A6 /* download_item_ctocpp.cc in Sources */, - 88D791A2C5699BF212AD91DE /* download_item_callback_ctocpp.cc in Sources */, - E165D8B7AD636AB0372AE0C6 /* focus_handler_cpptoc.cc in Sources */, - 9785B121613B5D7C401738B4 /* frame_ctocpp.cc in Sources */, - B767C603C93815276845C682 /* geolocation_callback_ctocpp.cc in Sources */, - 9903749E86FECAEAD1D58B5F /* geolocation_handler_cpptoc.cc in Sources */, - 998718985151123004D21F93 /* jsdialog_callback_ctocpp.cc in Sources */, - 817AF953924D3B5547006F5F /* jsdialog_handler_cpptoc.cc in Sources */, - 917F7C8B054E1BD89EA13B1E /* keyboard_handler_cpptoc.cc in Sources */, - D03B7F4D2D8C40095F991E1A /* life_span_handler_cpptoc.cc in Sources */, - 12F0CFDA98EB526D45CE4D8B /* list_value_ctocpp.cc in Sources */, - 50E34A82F19C933F71680671 /* load_handler_cpptoc.cc in Sources */, - E8266A21D735C2F5BC8921C8 /* menu_model_ctocpp.cc in Sources */, - 19791527E0A85388A2435529 /* post_data_ctocpp.cc in Sources */, - F996DCC14E5FE2DA56960AE6 /* post_data_element_ctocpp.cc in Sources */, - EC0AE85DCE6E03831A7396BA /* process_message_ctocpp.cc in Sources */, - 58D3272CB8BA08EBA04B28A5 /* proxy_handler_cpptoc.cc in Sources */, - C765C43D9FFA551758800401 /* read_handler_cpptoc.cc in Sources */, - 489196AEBC83D1AC76B6D0A3 /* render_process_handler_cpptoc.cc in Sources */, - 4D88A7899F042AF5F6D52B4D /* request_ctocpp.cc in Sources */, - C7DE2ACA3CEC0698A6B54188 /* request_handler_cpptoc.cc in Sources */, - 3F0C3D46E04B77E72B30F4EC /* resource_bundle_handler_cpptoc.cc in Sources */, - A0B36A7828F6EB349AFD0C1E /* resource_handler_cpptoc.cc in Sources */, - AA50811C42CEE68E8D0962EE /* response_ctocpp.cc in Sources */, - FA9E0057F36596DCAA4F10F9 /* scheme_handler_factory_cpptoc.cc in Sources */, - F9F45DEE7C20CDACA8CFDEE2 /* scheme_registrar_ctocpp.cc in Sources */, - 187BA9808A259F3DA1B93518 /* stream_reader_ctocpp.cc in Sources */, - 8E0A4D8DF378F8728BB7A470 /* stream_writer_ctocpp.cc in Sources */, - 0AEE4ECDDC8348381839D712 /* string_visitor_cpptoc.cc in Sources */, - B6584D4042F482677DE5AC4F /* task_cpptoc.cc in Sources */, - 7F1AC8E1CDB79DF6C2D91B6A /* urlrequest_ctocpp.cc in Sources */, - 2CD7E3AB9DFA7D04DA46F59C /* urlrequest_client_cpptoc.cc in Sources */, - B035C9659A97076A096896F2 /* v8accessor_cpptoc.cc in Sources */, - F11CEF982035149925D39611 /* v8context_ctocpp.cc in Sources */, - 03E895FC8CE32ABFA9C4CFFB /* v8exception_ctocpp.cc in Sources */, - A09DC86DD267E0F7084C6E48 /* v8handler_cpptoc.cc in Sources */, - F912D1FC4DB57F95E2391585 /* v8value_ctocpp.cc in Sources */, - 57D3749D9808C179B98F23F5 /* web_plugin_info_ctocpp.cc in Sources */, - 0B0A44268650AA4978261D94 /* web_plugin_info_visitor_cpptoc.cc in Sources */, - 6EC7831D518043EF5DA86A7F /* write_handler_cpptoc.cc in Sources */, - E742EC9EE873872FFA77C191 /* xml_reader_ctocpp.cc in Sources */, - 01A715EF13E6769B868ED73A /* zip_reader_ctocpp.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 52AEDA1BA716D79F5BB98D8F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3604B74425EFEDAA4B436A45 /* cefclient.cpp in Sources */, - 5D0A679939296ED2206D1000 /* binding_test.cpp in Sources */, - F060B40349EDBAF24B4BEB7A /* client_app.cpp in Sources */, - E04C647F65B19A23C4C37EF3 /* client_app_delegates.cpp in Sources */, - 6EDAC1972AE180FDEA8A12BE /* client_handler.cpp in Sources */, - 404A786FD6B149A6F9C13A49 /* client_renderer.cpp in Sources */, - 9868E599B4672A69D34FE61F /* client_switches.cpp in Sources */, - 72A32FA9A4F6BF71E28BF20A /* dom_test.cpp in Sources */, - 0450006D29C60FB869C5B910 /* scheme_test.cpp in Sources */, - A6DFA0C64E7FBE1E1D65021A /* string_util.cpp in Sources */, - 5BD44BCFDCAFDCFB8A50B1ED /* cefclient_mac.mm in Sources */, - 0C36F33E133B708835CB83B2 /* client_handler_mac.mm in Sources */, - 98D4EE6450BCDC119B552CD5 /* resource_util_mac.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 660B06395030BC8F8F5AFAEA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - E62A018FDEC970FCB34288E4 /* binding_test.cpp in Sources */, - 94CD3C041C098A345501CA5A /* client_app.cpp in Sources */, - F7AA8E8039D66DB34F2AA890 /* client_app_delegates.cpp in Sources */, - 006E65916B08C7F449363237 /* client_handler.cpp in Sources */, - 8F3AC029913A80FAC90F95F7 /* client_handler_mac.mm in Sources */, - 88EEA859FB35419EA45CF0B3 /* client_renderer.cpp in Sources */, - A6D76814E1CC0E0D6800C874 /* client_switches.cpp in Sources */, - FD040603D16EC8361CD1B030 /* dom_test.cpp in Sources */, - 8E71C99050781F460ECF207B /* process_helper_mac.cpp in Sources */, - 88F43C406D5E20BA7664107B /* resource_util_mac.mm in Sources */, - 020871A068403DB7812EFA74 /* scheme_test.cpp in Sources */, - 7336DC4E3E05319F4FF00F7E /* string_util.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 89C81779558346D9923CB00A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 19E76A5715B39B88B7ED9EBE /* browser_context.cc in Sources */, - 9E8009A9FAA508B3B2C6E328 /* browser_host_impl.cc in Sources */, - 3FC6F188C2F703A55C5D10D3 /* browser_main.cc in Sources */, - 3C6BC32272757221514EAFEF /* browser_message_filter.cc in Sources */, - 610059D31F89C218DAFA689A /* browser_message_loop.cc in Sources */, - D621A87032F8B13339FB314E /* browser_settings.cc in Sources */, - CDD71291E76239C559B79BCA /* browser_urlrequest_impl.cc in Sources */, - 78B2F4527286E3DAF9B5BED6 /* content_browser_client.cc in Sources */, - 445F9E7B5CF914D05E6B5E2B /* context.cc in Sources */, - 531B9C8A520ADF402522B7CD /* context_menu_params_impl.cc in Sources */, - F36608CA4F606BE7C62304F9 /* cookie_manager_impl.cc in Sources */, - 619B8B734E543A365B213AA2 /* devtools_delegate.cc in Sources */, - 989F93D44EF7EC0D5EDBEDB4 /* devtools_scheme_handler.cc in Sources */, - 23811547BF1019B267FDCE78 /* download_item_impl.cc in Sources */, - 24AD16B0FDF55AD6B4D915D8 /* download_manager_delegate.cc in Sources */, - D0D57C0F830E51B7807D0789 /* frame_host_impl.cc in Sources */, - AD9CD615ED0C7F168C9A8E40 /* javascript_dialog_creator.cc in Sources */, - A3D6F1DE13102E9D824B3B91 /* menu_creator.cc in Sources */, - 4F7264FA54B49A1C7D981775 /* menu_model_impl.cc in Sources */, - 08AFD6D684E558FA3BC9CA0A /* navigate_params.cc in Sources */, - 911234D35A105E12ABECEC37 /* origin_whitelist_impl.cc in Sources */, - 25CDCF27F6A416B220C2EF7B /* path_util_impl.cc in Sources */, - 56E2E7200CEFE9A1CFF73D2E /* process_util_impl.cc in Sources */, - BB5606E67B39FF7DA292010F /* resource_context.cc in Sources */, - A3932A294A60AA840EAA602E /* resource_dispatcher_host_delegate.cc in Sources */, - 0B75761D0E732A945F9D7F0B /* resource_request_job.cc in Sources */, - 84F653893F90A1CDA2DC3E16 /* scheme_impl.cc in Sources */, - E735F9A907A45A2DE17F6469 /* sqlite_diagnostics_stub.cc in Sources */, - 6E1B1AD280A0E2C2C1A086DE /* stream_impl.cc in Sources */, - 8F717861DAC8BDE43074C062 /* url_network_delegate.cc in Sources */, - 676D6C5CA5468E88E95A89BB /* url_request_context_getter.cc in Sources */, - D9FFABF1384653843F40504F /* url_request_context_getter_proxy.cc in Sources */, - 5077CD7021B21C62B6BA4343 /* url_request_context_proxy.cc in Sources */, - 0365FFE4742EF2A02B7300C6 /* url_request_interceptor.cc in Sources */, - CB074E06F578E7DB36A1AE89 /* web_plugin_impl.cc in Sources */, - B0B61B07F1C63DBBE29333FD /* xml_reader_impl.cc in Sources */, - D953D582E04957774FED38A3 /* zip_reader_impl.cc in Sources */, - 306316F1661B8B8F92CA4048 /* cef_message_generator.cc in Sources */, - 3FFD06543F0304E5CB52A531 /* cef_switches.cc in Sources */, - AA635725D29F54155E999C16 /* command_line_impl.cc in Sources */, - C3A3B3C0EA89D6691B40AE75 /* content_client.cc in Sources */, - D42D018401CB887935FFC9D7 /* http_header_utils.cc in Sources */, - 7C912FC68FD13C0F0D43FC77 /* main_delegate.cc in Sources */, - 029049A4C35535ED2B538719 /* process_message_impl.cc in Sources */, - 3B81D94848B739CCFFECC51A /* request_impl.cc in Sources */, - AB6389DDF68FB9FE3385EC3F /* response_impl.cc in Sources */, - 93B24D58695EA585A354FBE7 /* response_manager.cc in Sources */, - 5E0D26D735BE80FCBDC089CE /* scheme_registrar_impl.cc in Sources */, - C0C9BF679234E4D882B5A83A /* string_list_impl.cc in Sources */, - 83E0754DC68F65C46E483894 /* string_map_impl.cc in Sources */, - E7481B828F0653AEB3C28264 /* string_multimap_impl.cc in Sources */, - C66B8D854C8406BFFD441085 /* string_types_impl.cc in Sources */, - A907CD0DE7D7D1EEE17DB475 /* task_impl.cc in Sources */, - F7E34BC10BF1A50CCC4FB311 /* time_impl.cc in Sources */, - 4128236018E7ED642C799A36 /* tracker.cc in Sources */, - 156B53590F9D2AD474457EAC /* url_impl.cc in Sources */, - 367922ECFB2C446168020E58 /* urlrequest_impl.cc in Sources */, - C7E5C77093971C7102340F88 /* value_base.cc in Sources */, - CCC4921DF97D3F0AEA1FF732 /* values_impl.cc in Sources */, - 1BC17A3A884CD160A2066B82 /* browser_impl.cc in Sources */, - 6A923D4EB4839F393D362AB7 /* content_renderer_client.cc in Sources */, - 97D4737D13CB2D7199D41F25 /* dom_document_impl.cc in Sources */, - FD5E750D302F4E85CD8DDADD /* dom_event_impl.cc in Sources */, - 0C282998CEEC0AD963C9728A /* dom_node_impl.cc in Sources */, - 64AB39FE02B112C9FEE5A37E /* frame_impl.cc in Sources */, - 786A35F5365C4F05E68608E1 /* render_process_observer.cc in Sources */, - 7DED952A67DFDEB8CAA91571 /* render_urlrequest_impl.cc in Sources */, - 3145E06509B88C2E7F736245 /* v8_impl.cc in Sources */, - 1A2FFCB939E5050B323885BE /* webkit_glue.cc in Sources */, - DFB941F8E4E0B70263EF192A /* clear_on_exit_policy.cc in Sources */, - 64C0C2A4A2A71B8EB429266E /* sqlite_persistent_cookie_store.cc in Sources */, - BC7B8F8CEE92DDC3B67D13EB /* application_mac.mm in Sources */, - 3B973E1E3D2854594F72BC05 /* browser_host_impl_mac.mm in Sources */, - D6B2A9146E154F18F220E3FD /* browser_main_mac.mm in Sources */, - 41ABFEF4EB34BC326BBDE15B /* download_manager_delegate_mac.mm in Sources */, - B467A77B76F9F9A57BB4D3A2 /* javascript_dialog_mac.mm in Sources */, - 69AD60116FE36E2BBBB4481E /* menu_creator_runner_mac.mm in Sources */, - 58146CC2CF2B09A67D445FEC /* NSString+Utils.mm in Sources */, - 4F5063216962E776F23184AE /* NSURL+Utils.m in Sources */, - 6E0BC5A73CD5822277DB4C00 /* disposition_utils.cc in Sources */, - 9B6FF73055B56C315903000B /* event_disposition.cc in Sources */, - 824C3E6380DAA41F1EDD8AAC /* event_utils.mm in Sources */, - 7E39B4B642C071B321D422F2 /* menu_controller.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CC4ADB3EA7D1A4EAE3B45DDA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D870C134AA871D60234D6587 /* cefclient.cpp in Sources */, - CD25ADB9FA447A6276C05E01 /* binding_test.cpp in Sources */, - D3B39E945B78041FF50AB4CC /* client_app.cpp in Sources */, - D373A46148051037DAE92F24 /* client_app_delegates.cpp in Sources */, - 1863724EE8E495906CC3A14C /* client_handler.cpp in Sources */, - AA76BC55154522EC7F4A7931 /* client_renderer.cpp in Sources */, - F8F6931DBBFD3C530FF0189A /* client_switches.cpp in Sources */, - 3CCF0ACB0485977587F27A1F /* dom_test.cpp in Sources */, - 8D66B6F816426B55BBB74977 /* scheme_test.cpp in Sources */, - 5A40B9E5D78A23BFE2F311CE /* string_util.cpp in Sources */, - C7567D17D83A15924EB02A37 /* cefclient_mac.mm in Sources */, - B21FE87EAB556B3FF831BBE0 /* client_handler_mac.mm in Sources */, - 8CF21FAFCB47A7512A55D283 /* resource_util_mac.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 0073BA28D4FD916D20F04F74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_js; - targetProxy = 70CA44C3661F593A1B55B13D /* PBXContainerItemProxy */; - }; - 00CC8BAF0A7A8E509848A36A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_resources; - targetProxy = 5E87DE3ABD3197B20B23472D /* PBXContainerItemProxy */; - }; - 018018695BEDC2B974BDE164 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_system_interface; - targetProxy = 9E2C7A134F08F9ECA0BE3E9A /* PBXContainerItemProxy */; - }; - 018FE750CF501704E7933F75 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = il; - targetProxy = E1E714B11972204A5945DAF2 /* PBXContainerItemProxy */; - }; - 01DDDBD6CC9D07715FF38356 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_bindings_sources; - targetProxy = 4CEFF58CFA2437A202587752 /* PBXContainerItemProxy */; - }; - 028099C6F71DC42913A49104 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_inspector_protocol_version; - targetProxy = F8BE0E94A8294565ACD18D13 /* PBXContainerItemProxy */; - }; - 03924FAB6548882A8FA3FDF9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = base_i18n; - targetProxy = C9A542EA91B07CD164F1556C /* PBXContainerItemProxy */; - }; - 04277D2C7B69F2426AA0B6B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = video_capture_module; - targetProxy = E16661A8DF9C400CD862ACEA /* PBXContainerItemProxy */; - }; - 0561F12C1B4E226E9EC4580C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = udp_transport; - targetProxy = 0131AD177779A1571540E9ED /* PBXContainerItemProxy */; - }; - 05721E47DFEB78839A219CAC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 667F41D8C9AE14BC19339FE5 /* cef_resources */; - targetProxy = F3756E8A460DD15F7F76E3A0 /* PBXContainerItemProxy */; - }; - 06477D966F181341F4ABDBB3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = EF59E18D1B94CB26A18E3A3E /* cef_unittests_helper_app */; - targetProxy = 01DFC3F2945C7C73757C5277 /* PBXContainerItemProxy */; - }; - 0723211F3CD6BED158C58898 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources; - targetProxy = 62C1010FEC5DBDC7D1CD9084 /* PBXContainerItemProxy */; - }; - 077955227EBB7E8C64D6F56A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources; - targetProxy = F4B0C08972C7CEB3C4523526 /* PBXContainerItemProxy */; - }; - 078CA1911D3E9BBDACA768C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_css; - targetProxy = CB326E84B415CAFA51ED4C43 /* PBXContainerItemProxy */; - }; - 078F3BFD741FC0181D2C5BFB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = EF59E18D1B94CB26A18E3A3E /* cef_unittests_helper_app */; - targetProxy = F24BBD71B97600D2DE0AD749 /* PBXContainerItemProxy */; - }; - 07D1D14CEBA3794874E91835 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_html; - targetProxy = 793895900A6C3DFF21EE7259 /* PBXContainerItemProxy */; - }; - 0817E1BB3B61065DBC1A264D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_resources; - targetProxy = 868698C4C7A8E90CBB948CE2 /* PBXContainerItemProxy */; - }; - 083D93B1EA1202E1D5BEEDEE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libyuv; - targetProxy = 30CA77901761BD1D20421BD1 /* PBXContainerItemProxy */; - }; - 08F034B898C717EC093423AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libjingle; - targetProxy = 90268E94A026EFC6DD0F5821 /* PBXContainerItemProxy */; - }; - 08F502C3BD79E57B00A009D4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_prerequisites; - targetProxy = 8641D287B68F4B346755E2A6 /* PBXContainerItemProxy */; - }; - 09015733EC03E44F76E49F8B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = G711; - targetProxy = 82E2F27BE864A0755132A9D7 /* PBXContainerItemProxy */; - }; - 0B2DA38336A0CD7301071411 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_devtools_grd; - targetProxy = 347CE66DC69478D3DC2296BF /* PBXContainerItemProxy */; - }; - 0BA49104A34A8D7896E9882E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = inspector_protocol_sources; - targetProxy = 4666626482E977D8E163D075 /* PBXContainerItemProxy */; - }; - 0BAC8CD9FDD4640303922A85 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_inspector_protocol_version; - targetProxy = B2B25EC2A2F5809D9AD62CC7 /* PBXContainerItemProxy */; - }; - 0C9993BD290C3BC779AA5C05 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp_utils; - targetProxy = 250D20888669966C57046D6A /* PBXContainerItemProxy */; - }; - 0CDB92373DDC2A1C014AE337 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_strings; - targetProxy = 7D325943553F39C02A948114 /* PBXContainerItemProxy */; - }; - 0D6A729B06C9C99F67688304 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libsrtp; - targetProxy = 0850D19ACA9EADCFD7885F4B /* PBXContainerItemProxy */; - }; - 0E48D108765D5175A14C18C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ppapi_proxy; - targetProxy = 9756BB8AB72D7988E7F7C1CA /* PBXContainerItemProxy */; - }; - 0E5AD89016FFF8CEF869D1C3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_remaining; - targetProxy = ED6941F40666BFD5821C77F4 /* PBXContainerItemProxy */; - }; - 0EC294FA5E7846C044B3D311 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = printing; - targetProxy = 9F9811C05E26CBD781CFE0F8 /* PBXContainerItemProxy */; - }; - 0EEFA96B104BF2376354DA78 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_resources; - targetProxy = C9EB15E0EDE5DF4391D613C7 /* PBXContainerItemProxy */; - }; - 0FF7D98572DAD9E964B21030 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "harfbuzz-ng"; - targetProxy = EDE694752B137453C2095FF8 /* PBXContainerItemProxy */; - }; - 1066787E3F98599D487F6AD9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_content_resources; - targetProxy = 32B9BED28A80B4EFBD3A743C /* PBXContainerItemProxy */; - }; - 11763C99A26EC98C83F45C00 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = resampler; - targetProxy = 35E1250A6F2A323CA4479139 /* PBXContainerItemProxy */; - }; - 126B209540241A45504C408E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources; - targetProxy = 77482531875F3529A418B6D3 /* PBXContainerItemProxy */; - }; - 1336D33832312F64220373F9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore; - targetProxy = CE98D7338C0B527E5C2B1B8D /* PBXContainerItemProxy */; - }; - 1539050364269C63EB69EB20 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources; - targetProxy = 878A8D01FF6209863DC919D4 /* PBXContainerItemProxy */; - }; - 165E18E56A410771B0140D0B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2E847C594D99442F54D6FA7B /* cef_strings */; - targetProxy = 2AE3C3FB402561F10E47D418 /* PBXContainerItemProxy */; - }; - 17024752957D72AC3993E625 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = video_processing; - targetProxy = 63C45A99E66D75C2D5203B3E /* PBXContainerItemProxy */; - }; - 178013DF56ED7719DAD441AF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = inspector_protocol_sources; - targetProxy = B8FB3BF0CC8061089F58BE0D /* PBXContainerItemProxy */; - }; - 17CE9CB2BD146E5D3C69E0F8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_inspector_protocol_version; - targetProxy = 581271CDF0A3651285B49D34 /* PBXContainerItemProxy */; - }; - 188EA8ED60991519923E9381 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_dom; - targetProxy = 232BE3401335226D02083902 /* PBXContainerItemProxy */; - }; - 1A11351E16DCE360168336ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_platform; - targetProxy = 9CDE43F98609E44B216CC396 /* PBXContainerItemProxy */; - }; - 1BDDEB568DB5442E20CAE6DF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glue; - targetProxy = 5EB7E27D27B3CE79047539E4 /* PBXContainerItemProxy */; - }; - 1C5C1B9FA301D7CB56AE9719 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = allocator_extension_thunks; - targetProxy = 8D32025AE7D59C6894E152E5 /* PBXContainerItemProxy */; - }; - 1CDC06A90ADFB3628D4737E4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = http_server; - targetProxy = 499F6A6D9A203524476699AC /* PBXContainerItemProxy */; - }; - 1DAAEBBDC21120A2BA5554CD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_devtools_grd; - targetProxy = 90A1153AC0D930081BEB828D /* PBXContainerItemProxy */; - }; - 1DB8A60BF127EBE36599760F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = audio_device; - targetProxy = FBE805126B7D924523E3FA60 /* PBXContainerItemProxy */; - }; - 209C1916E50D686D8974ACE0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libvpx; - targetProxy = 8EF263D39A1061DCA142F9E0 /* PBXContainerItemProxy */; - }; - 20EB5AB3F0C0920F58F61675 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_supplemental_dependency; - targetProxy = 0997EC282CF85D5700F24A71 /* PBXContainerItemProxy */; - }; - 2259BFCC7F2B441712F43DAD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libflac; - targetProxy = 870D19EB0B6F1B5C2D72CCDF /* PBXContainerItemProxy */; - }; - 227432A6F74AFF42EFBFEF87 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = crypto; - targetProxy = EB4D64DE3615DD415BC5FC25 /* PBXContainerItemProxy */; - }; - 228E575EBCFD2F5AF4642E1B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 667F41D8C9AE14BC19339FE5 /* cef_resources */; - targetProxy = FC639473943A95D7F1B23AA7 /* PBXContainerItemProxy */; - }; - 23DC6924F1BFDA9085F1F23A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 34C94585C2266BDAEE3DB526 /* cef_pak */; - targetProxy = 59C60760D609EC5D56FA4A72 /* PBXContainerItemProxy */; - }; - 23E4C15A4B2CDA370FE05EBA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = audio_conference_mixer; - targetProxy = CC2DA5B8F3E3ACD05C8E7816 /* PBXContainerItemProxy */; - }; - 246B87C2FE1BA5EC2FA1754D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libxslt; - targetProxy = B5147C3DFCFF529D4B398923 /* PBXContainerItemProxy */; - }; - 278B38B322EEE5AF0A1E5673 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = mach_override; - targetProxy = 7854E572B56DE546980F0A7A /* PBXContainerItemProxy */; - }; - 27D3B3479115A3226A63E602 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webrtc_vp8; - targetProxy = A93025B55689B363F617483D /* PBXContainerItemProxy */; - }; - 2848E0BD5FE75507C5044611 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = iLBC; - targetProxy = 7675786C7BAF7B812CD92107 /* PBXContainerItemProxy */; - }; - 28A055A00F3B727579EB90E8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_browser; - targetProxy = D9764C030A91F23EBBFA6768 /* PBXContainerItemProxy */; - }; - 28B0906BC92410A1E8A22A04 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = NetEq; - targetProxy = 9B7809DE83D308F9C3EC286F /* PBXContainerItemProxy */; - }; - 296095DCF49A827D4A9CD0DD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = skia; - targetProxy = 93C770F7723E817A30B3D834 /* PBXContainerItemProxy */; - }; - 2A2FCF7E43A072536BC50158 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_resources; - targetProxy = BE049CD1F7A5797AE232CC30 /* PBXContainerItemProxy */; - }; - 2ADCFE2607C12E72B11E5956 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 667F41D8C9AE14BC19339FE5 /* cef_resources */; - targetProxy = A776DC942AD5CD7DED7A8075 /* PBXContainerItemProxy */; - }; - 2B45735D2499E8BFF256574E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources_standard; - targetProxy = 10E4A7EE418CB56308487C8C /* PBXContainerItemProxy */; - }; - 2C8D5E18F97214B83BEEF6C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 34C94585C2266BDAEE3DB526 /* cef_pak */; - targetProxy = 5756A429B2D7B2789404ED4E /* PBXContainerItemProxy */; - }; - 2CA9E7BBCC486304F39922B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources; - targetProxy = 81D2D3BFAC65E90EB6B40B30 /* PBXContainerItemProxy */; - }; - 2D13543C7300F6E4DA78AAE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libjpeg; - targetProxy = 93A842EA0C626FFC94A752CE /* PBXContainerItemProxy */; - }; - 2F3968F8C0C33E3AFD617925 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_strings; - targetProxy = 20B0876196FE76A080760479 /* PBXContainerItemProxy */; - }; - 2FC3271BF0ACE651BC4DB637 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 667F41D8C9AE14BC19339FE5 /* cef_resources */; - targetProxy = C9CC9191138A0E39C9AB7F7C /* PBXContainerItemProxy */; - }; - 30541C58BCABF7CA64100986 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gles2_utils; - targetProxy = E8915EB362636A94285910D5 /* PBXContainerItemProxy */; - }; - 30949FF2FD6FE023AAD0C599 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = net_resources; - targetProxy = DF87F6A75429590502DB940A /* PBXContainerItemProxy */; - }; - 30C396F70D462E8540382230 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libevent; - targetProxy = 8122F20DC38AC6B19F566BA5 /* PBXContainerItemProxy */; - }; - 30F2FE0EF3498498F5EF043D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = dynamic_annotations; - targetProxy = 51F38FA02F9B93F052D610CB /* PBXContainerItemProxy */; - }; - 32541601F69C527499C9016D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ots; - targetProxy = FC2B090B0C77642FDAF3398E /* PBXContainerItemProxy */; - }; - 33FA3CE13523A005F6637542 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 26DD2CB0340D816F3DF64EC9 /* libcef */; - targetProxy = 9A932EA117A6AE5B669AA90A /* PBXContainerItemProxy */; - }; - 3483302F5089952C0B1A341B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = command_buffer_service; - targetProxy = DA4F311CBF8FF58C554EBAAE /* PBXContainerItemProxy */; - }; - 34874AC4FDC6FB72CF5ED754 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = test_support_base; - targetProxy = 80F82FCC22188DA5332987B3 /* PBXContainerItemProxy */; - }; - 34CC444EF3CAADBEF921E3E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ffmpeg; - targetProxy = F1022A3EF4B1554F2677D37E /* PBXContainerItemProxy */; - }; - 34E5A9255A3CA3C752E30B29 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = agc; - targetProxy = 27BB6DC92EC680E7DDE2548F /* PBXContainerItemProxy */; - }; - 358CC58FB67EB73F37C2B942 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = aec_sse2; - targetProxy = A3BCDEC178B1226DCCB49CDF /* PBXContainerItemProxy */; - }; - 35C900F57711847D325F6627 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_heap_snapshot_worker_js; - targetProxy = 7F0C09637010CBDD5993AED1 /* PBXContainerItemProxy */; - }; - 3632689D80672EE57D218C9C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources; - targetProxy = A47103C7D2103982D560EACB /* PBXContainerItemProxy */; - }; - 36DDF6E7056E8715A37E34EB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_resources; - targetProxy = 0EA3B588070DCDDCDE5698C2 /* PBXContainerItemProxy */; - }; - 37577390E57F4FBF244B1678 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = icui18n; - targetProxy = CEBA1433614E1CF02DFF355D /* PBXContainerItemProxy */; - }; - 3766D1A3950B959D5CE56D1A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gles2_implementation; - targetProxy = CA2EBC9B9FAE848C2142B879 /* PBXContainerItemProxy */; - }; - 37AEFBDF1CC93EBF210DBE84 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 667F41D8C9AE14BC19339FE5 /* cef_resources */; - targetProxy = BFADB861EF79BAB1A544AE45 /* PBXContainerItemProxy */; - }; - 38F06282E6CF6FC3E204D074 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = media_file; - targetProxy = CBB3385195E047F29D63346C /* PBXContainerItemProxy */; - }; - 39EBC6589AAC582B3EC95EA2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_strings; - targetProxy = D4F63752E9256230F8DEB664 /* PBXContainerItemProxy */; - }; - 3A45BD1F2320206C7BBC081B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = iSAC; - targetProxy = B156B18D95A97609E8C366D4 /* PBXContainerItemProxy */; - }; - 3ACD8CCE9DE5AC89B1617302 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = expat; - targetProxy = 8500F1E1E1C263D012EB365C /* PBXContainerItemProxy */; - }; - 3B680DD8EBAA46AFDBC353B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_strings; - targetProxy = 850FBEEBB238C3112659933F /* PBXContainerItemProxy */; - }; - 3C5BF9FDE0FA061D4E213715 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = quota; - targetProxy = 7EFD29793352F7615F0C7C16 /* PBXContainerItemProxy */; - }; - 3C80EE74550ECE50F416926A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_plugin; - targetProxy = 4E9E42CB5ACA30C9D979A576 /* PBXContainerItemProxy */; - }; - 3E9D7987872A083EC773AFEC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = v8_snapshot; - targetProxy = 315845640964437BDECE4F42 /* PBXContainerItemProxy */; - }; - 3ECFFA6BB917CB66E5928EAF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libxml; - targetProxy = E4F8098F20269AD328A9B45B /* PBXContainerItemProxy */; - }; - 401B9B206A61F21C85E51C75 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nss_static; - targetProxy = 4E6F82B86A43245A806A226E /* PBXContainerItemProxy */; - }; - 4143A681BF1DAF2414D46C6E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_js; - targetProxy = 2EBDD1F322E29A8D73C80C0E /* PBXContainerItemProxy */; - }; - 42B0C642B26E234B18115A7B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_strings; - targetProxy = FF92C0DD679B95C444244753 /* PBXContainerItemProxy */; - }; - 43379012EACDB04007B211F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 94BAF60C7C90712E7F239E35 /* libcef_dll_wrapper */; - targetProxy = D7787FD6BD5166801358A758 /* PBXContainerItemProxy */; - }; - 44BE494DF00E33217EADB95F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp_dec; - targetProxy = 286BB97AA6EA16648FBFD8F5 /* PBXContainerItemProxy */; - }; - 4511C4D866B66A8B4AB452E2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = net_resources; - targetProxy = 205E91EB70EE5B1DB67C4B92 /* PBXContainerItemProxy */; - }; - 470884EB5CF60CE0EE9DB6EE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 94BAF60C7C90712E7F239E35 /* libcef_dll_wrapper */; - targetProxy = 982B7F97A2EA445ECB33068E /* PBXContainerItemProxy */; - }; - 4781DDA43F8F114DA7235E0A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gmock; - targetProxy = 160460BB3DBAEB5099A73A3E /* PBXContainerItemProxy */; - }; - 484AFC5054BDB319C75B4EAD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_gpu; - targetProxy = 116448F45BC09EB876D19B86 /* PBXContainerItemProxy */; - }; - 4A07CB85D4649A637B0A72BD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 34C94585C2266BDAEE3DB526 /* cef_pak */; - targetProxy = 74EE791FC2A3E8D9E504BACC /* PBXContainerItemProxy */; - }; - 4B25B32F1D89C5E158C8331A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_extension_api; - targetProxy = BF4199C7BBD0B31CCBDD1D7C /* PBXContainerItemProxy */; - }; - 4B44D3877B1417EE50334F8C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = modp_b64; - targetProxy = 8A2B2B6D5A5AC2DC006DAF97 /* PBXContainerItemProxy */; - }; - 4B50B513F5D397E7DB633513 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = injected_webgl_script_source; - targetProxy = 556E76992B0DA14EFF7D2C81 /* PBXContainerItemProxy */; - }; - 4B72BEDE7217B509D2600B9F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = fileapi; - targetProxy = AFF2CBDA3F6702439D9DA377 /* PBXContainerItemProxy */; - }; - 4C3A829E468665D42ED57F38 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DA259FAFFD7136C8A5C881A8 /* cef_unittests */; - targetProxy = BCC32A3C690D16E6FD0811DD /* PBXContainerItemProxy */; - }; - 4C3F317B91120655483110A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F506A5805463407F45E5D21B /* cef_locales */; - targetProxy = FC74D9BCE3D5D54765211770 /* PBXContainerItemProxy */; - }; - 4C8387146A53FC00CEF17B71 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gtest_prod; - targetProxy = 806F62420602C02CA83D2800 /* PBXContainerItemProxy */; - }; - 4CE444759CF7FAA751622943 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DA98FB3E241B73BA47200DFF /* AtomHelperApp */; - targetProxy = FEFA3F00FF883AAAF6DA9B7E /* PBXContainerItemProxy */; - }; - 4CE756CB03A45F41A46F30E6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_script_formatter_worker_js; - targetProxy = 975B70A33F5E360D2BED96CD /* PBXContainerItemProxy */; - }; - 4EA8325CB5958DA70F4EA0F6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2E847C594D99442F54D6FA7B /* cef_strings */; - targetProxy = F1E269327CFD78F842649629 /* PBXContainerItemProxy */; - }; - 4FA57FD67641983A172A7AEA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gpu_ipc; - targetProxy = BD783731A8CBC56975596CAA /* PBXContainerItemProxy */; - }; - 50C55A37345BF5C79B0B724F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_content_resources; - targetProxy = AAE269B31BAB75B0FCE28194 /* PBXContainerItemProxy */; - }; - 510B2B2D9E49DB29CC008B1F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 667F41D8C9AE14BC19339FE5 /* cef_resources */; - targetProxy = D956A982CD92E015E150CF32 /* PBXContainerItemProxy */; - }; - 52274D1E656EA0F4A7052558 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = net; - targetProxy = 222785D26B7704FF0DC3FA06 /* PBXContainerItemProxy */; - }; - 526DB93E57BF32C87DE2100E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libspeex; - targetProxy = CE7C33B42B0B9E23C2C0481C /* PBXContainerItemProxy */; - }; - 532D9A1513C8583C40E0A2A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = audio_coding_module; - targetProxy = 76C8BFC198F4F3DDA9254BEF /* PBXContainerItemProxy */; - }; - 535B42FD5E84DB25FD9B6F6C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = audio_processing; - targetProxy = 1B4F6ED71397C1C467E438A6 /* PBXContainerItemProxy */; - }; - 54066FF3F964DB2600B6C979 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F506A5805463407F45E5D21B /* cef_locales */; - targetProxy = 551361E64910BB400355E513 /* PBXContainerItemProxy */; - }; - 540798F295EEAC241257CEB8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_heap_snapshot_worker_js; - targetProxy = EB8D2BEF321A2B94F5DB654A /* PBXContainerItemProxy */; - }; - 54B1DFD416D553261C4028D5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = net_resources; - targetProxy = 71DEE2B3D3390D0E13DC6779 /* PBXContainerItemProxy */; - }; - 56118112E14FFBF55D8084EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 26DD2CB0340D816F3DF64EC9 /* libcef */; - targetProxy = 7DA6A87AF75200F6D180A14E /* PBXContainerItemProxy */; - }; - 56F918F1487EA8627F78BECF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F506A5805463407F45E5D21B /* cef_locales */; - targetProxy = BD3D0849C42BE09BB19D34D9 /* PBXContainerItemProxy */; - }; - 58224BA2958F00F0EB905913 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_resources; - targetProxy = B23B19A4A4CFF1204A21802A /* PBXContainerItemProxy */; - }; - 585AA89D4631F08224C9D00B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = wtf; - targetProxy = 36C6A83897360E2CC84F6DB0 /* PBXContainerItemProxy */; - }; - 590BE005DE4FAC19AAA1F968 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = translator_glsl; - targetProxy = 33A283C4F4D26C9C6F3E5C72 /* PBXContainerItemProxy */; - }; - 597AC5141DD941EF7CDACCC5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_devtools_grd; - targetProxy = F44A6644478536BE1B90AAA4 /* PBXContainerItemProxy */; - }; - 5984773E310FA1F734FDE1C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libtess; - targetProxy = 29AAE5AC262F81FE94D5C3F3 /* PBXContainerItemProxy */; - }; - 59A5F740F59619269EF30942 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_resources; - targetProxy = 4C50EC19ED1C24C144F13396 /* PBXContainerItemProxy */; - }; - 59B6C06E60371905C023EF88 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_js; - targetProxy = 0A4F48B5EA9876E9390530D6 /* PBXContainerItemProxy */; - }; - 5A33A3E27755B7349EAE1EA7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = rtp_rtcp; - targetProxy = 24C35FC4350EB61C46CBE251 /* PBXContainerItemProxy */; - }; - 5A401A0910F4D1AEE02FEAF6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_strings; - targetProxy = 47333AFBD547636B87F4402D /* PBXContainerItemProxy */; - }; - 5A958BB0525526F334EFCF04 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = cups; - targetProxy = 5B33CDB8F99DDD9EDDDBF480 /* PBXContainerItemProxy */; - }; - 5AA84938089115DBA6AF746D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F506A5805463407F45E5D21B /* cef_locales */; - targetProxy = 6C1F455EB4FFD955509E0C16 /* PBXContainerItemProxy */; - }; - 5BBB719F52008A86D3804FAB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_script_formatter_worker_js; - targetProxy = 4321E6E80EE7E13C0F864091 /* PBXContainerItemProxy */; - }; - 5BE983F56DDC3082D443A607 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 26DD2CB0340D816F3DF64EC9 /* libcef */; - targetProxy = 93509B8EFA31E020341F2765 /* PBXContainerItemProxy */; - }; - 5CCB13FAA4B13E6EA39F80B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_inspector_protocol_version; - targetProxy = A07906403E762623A22FD6E7 /* PBXContainerItemProxy */; - }; - 5E55C9D8BB6BEAC15B22C477 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F506A5805463407F45E5D21B /* cef_locales */; - targetProxy = 4E1337F318F5EA9769F5EDAA /* PBXContainerItemProxy */; - }; - 5EEC34626F2BEE1D822A64F3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2E847C594D99442F54D6FA7B /* cef_strings */; - targetProxy = 7A88AC2FFE4E8163E299C359 /* PBXContainerItemProxy */; - }; - 6155A0EC77BD3E6FD922A778 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_resources; - targetProxy = 3A17DAD3484A71C6DD31E5A0 /* PBXContainerItemProxy */; - }; - 61A456F2E4CE1E590E747210 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = icui18n; - targetProxy = D31460C9F3368F2B476CB211 /* PBXContainerItemProxy */; - }; - 61BE2B6370F8609262DC4E31 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_extension_api; - targetProxy = FF1D53AB98649AA5EC35BA5A /* PBXContainerItemProxy */; - }; - 6214A01CB11669182FA76449 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = injected_script_source; - targetProxy = F88792EAEA2FE1B73ACD6AA1 /* PBXContainerItemProxy */; - }; - 6342CE64CFD5181540EAB3F8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 26DD2CB0340D816F3DF64EC9 /* libcef */; - targetProxy = 9E9E97874BFC02B7C5C43839 /* PBXContainerItemProxy */; - }; - 63539F42A4F447AAADF3C4FD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_resources; - targetProxy = 6CB81999D1F58888B1F50BDD /* PBXContainerItemProxy */; - }; - 637AC7E3926DC4FDD3069D0F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A9EF68F8BF3234583509BD43 /* Atom */; - targetProxy = B48EA3338975B64FBD3C193B /* PBXContainerItemProxy */; - }; - 64644ABAC504E64F7A9CDB36 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nss; - targetProxy = 63C6235F6B6A7E87B214072D /* PBXContainerItemProxy */; - }; - 652D7D5F084AE948D073F4B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_html; - targetProxy = BA27E924EF02BB5CFF26A8E8 /* PBXContainerItemProxy */; - }; - 65DB4F9FB555B097100DAF88 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_resources; - targetProxy = D200A4AB4EC59F29F815BB34 /* PBXContainerItemProxy */; - }; - 65E8BAA34C272E4797C6C8B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_content_resources; - targetProxy = AD82220DA434D786C66D51C5 /* PBXContainerItemProxy */; - }; - 665F71C74381066EF3169B9C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2E847C594D99442F54D6FA7B /* cef_strings */; - targetProxy = C98E6E01D8E2B2F525CA86FF /* PBXContainerItemProxy */; - }; - 66C1553721A4251B5FF2BE19 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_renderer; - targetProxy = 15E9DB028CE049530F8556AA /* PBXContainerItemProxy */; - }; - 67A1D1E1FED91745EDA96C3E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_html; - targetProxy = 665AC9618E4AA362B439E8EE /* PBXContainerItemProxy */; - }; - 68C922E53442F67D9724E7B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = bitrate_controller; - targetProxy = F09D7F755879C674E55563C3 /* PBXContainerItemProxy */; - }; - 68D746A8CD1006F0100D1ED9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_strings; - targetProxy = EB87AB2FE7BEBDE2554FDDDE /* PBXContainerItemProxy */; - }; - 68FDF28FDCEE90BB367CB7AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = jsoncpp; - targetProxy = 2C97A7E18D57EB1E925DB46E /* PBXContainerItemProxy */; - }; - 69735C3504CA6548644E20D5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ppapi_c; - targetProxy = 97C287244D5E413929DD12AA /* PBXContainerItemProxy */; - }; - 69B969CA397627FE3ACE965E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_resources; - targetProxy = F171A4C18195A5F660E230D5 /* PBXContainerItemProxy */; - }; - 69D9011739B5C00D91962EE4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ipc; - targetProxy = 16DCD631089F1D80A29C727A /* PBXContainerItemProxy */; - }; - 6A02A30D7D8D7C69FAE0475D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_strings; - targetProxy = 6BB7AB3D7B38610E83FE6513 /* PBXContainerItemProxy */; - }; - 6B09209542CB7F47787DFF80 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_user_agent; - targetProxy = E73F4A1FB7F6452C72FDDF13 /* PBXContainerItemProxy */; - }; - 6B1D91115389C6B23FF2CAC1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = aecm; - targetProxy = 2A9AB8B7CE0879DB86873200 /* PBXContainerItemProxy */; - }; - 6D296BB1F607881183C98EEA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_media; - targetProxy = 3A5277166C3DA41B8C472A73 /* PBXContainerItemProxy */; - }; - 6DACA229296F828AF8BE82B1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = inspector_protocol_sources; - targetProxy = 74212138F4F43AA79781F474 /* PBXContainerItemProxy */; - }; - 6E07A063DBC6CCB26CA157E7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = net_resources; - targetProxy = 1D17D43D8E5BA36AB421DC5B /* PBXContainerItemProxy */; - }; - 6E14ACED0E6E4B5CFC38B4A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources_standard; - targetProxy = 82CA8A3E71D0C7AEDE5060F2 /* PBXContainerItemProxy */; - }; - 6E9F702DBF56871D8784C659 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = inspector_protocol_sources; - targetProxy = D40C73EEDE5552463DB0D5D9 /* PBXContainerItemProxy */; - }; - 6EBD39DE2A1C669C32FBE0EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui; - targetProxy = DA5FA23991EBED0BD30EB8BA /* PBXContainerItemProxy */; - }; - 6ECA079A6DC4163BA797402E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = v8; - targetProxy = B1664C5F325D5E9EFC11B4AE /* PBXContainerItemProxy */; - }; - 6EE720636749E5E8D20D3C24 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = icuuc; - targetProxy = 610A7FF45A1157BC848FA8DA /* PBXContainerItemProxy */; - }; - 6FF9442036876548B657834F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = leveldatabase; - targetProxy = 18925A0BABBD13C7D3209D27 /* PBXContainerItemProxy */; - }; - 70E8027D63C1504658A02E3A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_html; - targetProxy = 7E885176B4EA50E8A9BC004A /* PBXContainerItemProxy */; - }; - 7293347A701F2FF9EFA903DD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = net_resources; - targetProxy = AF682F4FBE565B8C95EC28B2 /* PBXContainerItemProxy */; - }; - 72BB74C982A49A0091FE7005 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = video_processing_sse2; - targetProxy = C104F1A276FE768DC62F4A1C /* PBXContainerItemProxy */; - }; - 738A5BE7BA4CD9DAEBBBDF83 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_devtools_grd; - targetProxy = C78C84AC10D7984AF2F09515 /* PBXContainerItemProxy */; - }; - 758D8664DBCA67282B14DC0F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit; - targetProxy = 850F5B643D19957779EF13E8 /* PBXContainerItemProxy */; - }; - 75EC6347006D1C82D1B06767 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = dynamic_annotations; - targetProxy = FF00C24F90AFEEBACA26CE2B /* PBXContainerItemProxy */; - }; - 773248346B27F6A58720474E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webrtc_utility; - targetProxy = A5BA0B56E6DE410306B6F5ED /* PBXContainerItemProxy */; - }; - 7739908E957DA2487EBDB6C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 34C94585C2266BDAEE3DB526 /* cef_pak */; - targetProxy = 56093D32DACADE455E793B49 /* PBXContainerItemProxy */; - }; - 7778D2B4810EEB8B13596EFC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_resources; - targetProxy = AFB338C0C1383908F13C8B57 /* PBXContainerItemProxy */; - }; - 7B01A2656BB896DD657E03F2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_strings; - targetProxy = 92843F77610B9A55B098CD78 /* PBXContainerItemProxy */; - }; - 7B0D02ED61E3BACDBE6F8E0E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_css; - targetProxy = A6FAF928162F4114867DC38B /* PBXContainerItemProxy */; - }; - 7B345739958F21CEF1622363 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = closure_blocks_leopard_compat; - targetProxy = B695CECBA75EB95B68EB7983 /* PBXContainerItemProxy */; - }; - 7C1A473A79B462ADBABDF0BE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glue; - targetProxy = 2CFB8FAE1C0B51AB1BFCCCEC /* PBXContainerItemProxy */; - }; - 7CF98C7700E3B8EA4CE8E593 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gles2_cmd_helper; - targetProxy = C8672478AB82979FAF0348D0 /* PBXContainerItemProxy */; - }; - 7D15E4AD75676E3C2481F28A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_content_resources; - targetProxy = C174B6FE519FC7C04820298B /* PBXContainerItemProxy */; - }; - 7F224C17F06B6D071BFCB52D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_strings; - targetProxy = EDA161EA150C7C7D4E28559E /* PBXContainerItemProxy */; - }; - 7F6CA27CDFC510F192395E0A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_script_formatter_worker_js; - targetProxy = 47208991CBBA523344D7986D /* PBXContainerItemProxy */; - }; - 7F6FD1F99EE06A9DD7E96CF4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = voice_engine_core; - targetProxy = 7EDC898352EA24F68355C388 /* PBXContainerItemProxy */; - }; - 7F7A47B4E066C7FBB4D5D6B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_strings; - targetProxy = B7B29E96820A563EF5C2C638 /* PBXContainerItemProxy */; - }; - 8086F1C2F886BB0FA6C3808C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_resources; - targetProxy = 97BFC437801F0F3C9B997420 /* PBXContainerItemProxy */; - }; - 820BF79B902B5306B8BBFDB2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 34C94585C2266BDAEE3DB526 /* cef_pak */; - targetProxy = F0932594B4A1426CC022037D /* PBXContainerItemProxy */; - }; - 82853600193836A7ABE4CB69 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = base; - targetProxy = F803F370D34715CF1580316E /* PBXContainerItemProxy */; - }; - 83709877BB29B37B1C92BD69 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 34C94585C2266BDAEE3DB526 /* cef_pak */; - targetProxy = FDB3C35EFDAFEB8E7925DF71 /* PBXContainerItemProxy */; - }; - 83A968FEC9B77B6C1760E272 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = jingle_glue; - targetProxy = E778490142BBC7C88B4639D8 /* PBXContainerItemProxy */; - }; - 8401EAD11384253DFEBD95AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = protobuf_lite; - targetProxy = 96CBE7C36A361E1DD342C312 /* PBXContainerItemProxy */; - }; - 8427FB00951CA3A5F7D993B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_resources; - targetProxy = 41BB4B293ADF16538C4402A7 /* PBXContainerItemProxy */; - }; - 84796E5A790BD8AE52D809D9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = v8; - targetProxy = CDFE1AE2795C755E232CA11F /* PBXContainerItemProxy */; - }; - 8480066A6E189D3624BDD3A8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = base_static; - targetProxy = 0A2A211EC6A23660E51E4F27 /* PBXContainerItemProxy */; - }; - 84B18BC5C21E915281D4A860 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 94BAF60C7C90712E7F239E35 /* libcef_dll_wrapper */; - targetProxy = 4A2AC443C3A71132E1C7452D /* PBXContainerItemProxy */; - }; - 8567BB2B3AFE7442A6E3F7F7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "v8-i18n"; - targetProxy = 8ED0E34A23E2F7C08FF3B78D /* PBXContainerItemProxy */; - }; - 85B644EEBF2C8180377F5192 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_inspector_protocol_version; - targetProxy = C80AF166862F22CFF9E9302E /* PBXContainerItemProxy */; - }; - 86C35E93660FB4836609A431 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = base_i18n; - targetProxy = 157FC71CB477E0AA192CC406 /* PBXContainerItemProxy */; - }; - 8718C8550C80AE7CE8AF0A35 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_css; - targetProxy = 635388D11A9A1BC7B2B46E11 /* PBXContainerItemProxy */; - }; - 878CE2270DE477FFA158E094 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_html; - targetProxy = F1C7E057C8BB1F3C1DA220F0 /* PBXContainerItemProxy */; - }; - 87DEEE47CF06B777B5004DC4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libevent; - targetProxy = 991817F4BB01EE75D8D2E960 /* PBXContainerItemProxy */; - }; - 891C540F1779E4D880D78A77 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = yarr; - targetProxy = D44E63958214800693D932B1 /* PBXContainerItemProxy */; - }; - 897B18EA020CD10C5C92630A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = icudata; - targetProxy = 1B58FFB5CAFB2B8A01BBCC00 /* PBXContainerItemProxy */; - }; - 8995348A687F6B6AB45530A8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = EEA6DA7521B65D3FCF65806C /* Run cef_unittests_helper_app */; - targetProxy = 9AA1433222F4564559BD29C7 /* PBXContainerItemProxy */; - }; - 8A1A94222C247E6B927783B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = base_static; - targetProxy = 63874C612992BA4DB532EACC /* PBXContainerItemProxy */; - }; - 8A31E76F00A065F4571D0CCD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_resources; - targetProxy = 4EDB06CE361B26797A1C8BFC /* PBXContainerItemProxy */; - }; - 8AAE5E642A5FDB842D43081A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 34C94585C2266BDAEE3DB526 /* cef_pak */; - targetProxy = D03CA9B0F2DC92AA587ED1A4 /* PBXContainerItemProxy */; - }; - 8AEBB66F831D51043D88869F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources_standard; - targetProxy = 0B717DD3C029497025266874 /* PBXContainerItemProxy */; - }; - 8BEC2A9DA21546398AE15AB4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = base; - targetProxy = C64B63A13E26118817343198 /* PBXContainerItemProxy */; - }; - 8C7AA0A739649197931E39F8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libjingle_peerconnection; - targetProxy = 63AC4A0AA9DCE3CD17044C28 /* PBXContainerItemProxy */; - }; - 8C8142F6763B303179E6C0DF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_inspector_protocol_version; - targetProxy = E7675204412FB9278062DF1F /* PBXContainerItemProxy */; - }; - 8CC7119C59AED674DDEC33A9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_ppapi_plugin; - targetProxy = BDD951D987CC3BF6174ECB1B /* PBXContainerItemProxy */; - }; - 8DBD55E95FAF06BFAB060981 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = v8_base; - targetProxy = A57249D5CBA4C7370E2C4471 /* PBXContainerItemProxy */; - }; - 8E2FD9149B8727F536867E00 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_resources; - targetProxy = 5586463279AF2979E762A2E9 /* PBXContainerItemProxy */; - }; - 8EBF9843D6C38CD7C4AC69F1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = icudata; - targetProxy = 70697DFB7BC45A01E366F6D1 /* PBXContainerItemProxy */; - }; - 8EC605E0120603FBAC00E26F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = skia_opts_ssse3; - targetProxy = 8DB16A7046A42C151801ABBC /* PBXContainerItemProxy */; - }; - 8EFB690D89687BDE3CDA4DA8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = wtf_config; - targetProxy = 8F6AE5F0F7810F281ECC887A /* PBXContainerItemProxy */; - }; - 8FA2690062158BFBA8709A0A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_heap_snapshot_worker_js; - targetProxy = 8F47F2AE2959791C9558B5D6 /* PBXContainerItemProxy */; - }; - 8FDB318D702CDB5B50573BA0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_script_formatter_worker_js; - targetProxy = 896513A936EFA1B873DD6B73 /* PBXContainerItemProxy */; - }; - 909C73A418602D84E1ED31B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = npapi; - targetProxy = 2DD6234124B1A8ECAF4F157C /* PBXContainerItemProxy */; - }; - 91E61E43A283207178B02A1D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nspr; - targetProxy = 5A484EFA48FEB3E3AFDDD424 /* PBXContainerItemProxy */; - }; - 924FE3007F44A850F3D98B29 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_version; - targetProxy = 8CAE1717447E1274F064C6CE /* PBXContainerItemProxy */; - }; - 9271BC0F42F41DBB3313BEA0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gles2_c_lib; - targetProxy = A19B2033F6168CDD43B25FFF /* PBXContainerItemProxy */; - }; - 93E425833C2643FD23FE1F7C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = api2c; - targetProxy = 37AEF0425961F5AA1ED616D7 /* PBXContainerItemProxy */; - }; - 941A82AECCF13B61507D8FCA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_heap_snapshot_worker_js; - targetProxy = 07974C86ADD313CD4C5010B6 /* PBXContainerItemProxy */; - }; - 945ED72D954B41788CDFF222 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webrtc_i420; - targetProxy = C5332843E42A434D816683C3 /* PBXContainerItemProxy */; - }; - 953B2BFA40E139C4CDC72CD7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libssl; - targetProxy = 3BF74E1A25125C5B5BF84E7B /* PBXContainerItemProxy */; - }; - 9557816F1C288E829259A841 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_script_formatter_worker_js; - targetProxy = 5C29F431CB259F9CCE295136 /* PBXContainerItemProxy */; - }; - 963672EBBDDD69ADEADDF56D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_content_resources; - targetProxy = 8ED083A461FDF845C44C4C3A /* PBXContainerItemProxy */; - }; - 97FD452B6EB19DF401DA8B03 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = net_resources; - targetProxy = EAACBC8D464E5A73DA6D782A /* PBXContainerItemProxy */; - }; - 98238BABFA753D2FD44BF099 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ns; - targetProxy = E64CBF3FE0ACDF96CF958FD0 /* PBXContainerItemProxy */; - }; - 982664829BD1394D4FBAC30E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = appcache; - targetProxy = A1A70B5140A6FBDDAE7C071E /* PBXContainerItemProxy */; - }; - 983D6ADF85BC682C3D807611 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2E847C594D99442F54D6FA7B /* cef_strings */; - targetProxy = 0EB754A2C2DFF055E241E738 /* PBXContainerItemProxy */; - }; - 9853FA541A219C3E1892FEEF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_resources; - targetProxy = 3346F4AADF6A7C889A6B9E17 /* PBXContainerItemProxy */; - }; - 9995E522BA205FE09383D33B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_resources; - targetProxy = 5193BE1549B8ACB99DF8E855 /* PBXContainerItemProxy */; - }; - 99BDB901D446F13EC2438D13 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = inspector_protocol_sources; - targetProxy = 1F1361075C0CF8D6A2939D73 /* PBXContainerItemProxy */; - }; - 9B20F39FB9E5BE58F0110E5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 667F41D8C9AE14BC19339FE5 /* cef_resources */; - targetProxy = 8FB7D9F5D2A38E41885C4BF9 /* PBXContainerItemProxy */; - }; - 9C5E1EF2C1DB083B2B44725F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_strings; - targetProxy = B3A3C88F2ACEE45F1B2D5C49 /* PBXContainerItemProxy */; - }; - 9D98F90F0B2D2CF1B34D9349 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = vad; - targetProxy = FE5D86C420E3F443E11BA001 /* PBXContainerItemProxy */; - }; - 9DAA018E161C538137C5B4DC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = test_support_base; - targetProxy = 84A1E91E693ABF719ECE48B4 /* PBXContainerItemProxy */; - }; - 9DDDB808257CA7E6873741B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2E847C594D99442F54D6FA7B /* cef_strings */; - targetProxy = DFF04A6F758093418DEA5D21 /* PBXContainerItemProxy */; - }; - 9ECA24FA1C1D782D51C509E5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = G722; - targetProxy = 9D356FF901E83DCA4D1CCCDB /* PBXContainerItemProxy */; - }; - 9F0F24CBA9265CCC260D748E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_svg; - targetProxy = 427C585942DBDE267D77D52E /* PBXContainerItemProxy */; - }; - 9F4D474C6AAFDFD20ED9BDE4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = mach_override; - targetProxy = 614986A393D96A83A216039D /* PBXContainerItemProxy */; - }; - A04FC7E1DE747D5F75E4402C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources_standard; - targetProxy = 5F203C81FD3EB5281736FEE3 /* PBXContainerItemProxy */; - }; - A1A072890819927711EF0762 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = command_buffer_client; - targetProxy = 721356E906CAB52F98EB75DC /* PBXContainerItemProxy */; - }; - A36499018124CA3345F02A46 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = zlib; - targetProxy = 4428752BB80CB4DA298CD546 /* PBXContainerItemProxy */; - }; - A377701C78E94637691E4540 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_html; - targetProxy = FB81C5B5A652DDE3878FC555 /* PBXContainerItemProxy */; - }; - A4427590BB7DD68EACBC16D7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = allocator_extension_thunks; - targetProxy = 8A7BF8E1F47F65C9CDC86AED /* PBXContainerItemProxy */; - }; - A55B35614B8A8FC163035C1F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = allocator_extension_thunks; - targetProxy = 72B7E16466043BDBFEBEB2DC /* PBXContainerItemProxy */; - }; - A5CD4A0369A1F5A93C9B1CE4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_content_resources; - targetProxy = B9B485119348154EFBDDF686 /* PBXContainerItemProxy */; - }; - A5FB2BD7F7D8DB45EFEFC723 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = icuuc; - targetProxy = 521B86573F3E4189D991B278 /* PBXContainerItemProxy */; - }; - A67F761434AA6D80B00A4461 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 94BAF60C7C90712E7F239E35 /* libcef_dll_wrapper */; - targetProxy = BA11BA8FE45F8755DFA8CDD3 /* PBXContainerItemProxy */; - }; - A6C858D0BD86057FE8BB2887 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_html; - targetProxy = 1E247DA13ED508D57D8BCF78 /* PBXContainerItemProxy */; - }; - A6F6C80051573A8B72D17E68 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = sql; - targetProxy = 5EF075D40545DE6A95185B87 /* PBXContainerItemProxy */; - }; - A7B693B69170AA4ECA288790 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libjingle_p2p; - targetProxy = 88ADB5700E90A799EF63F6FA /* PBXContainerItemProxy */; - }; - A8475ADAE98E744D60D4FA2D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_app; - targetProxy = 82512BD79931D47B50997CB4 /* PBXContainerItemProxy */; - }; - A8D88718842A615C2E5F8AE9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = yuv_convert_simd_x86; - targetProxy = 5CBE1A21C58E05CC18C1D9DD /* PBXContainerItemProxy */; - }; - A91AA97476150E261D8035AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gl; - targetProxy = 0398F4B3C37D879C290A64E0 /* PBXContainerItemProxy */; - }; - A97C19D15AADB7375DA5485B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = modp_b64; - targetProxy = DC95B41EA7BCC8CD0809708A /* PBXContainerItemProxy */; - }; - AAEBE33A14731733FC9992AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 94BAF60C7C90712E7F239E35 /* libcef_dll_wrapper */; - targetProxy = A27107D01FB762C850D38BF7 /* PBXContainerItemProxy */; - }; - AC5FB89F35A36E5480C739CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore; - targetProxy = 8FFFEF9D482787CA3EC64584 /* PBXContainerItemProxy */; - }; - AD3C01CD58386E99F4993BBC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F506A5805463407F45E5D21B /* cef_locales */; - targetProxy = 3E75BE42B8573A41CCC097CB /* PBXContainerItemProxy */; - }; - ADCFE4A390ACB5E254E38CE6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libevent; - targetProxy = A0DF8CFD968D44C24D979206 /* PBXContainerItemProxy */; - }; - ADDF12B88D8780253EC2F267 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = EF59E18D1B94CB26A18E3A3E /* cef_unittests_helper_app */; - targetProxy = C2A451FF8D54C598C57ACBF9 /* PBXContainerItemProxy */; - }; - ADFE0487AC629536E7D3EEE9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_utility; - targetProxy = FA83610F293800290D85FCFA /* PBXContainerItemProxy */; - }; - AF8AAC0FA463088CFDC7406F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CNG; - targetProxy = 07D4AB1417A05E30714469C6 /* PBXContainerItemProxy */; - }; - AF9CFE3BE26BBFB2EC760464 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_resources; - targetProxy = B8D3AC857FC404172E700976 /* PBXContainerItemProxy */; - }; - AFB00FFD2E4E0A01EAA33562 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DCB001A34DDB8A1DBDB1A9C4 /* cefclient_helper_app */; - targetProxy = 317BF6CE2FBBD6BBD3136D25 /* PBXContainerItemProxy */; - }; - AFBD472159527629D176CDD1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_css; - targetProxy = 6C5E3CCA89BBD6F985878148 /* PBXContainerItemProxy */; - }; - AFE212C0CA2DAF8A25E3240F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_extension_api; - targetProxy = E2564C2CB7D986733E52F25A /* PBXContainerItemProxy */; - }; - B04DD3BCCD24DDA72185A9D0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gmock; - targetProxy = CB32F956E3B0A8C0A1A84474 /* PBXContainerItemProxy */; - }; - B2A78482BA3852DC25AF5ECC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webrtc_libyuv; - targetProxy = 40E63186CE495AB67101F56C /* PBXContainerItemProxy */; - }; - B2D9D83008DF76C3EFA8EB71 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = system_wrappers; - targetProxy = B78673A0DD35A7299172025E /* PBXContainerItemProxy */; - }; - B361D916D0D9478CEBCCB194 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 26DD2CB0340D816F3DF64EC9 /* libcef */; - targetProxy = A43F12DE62E92CEB702E5B9C /* PBXContainerItemProxy */; - }; - B44FB998F5B58EAF00144080 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = iSACFix; - targetProxy = FDB0539C6CAB8E3358B1BA87 /* PBXContainerItemProxy */; - }; - B46F40D25EA68E98ED7AC4DF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PCM16B; - targetProxy = C5BA50AB6C5A3596393A4D26 /* PBXContainerItemProxy */; - }; - B52B6B2CBB3D2EB5891AABEE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = icui18n; - targetProxy = 9A391C78226B07A5ABD43C00 /* PBXContainerItemProxy */; - }; - B7441324E2ACE24C3AD58F27 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = video_engine_core; - targetProxy = 301175776FFF607DC7AFBFD0 /* PBXContainerItemProxy */; - }; - B784D096609A64A036DEC09E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = js2c; - targetProxy = 43DA404A51148097301125FB /* PBXContainerItemProxy */; - }; - B7F2A5490315CF7FEED0A128 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_strings; - targetProxy = 3B52F4F5CB5D25913520A79C /* PBXContainerItemProxy */; - }; - B8C2F9932BD812C91648B312 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 94BAF60C7C90712E7F239E35 /* libcef_dll_wrapper */; - targetProxy = 424E0A3788B6163816F35A19 /* PBXContainerItemProxy */; - }; - B8D6BFE01BB5BC9EA108B22D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2E847C594D99442F54D6FA7B /* cef_strings */; - targetProxy = AA53D9366E0C78F477B360C6 /* PBXContainerItemProxy */; - }; - B9A773106F83A6413A6687D9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_script_formatter_worker_js; - targetProxy = 96B858CF0B0C2E3FD1F8BB7B /* PBXContainerItemProxy */; - }; - BAAC718AEE06C92454F0C470 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = speech_proto; - targetProxy = 4191D297BB9CD44C4BD61D4E /* PBXContainerItemProxy */; - }; - BC1DA3A1A8DFBD458309DF84 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = base_i18n; - targetProxy = 1010F02EBEF464B5EB0A40A4 /* PBXContainerItemProxy */; - }; - BD97A80B0F044A62288E0E16 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_worker; - targetProxy = BA6D86298DDC580298F0E28D /* PBXContainerItemProxy */; - }; - BDFFE2C07E56354EAD8A1832 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_strings; - targetProxy = 081CC7F2306E2E797B2F370E /* PBXContainerItemProxy */; - }; - BFF345F0E2483933810B4967 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DA98FB3E241B73BA47200DFF /* AtomHelperApp */; - targetProxy = 70C3B2F34E29BC2908474620 /* PBXContainerItemProxy */; - }; - C0AA512C56B4CA181B73FF42 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = modp_b64; - targetProxy = 988B8FE296C3F2BF53D6972E /* PBXContainerItemProxy */; - }; - C16A64F27789BF415AD72E91 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_extension_api; - targetProxy = CC74949B299A9E62B06291A0 /* PBXContainerItemProxy */; - }; - C191AB6D80B73206C3EFB700 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = aec; - targetProxy = F207912FEA4F9F5834433CBD /* PBXContainerItemProxy */; - }; - C216A1EF9DFFA341DD1FF0A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = blob; - targetProxy = 7F79F2139E97617232064D46 /* PBXContainerItemProxy */; - }; - C21C8DF836E38F82A780D9E0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_js; - targetProxy = 932D6A605108D3A81A21D77B /* PBXContainerItemProxy */; - }; - C2EE1EC0A89FB359F99930D4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = command_buffer_common; - targetProxy = 05C397272269E53BAC058578 /* PBXContainerItemProxy */; - }; - C3A8950A78F771F433883B03 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F506A5805463407F45E5D21B /* cef_locales */; - targetProxy = 5F9CE73CEA17E69010626EE4 /* PBXContainerItemProxy */; - }; - C3FEC5456936C6187B8524BE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 34C94585C2266BDAEE3DB526 /* cef_pak */; - targetProxy = 40C70AC20B6DEFA908FA3AFA /* PBXContainerItemProxy */; - }; - C40EFA3F6D1C6F9DE6D4C2DC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_strings; - targetProxy = AA7FC570A4096EECE3D925B1 /* PBXContainerItemProxy */; - }; - C61CF4352A96E883FBD8648A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gtest; - targetProxy = 32F7F5283B2AAD6E98A83586 /* PBXContainerItemProxy */; - }; - C679DF31865E8994EB9FF3A8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_resources; - targetProxy = 8DE4897593DE4E0E3A3FD6E5 /* PBXContainerItemProxy */; - }; - C759DC2977118579D0A96459 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DCB001A34DDB8A1DBDB1A9C4 /* cefclient_helper_app */; - targetProxy = 67DA397F195EB1EF7A59A9E8 /* PBXContainerItemProxy */; - }; - C7A76CE1D0D1DA3B256C2CFF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_js; - targetProxy = 0653C7A62277A74DC20441B0 /* PBXContainerItemProxy */; - }; - C7E3361284E1F7D7C26E2D86 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 26DD2CB0340D816F3DF64EC9 /* libcef */; - targetProxy = 833B8B0AF2B0AF665824A7CF /* PBXContainerItemProxy */; - }; - C8572EAEAA16C37793E85715 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 667F41D8C9AE14BC19339FE5 /* cef_resources */; - targetProxy = 1AD2EA638A44E4380534F8AA /* PBXContainerItemProxy */; - }; - C87925E134D9B5DED1872997 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_common; - targetProxy = 43D2D1FC60B7C1D93A2EAADF /* PBXContainerItemProxy */; - }; - C96C682CE5500237F5945E9A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 8DBADDE353DC46B377FC4192 /* libcef_static */; - targetProxy = 716D00D9A42CD2DA578F19C6 /* PBXContainerItemProxy */; - }; - C982BD4CEA60C1EE560E1E0F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2E847C594D99442F54D6FA7B /* cef_strings */; - targetProxy = BF426B5E629E53D6620AE838 /* PBXContainerItemProxy */; - }; - CA04358E4C6791BCEBF79538 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = EF3BCECA3610152FBA76BFFF /* Run cef_unittests */; - targetProxy = 228F888A4D6B1149EA854BE2 /* PBXContainerItemProxy */; - }; - CABA16FFBF964F3E0877AE92 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources_standard; - targetProxy = 0BF54FAEE33C508144F8D12F /* PBXContainerItemProxy */; - }; - CACF350ABA7092F2EED4885B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources_standard; - targetProxy = D71872A08CCEC1BD4B4E6744 /* PBXContainerItemProxy */; - }; - CB10DA56733DE60BA0001808 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 667F41D8C9AE14BC19339FE5 /* cef_resources */; - targetProxy = F5C1C84F00CC375F9F7645D9 /* PBXContainerItemProxy */; - }; - CB20BF2B84CAE7083B2F2609 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = icuuc; - targetProxy = D5C3B62136279495EF2C8892 /* PBXContainerItemProxy */; - }; - CBEC0AD6362E3C9763E6645D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_js; - targetProxy = 8C57F3C8183027B167E5A7A7 /* PBXContainerItemProxy */; - }; - CC7A1151DD0C6D8D0505587D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 0493E18E77BAF61DDB854B47 /* cefclient */; - targetProxy = 39D9C7B1BD5BBF2EE6BF0D8B /* PBXContainerItemProxy */; - }; - CCABC28C7229D914B0166755 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ppapi_shared; - targetProxy = 3D84F23A3CF0B67E68573B4C /* PBXContainerItemProxy */; - }; - CD34116734A4250D23757470 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 26DD2CB0340D816F3DF64EC9 /* libcef */; - targetProxy = E7451C1B2D44D27DC540FAEF /* PBXContainerItemProxy */; - }; - CEAF706BE29DF4FC8007A5FA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = surface; - targetProxy = 8489CEAA9E69008541690AC2 /* PBXContainerItemProxy */; - }; - CECE00B958801956686E3535 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources_standard; - targetProxy = 0C1B771951859F608F2FDD49 /* PBXContainerItemProxy */; - }; - CED29D01F7E6B437AA1B8F55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = translator_common; - targetProxy = 4E15B334E55007F9DE94D230 /* PBXContainerItemProxy */; - }; - CFDD3160FFD38A5A103F5C46 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = base_static; - targetProxy = 6DA1FB47544333BB8183BA62 /* PBXContainerItemProxy */; - }; - CFEE9A8D3AFA97BC2AC56599 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_strings; - targetProxy = 087A8B35F48C7BF25CF5492B /* PBXContainerItemProxy */; - }; - D4A81AA031FDFFFD564D116A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_html; - targetProxy = 43AC608B09206F6E17DC912A /* PBXContainerItemProxy */; - }; - D4B32F5B63922E4C30765E62 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = googleurl; - targetProxy = 88669534DD78077ABE86C128 /* PBXContainerItemProxy */; - }; - D4C3FDD69C6792EF9A1FCAA7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 8DBADDE353DC46B377FC4192 /* libcef_static */; - targetProxy = D34DA442DD5291029646E27F /* PBXContainerItemProxy */; - }; - D4E971F7303C938071EC5A2E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp_dsp; - targetProxy = 0C76579E2AEE0056CBF8886D /* PBXContainerItemProxy */; - }; - D6269028369F81CEE750919B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_heap_snapshot_worker_js; - targetProxy = C69A3B5976F183E0AD6AD56F /* PBXContainerItemProxy */; - }; - D62A77AB9AF0B5C6CA6DD10A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - targetProxy = 9D664659936D47D3BE9DCBE2 /* PBXContainerItemProxy */; - }; - D73B1CC21AE30C491438895B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gtest_prod; - targetProxy = 9F88B14DF9B91F41B89D9673 /* PBXContainerItemProxy */; - }; - D7C35C1D4B238BC1476638C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gtest_prod; - targetProxy = D4478BEE26730DF69FD271A7 /* PBXContainerItemProxy */; - }; - D865DA821ED58CBF81B167B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libpng; - targetProxy = BD9A2EA6CC3887454D3D097E /* PBXContainerItemProxy */; - }; - D9C00D60B7473D8C80DC41B1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_heap_snapshot_worker_js; - targetProxy = 65C898B7F1A88D5FBC16AC82 /* PBXContainerItemProxy */; - }; - D9C35CBA4217039633C22450 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = signal_processing; - targetProxy = 122D85636D403254B9FF74DC /* PBXContainerItemProxy */; - }; - DA3D488D325CBBFB1762FA73 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_css; - targetProxy = FC7759F4CB25D67D5673D434 /* PBXContainerItemProxy */; - }; - DA435D4861F6629421F8206F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = inspector_protocol_sources; - targetProxy = 2A9D12E5E0A3DEEA09DBF13C /* PBXContainerItemProxy */; - }; - DAC5C714D00EB16221DE217C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_extension_api; - targetProxy = 1830B2E1ABC7EAF923F52A0D /* PBXContainerItemProxy */; - }; - DB4DB9A8D28928F15DC54961 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = sfntly; - targetProxy = B275EEAE71F03742E3DA6801 /* PBXContainerItemProxy */; - }; - DBC2E821446337E0737E7AA1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources_standard; - targetProxy = 0CA35B9CFE081FFC1C1F4F90 /* PBXContainerItemProxy */; - }; - DCA81FD0679CDBDC87C90B95 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = net_resources; - targetProxy = C5A7D2422E9ED79A3A197BB8 /* PBXContainerItemProxy */; - }; - DD648AE0CEAD3B920AD2C49E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webrtc_video_coding; - targetProxy = FAFA66135B1078945647E8A9 /* PBXContainerItemProxy */; - }; - DDCBA090E5F6FF449541DC7B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = gtest; - targetProxy = 3D58E114847868683B50E554 /* PBXContainerItemProxy */; - }; - DE33C57E5B2E869B66768B55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_bindings; - targetProxy = 20A4907C83472A3B07A96C7E /* PBXContainerItemProxy */; - }; - DF46FDAE1F4C33EF1A3EF27C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = inspector_protocol_sources; - targetProxy = 87D1401BEE5267ED94319D3C /* PBXContainerItemProxy */; - }; - E14394DC375369022496EB91 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_resources; - targetProxy = EB017E52279082CE6740C548 /* PBXContainerItemProxy */; - }; - E2E90A60156F59E4170DA218 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_bindings; - targetProxy = F57517FEA780EBD72B6F18FD /* PBXContainerItemProxy */; - }; - E48C1957A87A9D58917A490B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 26DD2CB0340D816F3DF64EC9 /* libcef */; - targetProxy = A571737D82A42A2394A7E891 /* PBXContainerItemProxy */; - }; - E52010F8FD971760FCEFF954 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = sqlite; - targetProxy = D3A86904CD5DCC0A5F782932 /* PBXContainerItemProxy */; - }; - E55705F2149D6E6B4377C1E9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = debugger_script_source; - targetProxy = 982968A232F6FAF9BE2A3787 /* PBXContainerItemProxy */; - }; - E65DBA579EE92F66AC6A4E39 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_js; - targetProxy = CFE496C1AF614A3E880DEA31 /* PBXContainerItemProxy */; - }; - E6A0A8A887CA18F8E51725DC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = content_resources; - targetProxy = 1FBCE1DE8DADB748860FF2B6 /* PBXContainerItemProxy */; - }; - E6A5E45AC2BBCA574F629848 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = iccjpeg; - targetProxy = A28E741C9FEBAC8342FFF2F2 /* PBXContainerItemProxy */; - }; - E7BF5B47F1BE81DC0321B9FB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_devtools_grd; - targetProxy = 1EBAA26A37509D645A9BDACB /* PBXContainerItemProxy */; - }; - E7D004A9273847E38D358ED2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = skia_opts; - targetProxy = 5547482E189BB6F18FB29F43 /* PBXContainerItemProxy */; - }; - E8B5563B938B7089EFCAF709 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_resources; - targetProxy = 5C14CCA72577376126365C2A /* PBXContainerItemProxy */; - }; - E8C18615379C40545C7FBE21 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_resources; - targetProxy = ED725A9FB1C7C4B0FF7DBA95 /* PBXContainerItemProxy */; - }; - E957B3B33ABFC9FE40BFBEAA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F506A5805463407F45E5D21B /* cef_locales */; - targetProxy = 691682CC834B8FAEF8F6A51D /* PBXContainerItemProxy */; - }; - E9CA9A04B2BB0C839FE53EF9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = icudata; - targetProxy = C477E230B26B99674FE16C6E /* PBXContainerItemProxy */; - }; - EC4968AF05ED345F4C0568B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_devtools_grd; - targetProxy = ABB57020D6F6F67D1530792E /* PBXContainerItemProxy */; - }; - EC7DE7ABB6CCA086B36CB92B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_inspector_protocol_version; - targetProxy = 06713C1F841C3F1F68A985EE /* PBXContainerItemProxy */; - }; - ECFBF7E36BCF37F7495501B8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DA259FAFFD7136C8A5C881A8 /* cef_unittests */; - targetProxy = CFE92743DA9397AE9F611037 /* PBXContainerItemProxy */; - }; - ED1F3DA1BF2CBD12B366DC8E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = yuv_convert; - targetProxy = 4C2026A4C578741C75462322 /* PBXContainerItemProxy */; - }; - EE182D9359430CBC11B12B17 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = video_render_module; - targetProxy = 0065A55A9D6639BFC171990C /* PBXContainerItemProxy */; - }; - EE4FDA1878F278A35FA3AFC9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = apm_util; - targetProxy = B62D1F514CA3FC2532A713BA /* PBXContainerItemProxy */; - }; - EF89825F1F1D8C085B2D062D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 94BAF60C7C90712E7F239E35 /* libcef_dll_wrapper */; - targetProxy = 1FE166E915EB6AD8920DE9A7 /* PBXContainerItemProxy */; - }; - EFC63B579D17F4D1B0766435 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_gpu; - targetProxy = E94C0C60B7AFE63BBE0B5470 /* PBXContainerItemProxy */; - }; - F0B723B4F97690C506395CBB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = sdch; - targetProxy = D6587A772AD1B4D18637C802 /* PBXContainerItemProxy */; - }; - F0CA185DCC290D621BFBCFD1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 2E847C594D99442F54D6FA7B /* cef_strings */; - targetProxy = 853A1330852D346AD017EE16 /* PBXContainerItemProxy */; - }; - F1B2B92053DF854D163A1553 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources; - targetProxy = E6910964CC71673EA2FBC79D /* PBXContainerItemProxy */; - }; - F1C03BDF885790512F75EB01 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = net_resources; - targetProxy = 183462F2B21573387F07286B /* PBXContainerItemProxy */; - }; - F2679D3E14329F842B356CAA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = database; - targetProxy = 891D10A69BD088AB45ED563D /* PBXContainerItemProxy */; - }; - F2BB4FA3B940C07D89157EC9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_extension_api; - targetProxy = E8327162A6B7F0E5B8C34C1D /* PBXContainerItemProxy */; - }; - F34A8190B10255E6B5E7245E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_css; - targetProxy = BE4E7BC41BF33A6705FB3111 /* PBXContainerItemProxy */; - }; - F43C88B1CC50EBB3FAEECBDE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = preprocessor; - targetProxy = 62EF434C253260FC8FE714A8 /* PBXContainerItemProxy */; - }; - F48E6804BAFE55960848350C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_content_resources; - targetProxy = 14AABBA826DE5C6C9B6465A6 /* PBXContainerItemProxy */; - }; - F4B1DAFAEBE2F272F77A1157 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = devtools_extension_api; - targetProxy = 5F7C27B24FC162FB9813CC26 /* PBXContainerItemProxy */; - }; - F6209F2F154B8EDAC16F5D24 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = dynamic_annotations; - targetProxy = 16F0B818474A0285294912F5 /* PBXContainerItemProxy */; - }; - F62351C167200E946175EF15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_platform; - targetProxy = 34D1CF272CE65F9A39DDD963 /* PBXContainerItemProxy */; - }; - F62CE60DD219AB04B67F1065 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = generate_devtools_grd; - targetProxy = EBD3B14199A6BACC74036512 /* PBXContainerItemProxy */; - }; - F7BC8BF9A2CEC8FA8D4992A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_script_formatter_worker_js; - targetProxy = A9CA87B6D4E69017E9F20693 /* PBXContainerItemProxy */; - }; - F8D0C8803EDBC67FD6553421 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = media; - targetProxy = 70582AA93F08BA41908FED77 /* PBXContainerItemProxy */; - }; - F8DA36B1F207ED049BC8B1B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webcore_rendering; - targetProxy = 6C56C8016760A7D376CA24D1 /* PBXContainerItemProxy */; - }; - F8FBEA78C0E87AC82CC5990F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webkit_resources; - targetProxy = 2E86B31897F952E4E9CDAB58 /* PBXContainerItemProxy */; - }; - F9BD1E0CF1BF1CE250FDCB42 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = mach_override; - targetProxy = 3200E00B80EA473B4DD27553 /* PBXContainerItemProxy */; - }; - F9C625D2D07F3429FB9B0A86 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ui_resources; - targetProxy = 9C1516C2A8DB489541CF69A6 /* PBXContainerItemProxy */; - }; - FA1E0AA7915B8467B9684838 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_heap_snapshot_worker_js; - targetProxy = 811A770259ECD862EA4F1BFD /* PBXContainerItemProxy */; - }; - FA5AC5784CF82BFB7E445A9A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = base; - targetProxy = 88188A34571CF694C61B1933 /* PBXContainerItemProxy */; - }; - FB18C19A700F0008333FB2B2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = dom_storage; - targetProxy = 2B2EE32C90EFFA776B326380 /* PBXContainerItemProxy */; - }; - FB2DDCC207B854AD4FA2BD55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp_enc; - targetProxy = A433AB69035674FAD93254AD /* PBXContainerItemProxy */; - }; - FC4FC4583C47C1909FF4DDB4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = webrtc_jpeg; - targetProxy = 2DC0B73434700491AD419D40 /* PBXContainerItemProxy */; - }; - FC74A51F8B1C1F3E93952A9C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = concatenated_devtools_css; - targetProxy = 612B234078CD9D9B606B6248 /* PBXContainerItemProxy */; - }; - FDB175F4706DD32BC8642CBA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = sudden_motion_sensor; - targetProxy = 8FF3AA87114F0E63F0DFB512 /* PBXContainerItemProxy */; - }; - FE2FCE7EA59AC634052A5124 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 34C94585C2266BDAEE3DB526 /* cef_pak */; - targetProxy = 89968FBB98A71E24114B71B4 /* PBXContainerItemProxy */; - }; - FF0396C5BADD3C1A6445DEE2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F506A5805463407F45E5D21B /* cef_locales */; - targetProxy = C04A5DCE600A75EC791276D2 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 504BF73960853BE20696B75A /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 4F41E3D04AC393353B1EF8B1 /* English */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - 880329B56217F29FD88D58FE /* MainMenu.xib */ = { - isa = PBXVariantGroup; - children = ( - 72FB6EEF729DD9BE4DE9913C /* English */, - ); - name = MainMenu.xib; - sourceTree = ""; - }; - 8C0268548C079EBC071390BF /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 668C83DE4FD97FDAF9A1743C /* English */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - 9E74CA2249E727B65B812091 /* locale.pak */ = { - isa = PBXVariantGroup; - children = ( - D0C928E6B9A90B8E7C82948B /* am */, - 2887799486DC2264974AAA31 /* ar */, - DDA467E96A26AD4D03D9510E /* bg */, - BC2DBEF9AEE291FE9536BFF8 /* bn */, - 4EFE292D06E344DCCB3F36DA /* ca */, - 62D155EAC030B92E5833CC71 /* cs */, - 74EF14161F0A734FCB88E4D8 /* da */, - B631AEBC75354D3C9BAD7E60 /* de */, - 12E42A64F19E4B183A87E741 /* el */, - 1AF072F4E95AF8E70575FDC6 /* en */, - C8B2E4A52DE2C4516E90AF0A /* en_GB */, - 17FE54DB3FAE1BF5BF29F441 /* es */, - 6DE552DE833DCAC5A7DF4BE7 /* es_419 */, - D9A70811C1CA0449A9BB8F23 /* et */, - 93817B77718BE477E11D1B77 /* fa */, - B1BC0DCCB17AA248A0D577F9 /* fi */, - 07B50631033A1D31193C99F0 /* fil */, - FB89F2BDE176C61ABD9F21FE /* fr */, - 821F22742E14E5EBB9BD5C10 /* gu */, - 1974FF0ADD0407E965545E45 /* he */, - 1C5196D5A93468A76CA3C7F1 /* hi */, - 6741F51DA01588D368B31427 /* hr */, - C1C9F222C0F4DDAD2BB19DE2 /* hu */, - 1C834CCB1E55E906499F26DE /* id */, - A287C0A02FC93659AE3E9641 /* it */, - 9957A9B688C530DBDCD91F85 /* ja */, - C6928DEF7F0D141CA277C6D9 /* kn */, - 7A7D3194355A8B0B087AB0F7 /* ko */, - 6AAF07370A423CF8AC644D16 /* lt */, - AE444896E4C5BBC3F0B079B4 /* lv */, - CBD002A1963C4F53D11B5870 /* ml */, - D31E19966B4FFD0C7AFFC86C /* mr */, - 2F4E80723D53CD819926DBBC /* ms */, - B1072A8812268AA3912AD3A9 /* nb */, - 9EDDA92B6B176C1235419654 /* nl */, - 73467F9CB00DFEDF2093D88B /* pl */, - A20BA18DE54D9DF5B47E2884 /* pt_BR */, - B8D92CFE5FE010A20C2DE9E0 /* pt_PT */, - 03C4C78B8596116BFD2BEED2 /* ro */, - 5B71AA10477E9E5993D8F79B /* ru */, - E331A5FC069C0C31B73E896D /* sk */, - 6A120E36DD430329E402BAD5 /* sl */, - B28771FABF438DE250C9A59F /* sr */, - 4A8F5A7994245C71941FF80A /* sv */, - DBC9ADD36C96688115653866 /* sw */, - FC5475BF8937399DFD353D03 /* ta */, - 796D220B79FC44A95CE17BDE /* te */, - 5077ADEACE5517E5F138A071 /* th */, - AE6EDF6B7A543E0AC126F13E /* tr */, - 02C3921F366D7D841D6667B0 /* uk */, - 85AE1E1E67C77F50EA88BD66 /* vi */, - 60BDE740DC8E69DC493B2F84 /* zh_CN */, - 83813FFC96ED9BA50A4F2072 /* zh_TW */, - ); - name = locale.pak; - sourceTree = ""; - }; - C312F72C568701E9B4651474 /* MainMenu.xib */ = { - isa = PBXVariantGroup; - children = ( - C2246857E5328D3CA26856D2 /* English */, - ); - name = MainMenu.xib; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 0B11CAE87B86BCDA1071EFFF /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - EXECUTABLE_PREFIX = lib; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"BUILDING_CEF_SHARED\"", - "\"SK_BUILD_NO_IMAGE_ENCODE\"", - "\"GR_GL_CUSTOM_SETUP_HEADER=\\\"GrGLConfig_chrome.h\\\"\"", - "\"GR_AGGRESSIVE_SHADER_OPTS=1\"", - "\"U_USING_ICU_NAMESPACE=0\"", - "\"U_STATIC_IMPLEMENTATION\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - "\"_DEBUG\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ../third_party/icu/public/i18n, - ../third_party/icu/public/common, - ., - ../third_party/khronos, - .., - "$(SHARED_INTERMEDIATE_DIR)/content", - ../skia/config, - ../third_party/skia/include/config, - ../third_party/skia/include/core, - ../third_party/skia/include/effects, - ../third_party/skia/include/pdf, - ../third_party/skia/include/gpu, - ../third_party/skia/include/gpu/gl, - ../third_party/skia/include/ports, - ../third_party/skia/include/utils, - ../skia/ext, - ../third_party/skia/include/utils/mac, - ../third_party/npapi, - ../third_party/npapi/bindings, - ../v8/include, - ); - INSTALL_PATH = "@executable_path"; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = ( - "$(SDKROOT)/System/Library/Frameworks", - "$(BUILT_PRODUCTS_DIR)", - ); - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = ( - "-Wl,-ObjC", - "-Wl,-search_paths_first", - ); - PRODUCT_NAME = cef; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Debug; - }; - 0CA785BAC652A740FEDD3EEA /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings", - "$(SHARED_INTERMEDIATE_DIR)/webkit", - "$(SHARED_INTERMEDIATE_DIR)/cef", - ); - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = "-Wl,-search_paths_first"; - PRODUCT_NAME = cef_locales; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Debug; - }; - 1EA5CC4C789D20059C96ED45 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - INTERMEDIATE_DIR = "$(PROJECT_DERIVED_FILE_DIR)/$(CONFIGURATION)"; - SDKROOT = macosx10.6; - SHARED_INTERMEDIATE_DIR = "$(SYMROOT)/DerivedSources/$(CONFIGURATION)"; - SYMROOT = ../xcodebuild; - }; - name = Debug; - }; - 1F2B12072EFE0FB85B1D218B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"UNIT_TEST\"", - "\"GTEST_HAS_RTTI=0\"", - "\"GTEST_USE_OWN_TR1_TUPLE=1\"", - "\"U_USING_ICU_NAMESPACE=0\"", - "\"U_STATIC_IMPLEMENTATION\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ../third_party/icu/public/common, - ../third_party/icu/public/i18n, - ., - ../third_party/khronos, - .., - ../testing/gtest/include, - ); - INFOPLIST_FILE = "tests/cefclient/mac/helper-Info.plist"; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = "cef_unittests Helper"; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - WRAPPER_PREFIX = ""; - }; - name = Release; - }; - 1FEC448F6319CE585410BF7D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = All; - }; - name = Debug; - }; - 388EAAEB77349E4A43824356 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - EXECUTABLE_PREFIX = lib; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"BUILDING_CEF_SHARED\"", - "\"SK_BUILD_NO_IMAGE_ENCODE\"", - "\"GR_GL_CUSTOM_SETUP_HEADER=\\\"GrGLConfig_chrome.h\\\"\"", - "\"GR_AGGRESSIVE_SHADER_OPTS=1\"", - "\"LIBXML_STATIC\"", - "\"U_USING_ICU_NAMESPACE=0\"", - "\"U_STATIC_IMPLEMENTATION\"", - "\"ENABLE_3D_PLUGIN=1\"", - "\"ENABLE_BATTERY_STATUS=0\"", - "\"ENABLE_BLOB=1\"", - "\"ENABLE_BLOB_SLICE=1\"", - "\"ENABLE_CHANNEL_MESSAGING=1\"", - "\"ENABLE_CSS3_FLEXBOX=1\"", - "\"ENABLE_CSS_BOX_DECORATION_BREAK=1\"", - "\"ENABLE_CSS_EXCLUSIONS=1\"", - "\"ENABLE_CSS_FILTERS=1\"", - "\"ENABLE_CSS_IMAGE_SET=1\"", - "\"ENABLE_CSS_IMAGE_RESOLUTION=0\"", - "\"ENABLE_CSS_REGIONS=1\"", - "\"ENABLE_CSS_SHADERS=1\"", - "\"ENABLE_CSS_VARIABLES=0\"", - "\"ENABLE_CUSTOM_SCHEME_HANDLER=0\"", - "\"ENABLE_DATALIST=1\"", - "\"ENABLE_DASHBOARD_SUPPORT=0\"", - "\"ENABLE_DATA_TRANSFER_ITEMS=1\"", - "\"ENABLE_DETAILS=1\"", - "\"ENABLE_DEVICE_ORIENTATION=1\"", - "\"ENABLE_DIRECTORY_UPLOAD=1\"", - "\"ENABLE_DOWNLOAD_ATTRIBUTE=1\"", - "\"ENABLE_ENCRYPTED_MEDIA=1\"", - "\"ENABLE_FILE_SYSTEM=1\"", - "\"ENABLE_FILTERS=1\"", - "\"ENABLE_FULLSCREEN_API=1\"", - "\"ENABLE_GAMEPAD=1\"", - "\"ENABLE_GEOLOCATION=1\"", - "\"ENABLE_GESTURE_EVENTS=1\"", - "\"ENABLE_ICONDATABASE=0\"", - "\"ENABLE_IFRAME_SEAMLESS=1\"", - "\"ENABLE_INDEXED_DATABASE=1\"", - "\"ENABLE_INPUT_TYPE_DATE=1\"", - "\"ENABLE_JAVASCRIPT_DEBUGGER=1\"", - "\"ENABLE_LEGACY_CSS_VENDOR_PREFIXES=0\"", - "\"ENABLE_LEGACY_WEBKIT_BLOB_BUILDER=1\"", - "\"ENABLE_LINK_PREFETCH=1\"", - "\"ENABLE_LINK_PRERENDER=1\"", - "\"ENABLE_MEDIA_SOURCE=1\"", - "\"ENABLE_MEDIA_STATISTICS=1\"", - "\"ENABLE_METER_TAG=1\"", - "\"ENABLE_MHTML=1\"", - "\"ENABLE_MICRODATA=0\"", - "\"ENABLE_MUTATION_OBSERVERS=1\"", - "\"ENABLE_PAGE_VISIBILITY_API=1\"", - "\"ENABLE_POINTER_LOCK=1\"", - "\"ENABLE_PROGRESS_TAG=1\"", - "\"ENABLE_QUOTA=1\"", - "\"ENABLE_REGISTER_PROTOCOL_HANDLER=1\"", - "\"ENABLE_REQUEST_ANIMATION_FRAME=1\"", - "\"ENABLE_RUBY=1\"", - "\"ENABLE_SANDBOX=1\"", - "\"ENABLE_SCRIPTED_SPEECH=1\"", - "\"ENABLE_SHADOW_DOM=1\"", - "\"ENABLE_SMOOTH_SCROLLING=1\"", - "\"ENABLE_SQL_DATABASE=1\"", - "\"ENABLE_STYLE_SCOPED=1\"", - "\"ENABLE_SVG=1\"", - "\"ENABLE_SVG_FONTS=1\"", - "\"ENABLE_TOUCH_ADJUSTMENT=1\"", - "\"ENABLE_TOUCH_EVENTS=1\"", - "\"ENABLE_TOUCH_ICON_LOADING=0\"", - "\"ENABLE_V8_SCRIPT_DEBUG_SERVER=1\"", - "\"ENABLE_VIDEO=1\"", - "\"ENABLE_VIDEO_TRACK=1\"", - "\"ENABLE_VIEWPORT=1\"", - "\"ENABLE_WEBGL=1\"", - "\"ENABLE_WEB_SOCKETS=1\"", - "\"ENABLE_WEB_TIMING=1\"", - "\"ENABLE_WORKERS=1\"", - "\"ENABLE_XHR_RESPONSE_BLOB=1\"", - "\"ENABLE_XSLT=1\"", - "\"WTF_USE_LEVELDB=1\"", - "\"WTF_USE_BUILTIN_UTF8_CODEC=1\"", - "\"WTF_USE_OPENTYPE_SANITIZER=1\"", - "\"WTF_USE_RTL_SCROLLBAR=1\"", - "\"WTF_USE_SKIA_TEXT=1\"", - "\"WTF_USE_WEBP=1\"", - "\"WTF_USE_WEBKIT_IMAGE_DECODERS=1\"", - "\"ENABLE_CALENDAR_PICKER=1\"", - "\"ENABLE_FONT_BOOSTING=0\"", - "\"ENABLE_FULLSCREEN_MEDIA_CONTROLS=1\"", - "\"ENABLE_INPUT_SPEECH=1\"", - "\"ENABLE_JAVASCRIPT_I18N_API=1\"", - "\"ENABLE_LEGACY_NOTIFICATIONS=1\"", - "\"ENABLE_MEDIA_CAPTURE=0\"", - "\"ENABLE_MEDIA_STREAM=1\"", - "\"ENABLE_NOTIFICATIONS=1\"", - "\"ENABLE_ORIENTATION_EVENTS=0\"", - "\"ENABLE_OVERFLOW_SCROLLING=0\"", - "\"ENABLE_PAGE_POPUP=1\"", - "\"ENABLE_SHARED_WORKERS=1\"", - "\"ENABLE_WEB_AUDIO=1\"", - "\"ENABLE_INPUT_TYPE_COLOR=1\"", - "\"WTF_USE_ACCELERATED_COMPOSITING=1\"", - "\"ENABLE_3D_RENDERING=1\"", - "\"ENABLE_ACCELERATED_2D_CANVAS=1\"", - "\"ENABLE_RUBBER_BANDING=1\"", - "\"WTF_USE_SKIA_ON_MAC_CHROMIUM=1\"", - "\"BUILDING_CHROMIUM__=1\"", - "\"USE_SYSTEM_MALLOC=1\"", - "\"WTF_USE_NEW_THEME=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - "\"_DEBUG\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ../third_party/icu/public/i18n, - ../third_party/icu/public/common, - ., - ../third_party/WebKit/Source/WebKit/chromium/public, - "$(SHARED_INTERMEDIATE_DIR)/cef", - ../third_party/khronos, - .., - "$(SHARED_INTERMEDIATE_DIR)/content", - ../skia/config, - ../third_party/skia/include/config, - ../third_party/skia/include/core, - ../third_party/skia/include/effects, - ../third_party/skia/include/pdf, - ../third_party/skia/include/gpu, - ../third_party/skia/include/gpu/gl, - ../third_party/skia/include/ports, - ../third_party/skia/include/utils, - ../skia/ext, - ../third_party/skia/include/utils/mac, - ../third_party/libxml/mac/include, - ../third_party/libxml/src/include, - ../third_party/WebKit/Source/WebCore/, - ../third_party/WebKit/Source, - ../third_party/WebKit/Source/WebCore/Modules/battery, - ../third_party/WebKit/Source/WebCore/Modules/filesystem, - ../third_party/WebKit/Source/WebCore/Modules/filesystem/chromium, - ../third_party/WebKit/Source/WebCore/Modules/gamepad, - ../third_party/WebKit/Source/WebCore/Modules/geolocation, - ../third_party/WebKit/Source/WebCore/Modules/intents, - ../third_party/WebKit/Source/WebCore/Modules/indexeddb, - ../third_party/WebKit/Source/WebCore/Modules/mediastream, - ../third_party/WebKit/Source/WebCore/Modules/quota, - ../third_party/WebKit/Source/WebCore/Modules/speech, - ../third_party/WebKit/Source/WebCore/Modules/webaudio, - ../third_party/WebKit/Source/WebCore/Modules/webdatabase, - ../third_party/WebKit/Source/WebCore/Modules/webdatabase/chromium, - ../third_party/WebKit/Source/WebCore/Modules/websockets, - ../third_party/WebKit/Source/WebCore/accessibility, - ../third_party/WebKit/Source/WebCore/accessibility/chromium, - ../third_party/WebKit/Source/WebCore/bindings, - ../third_party/WebKit/Source/WebCore/bindings/generic, - ../third_party/WebKit/Source/WebCore/bindings/v8, - ../third_party/WebKit/Source/WebCore/bindings/v8/custom, - ../third_party/WebKit/Source/WebCore/bindings/v8/specialization, - ../third_party/WebKit/Source/WebCore/bridge, - ../third_party/WebKit/Source/WebCore/bridge/jni, - ../third_party/WebKit/Source/WebCore/bridge/jni/v8, - ../third_party/WebKit/Source/WebCore/css, - ../third_party/WebKit/Source/WebCore/dom, - ../third_party/WebKit/Source/WebCore/dom/default, - ../third_party/WebKit/Source/WebCore/editing, - ../third_party/WebKit/Source/WebCore/fileapi, - ../third_party/WebKit/Source/WebCore/history, - ../third_party/WebKit/Source/WebCore/html, - ../third_party/WebKit/Source/WebCore/html/canvas, - ../third_party/WebKit/Source/WebCore/html/parser, - ../third_party/WebKit/Source/WebCore/html/shadow, - ../third_party/WebKit/Source/WebCore/html/track, - ../third_party/WebKit/Source/WebCore/inspector, - ../third_party/WebKit/Source/WebCore/loader, - ../third_party/WebKit/Source/WebCore/loader/appcache, - ../third_party/WebKit/Source/WebCore/loader/archive, - ../third_party/WebKit/Source/WebCore/loader/archive/cf, - ../third_party/WebKit/Source/WebCore/loader/archive/mhtml, - ../third_party/WebKit/Source/WebCore/loader/cache, - ../third_party/WebKit/Source/WebCore/loader/icon, - ../third_party/WebKit/Source/WebCore/mathml, - ../third_party/WebKit/Source/WebCore/notifications, - ../third_party/WebKit/Source/WebCore/page, - ../third_party/WebKit/Source/WebCore/page/animation, - ../third_party/WebKit/Source/WebCore/page/chromium, - ../third_party/WebKit/Source/WebCore/page/scrolling, - ../third_party/WebKit/Source/WebCore/platform, - ../third_party/WebKit/Source/WebCore/platform/animation, - ../third_party/WebKit/Source/WebCore/platform/audio, - ../third_party/WebKit/Source/WebCore/platform/audio/chromium, - ../third_party/WebKit/Source/WebCore/platform/chromium, - ../third_party/WebKit/Source/WebCore/platform/chromium/support, - ../third_party/WebKit/Source/WebCore/platform/graphics, - ../third_party/WebKit/Source/WebCore/platform/graphics/chromium, - ../third_party/WebKit/Source/WebCore/platform/graphics/filters, - ../third_party/WebKit/Source/WebCore/platform/graphics/filters/arm, - ../third_party/WebKit/Source/WebCore/platform/graphics/gpu, - ../third_party/WebKit/Source/WebCore/platform/graphics/opentype, - ../third_party/WebKit/Source/WebCore/platform/graphics/skia, - ../third_party/WebKit/Source/WebCore/platform/graphics/transforms, - "../third_party/WebKit/Source/WebCore/platform/image-decoders", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/bmp", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/gif", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/ico", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/jpeg", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/png", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/skia", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/webp", - "../third_party/WebKit/Source/WebCore/platform/image-encoders/skia", - ../third_party/WebKit/Source/WebCore/platform/leveldb, - ../third_party/WebKit/Source/WebCore/platform/mediastream, - ../third_party/WebKit/Source/WebCore/platform/mediastream/chromium, - ../third_party/WebKit/Source/WebCore/platform/mock, - ../third_party/WebKit/Source/WebCore/platform/network, - ../third_party/WebKit/Source/WebCore/platform/network/chromium, - ../third_party/WebKit/Source/WebCore/platform/sql, - ../third_party/WebKit/Source/WebCore/platform/text, - ../third_party/WebKit/Source/WebCore/platform/text/transcoder, - ../third_party/WebKit/Source/WebCore/plugins, - ../third_party/WebKit/Source/WebCore/plugins/chromium, - ../third_party/WebKit/Source/WebCore/rendering, - ../third_party/WebKit/Source/WebCore/rendering/style, - ../third_party/WebKit/Source/WebCore/rendering/svg, - ../third_party/WebKit/Source/WebCore/storage, - ../third_party/WebKit/Source/WebCore/storage/chromium, - ../third_party/WebKit/Source/WebCore/svg, - ../third_party/WebKit/Source/WebCore/svg/animation, - ../third_party/WebKit/Source/WebCore/svg/graphics, - ../third_party/WebKit/Source/WebCore/svg/graphics/filters, - ../third_party/WebKit/Source/WebCore/svg/properties, - ../third_party/WebKit/Source/ThirdParty/glu, - ../third_party/WebKit/Source/WebCore/workers, - ../third_party/WebKit/Source/WebCore/xml, - ../third_party/WebKit/Source/WebCore/xml/parser, - ../third_party/WebKit/Source/WebCore/platform/audio/mac, - ../third_party/WebKit/Source/WebCore/platform/cocoa, - ../third_party/WebKit/Source/WebCore/platform/graphics/cg, - ../third_party/WebKit/Source/WebCore/platform/graphics/cocoa, - ../third_party/WebKit/Source/WebCore/platform/graphics/mac, - ../third_party/WebKit/Source/WebCore/platform/mac, - ../third_party/WebKit/Source/WebCore/platform/text/mac, - ../third_party/WebKit/Source/WebCore/platform/graphics/harfbuzz, - ../third_party/WebKit/Source/WebCore/platform/graphics/harfbuzz/ng, - ../third_party/apple_webkit, - ../third_party/WebKit/Source/WebKit/mac/WebCoreSupport, - "$(SHARED_INTERMEDIATE_DIR)/webkit", - "$(SHARED_INTERMEDIATE_DIR)/webkit/bindings", - ../third_party/WebKit/Source/WTF/, - ../third_party/WebKit/Source/JavaScriptCore, - ../third_party/npapi, - ../third_party/npapi/bindings, - ../v8/include, - ); - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - PRODUCT_NAME = cef_static; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Debug; - }; - 39A28F6B600F8332458F5D57 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - INTERMEDIATE_DIR = "$(PROJECT_DERIVED_FILE_DIR)/$(CONFIGURATION)"; - SDKROOT = macosx10.6; - SHARED_INTERMEDIATE_DIR = "$(SYMROOT)/DerivedSources/$(CONFIGURATION)"; - SYMROOT = ../xcodebuild; - }; - name = Release; - }; - 3C9F01671BED3F3FE4770C7F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"UNIT_TEST\"", - "\"GTEST_HAS_RTTI=0\"", - "\"GTEST_USE_OWN_TR1_TUPLE=1\"", - "\"U_USING_ICU_NAMESPACE=0\"", - "\"U_STATIC_IMPLEMENTATION\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - "\"_DEBUG\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ../third_party/icu/public/common, - ../third_party/icu/public/i18n, - ., - ../third_party/khronos, - .., - ../testing/gtest/include, - ); - INFOPLIST_FILE = tests/unittests/mac/Info.plist; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = cef_unittests; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - WRAPPER_PREFIX = ""; - }; - name = Debug; - }; - 447FA390B7AABFB46F3CFF10 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - "\"_DEBUG\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - tests, - ../third_party/khronos, - .., - ); - INFOPLIST_FILE = "tests/cefclient/mac/helper-Info.plist"; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = "cefclient Helper"; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - "-Wexit-time-destructors", - ); - WRAPPER_PREFIX = ""; - }; - name = Debug; - }; - 48D37D50CFEC156A8F02584E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - tests, - atom, - ../third_party/khronos, - .., - ); - INFOPLIST_FILE = tests/cefclient/mac/Info.plist; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = Atom; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - WRAPPER_PREFIX = ""; - }; - name = Release; - }; - 4911B1797B4CF1854E519A38 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - "$(SHARED_INTERMEDIATE_DIR)/webkit", - "$(SHARED_INTERMEDIATE_DIR)/content", - "$(SHARED_INTERMEDIATE_DIR)/net", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_resources", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard", - "$(SHARED_INTERMEDIATE_DIR)/cef", - ); - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = "-Wl,-search_paths_first"; - PRODUCT_NAME = cef_pak; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Release; - }; - 495933C57FB159951816B3AB /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - "\"_DEBUG\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - tests, - atom, - ../third_party/khronos, - .., - ); - INFOPLIST_FILE = tests/cefclient/mac/Info.plist; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = Atom; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - WRAPPER_PREFIX = ""; - }; - name = Debug; - }; - 4BAAF65C8238704CBAF7A70D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = "-Wl,-search_paths_first"; - PRODUCT_NAME = cef_strings; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Debug; - }; - 4E0402305AA0A85B9CC1024F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "cef_unittests Helper"; - }; - name = Debug; - }; - 5F9D7DDEA9133A4D5B650D84 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "Run All Tests"; - }; - name = Release; - }; - 64CEF8A17C9F2BE97232BDBC /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "Run All Tests"; - }; - name = Debug; - }; - 79EF47A0598EC44A455BCEC5 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - tests, - ../third_party/khronos, - .., - ); - INFOPLIST_FILE = tests/cefclient/mac/Info.plist; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = cefclient; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - WRAPPER_PREFIX = ""; - }; - name = Release; - }; - 7B196ABA18B800D1C54C9801 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = "-Wl,-search_paths_first"; - PRODUCT_NAME = cef_resources; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Release; - }; - 8DA91A22864591030822BF75 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - "\"_DEBUG\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - tests, - ../third_party/khronos, - .., - ); - INFOPLIST_FILE = "tests/cefclient/mac/helper-Info.plist"; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = "Atom Helper"; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - "-Wexit-time-destructors", - ); - WRAPPER_PREFIX = ""; - }; - name = Debug; - }; - 9362FF0A666E37006D1E8EA8 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - "\"_DEBUG\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - tests, - ../third_party/khronos, - .., - ); - INFOPLIST_FILE = tests/cefclient/mac/Info.plist; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = cefclient; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - WRAPPER_PREFIX = ""; - }; - name = Debug; - }; - 94A0D69031EE60C7C655BA8E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = cef_unittests; - }; - name = Release; - }; - 9E40E0949E7E4D608BB46236 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - "$(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_strings", - "$(SHARED_INTERMEDIATE_DIR)/webkit", - "$(SHARED_INTERMEDIATE_DIR)/cef", - ); - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = "-Wl,-search_paths_first"; - PRODUCT_NAME = cef_locales; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Release; - }; - 9ED69BE9396DDA160FF9D394 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - EXECUTABLE_PREFIX = lib; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - "\"_DEBUG\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - ../third_party/khronos, - .., - ); - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - PRODUCT_NAME = cef_dll_wrapper; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Debug; - }; - AFCB25F61F80B8DF9C126AA6 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "cef_unittests Helper"; - }; - name = Release; - }; - B323320A87D9B6ABFF9772EB /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - EXECUTABLE_PREFIX = lib; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - ../third_party/khronos, - .., - ); - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - PRODUCT_NAME = cef_dll_wrapper; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Release; - }; - B346823DF1A47C5E2FD97897 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"UNIT_TEST\"", - "\"GTEST_HAS_RTTI=0\"", - "\"GTEST_USE_OWN_TR1_TUPLE=1\"", - "\"U_USING_ICU_NAMESPACE=0\"", - "\"U_STATIC_IMPLEMENTATION\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ../third_party/icu/public/common, - ../third_party/icu/public/i18n, - ., - ../third_party/khronos, - .., - ../testing/gtest/include, - ); - INFOPLIST_FILE = tests/unittests/mac/Info.plist; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = cef_unittests; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - WRAPPER_PREFIX = ""; - }; - name = Release; - }; - B6F26756C398D91FBD18A76A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = All; - }; - name = Release; - }; - BA4F904BCC839492D1D61E27 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - tests, - ../third_party/khronos, - .., - ); - INFOPLIST_FILE = "tests/cefclient/mac/helper-Info.plist"; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = "cefclient Helper"; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - "-Wexit-time-destructors", - ); - WRAPPER_PREFIX = ""; - }; - name = Release; - }; - BA58EFEB072F3EDA6FC0B639 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"UNIT_TEST\"", - "\"GTEST_HAS_RTTI=0\"", - "\"GTEST_USE_OWN_TR1_TUPLE=1\"", - "\"U_USING_ICU_NAMESPACE=0\"", - "\"U_STATIC_IMPLEMENTATION\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - "\"_DEBUG\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ../third_party/icu/public/common, - ../third_party/icu/public/i18n, - ., - ../third_party/khronos, - .., - ../testing/gtest/include, - ); - INFOPLIST_FILE = "tests/cefclient/mac/helper-Info.plist"; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = "cef_unittests Helper"; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - WRAPPER_PREFIX = ""; - }; - name = Debug; - }; - C292DF767D7DBC3A9B01F8B2 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - EXECUTABLE_PREFIX = lib; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"BUILDING_CEF_SHARED\"", - "\"SK_BUILD_NO_IMAGE_ENCODE\"", - "\"GR_GL_CUSTOM_SETUP_HEADER=\\\"GrGLConfig_chrome.h\\\"\"", - "\"GR_AGGRESSIVE_SHADER_OPTS=1\"", - "\"U_USING_ICU_NAMESPACE=0\"", - "\"U_STATIC_IMPLEMENTATION\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ../third_party/icu/public/i18n, - ../third_party/icu/public/common, - ., - ../third_party/khronos, - .., - "$(SHARED_INTERMEDIATE_DIR)/content", - ../skia/config, - ../third_party/skia/include/config, - ../third_party/skia/include/core, - ../third_party/skia/include/effects, - ../third_party/skia/include/pdf, - ../third_party/skia/include/gpu, - ../third_party/skia/include/gpu/gl, - ../third_party/skia/include/ports, - ../third_party/skia/include/utils, - ../skia/ext, - ../third_party/skia/include/utils/mac, - ../third_party/npapi, - ../third_party/npapi/bindings, - ../v8/include, - ); - INSTALL_PATH = "@executable_path"; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = ( - "$(SDKROOT)/System/Library/Frameworks", - "$(BUILT_PRODUCTS_DIR)", - ); - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = ( - "-Wl,-ObjC", - "-Wl,-search_paths_first", - ); - PRODUCT_NAME = cef; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Release; - }; - DA105689FBC605011197124A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = "-Wl,-search_paths_first"; - PRODUCT_NAME = cef_resources; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Debug; - }; - DAAA25CDB0B58FF4FD22A4DC /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - EXECUTABLE_PREFIX = lib; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"BUILDING_CEF_SHARED\"", - "\"SK_BUILD_NO_IMAGE_ENCODE\"", - "\"GR_GL_CUSTOM_SETUP_HEADER=\\\"GrGLConfig_chrome.h\\\"\"", - "\"GR_AGGRESSIVE_SHADER_OPTS=1\"", - "\"LIBXML_STATIC\"", - "\"U_USING_ICU_NAMESPACE=0\"", - "\"U_STATIC_IMPLEMENTATION\"", - "\"ENABLE_3D_PLUGIN=1\"", - "\"ENABLE_BATTERY_STATUS=0\"", - "\"ENABLE_BLOB=1\"", - "\"ENABLE_BLOB_SLICE=1\"", - "\"ENABLE_CHANNEL_MESSAGING=1\"", - "\"ENABLE_CSS3_FLEXBOX=1\"", - "\"ENABLE_CSS_BOX_DECORATION_BREAK=1\"", - "\"ENABLE_CSS_EXCLUSIONS=1\"", - "\"ENABLE_CSS_FILTERS=1\"", - "\"ENABLE_CSS_IMAGE_SET=1\"", - "\"ENABLE_CSS_IMAGE_RESOLUTION=0\"", - "\"ENABLE_CSS_REGIONS=1\"", - "\"ENABLE_CSS_SHADERS=1\"", - "\"ENABLE_CSS_VARIABLES=0\"", - "\"ENABLE_CUSTOM_SCHEME_HANDLER=0\"", - "\"ENABLE_DATALIST=1\"", - "\"ENABLE_DASHBOARD_SUPPORT=0\"", - "\"ENABLE_DATA_TRANSFER_ITEMS=1\"", - "\"ENABLE_DETAILS=1\"", - "\"ENABLE_DEVICE_ORIENTATION=1\"", - "\"ENABLE_DIRECTORY_UPLOAD=1\"", - "\"ENABLE_DOWNLOAD_ATTRIBUTE=1\"", - "\"ENABLE_ENCRYPTED_MEDIA=1\"", - "\"ENABLE_FILE_SYSTEM=1\"", - "\"ENABLE_FILTERS=1\"", - "\"ENABLE_FULLSCREEN_API=1\"", - "\"ENABLE_GAMEPAD=1\"", - "\"ENABLE_GEOLOCATION=1\"", - "\"ENABLE_GESTURE_EVENTS=1\"", - "\"ENABLE_ICONDATABASE=0\"", - "\"ENABLE_IFRAME_SEAMLESS=1\"", - "\"ENABLE_INDEXED_DATABASE=1\"", - "\"ENABLE_INPUT_TYPE_DATE=1\"", - "\"ENABLE_JAVASCRIPT_DEBUGGER=1\"", - "\"ENABLE_LEGACY_CSS_VENDOR_PREFIXES=0\"", - "\"ENABLE_LEGACY_WEBKIT_BLOB_BUILDER=1\"", - "\"ENABLE_LINK_PREFETCH=1\"", - "\"ENABLE_LINK_PRERENDER=1\"", - "\"ENABLE_MEDIA_SOURCE=1\"", - "\"ENABLE_MEDIA_STATISTICS=1\"", - "\"ENABLE_METER_TAG=1\"", - "\"ENABLE_MHTML=1\"", - "\"ENABLE_MICRODATA=0\"", - "\"ENABLE_MUTATION_OBSERVERS=1\"", - "\"ENABLE_PAGE_VISIBILITY_API=1\"", - "\"ENABLE_POINTER_LOCK=1\"", - "\"ENABLE_PROGRESS_TAG=1\"", - "\"ENABLE_QUOTA=1\"", - "\"ENABLE_REGISTER_PROTOCOL_HANDLER=1\"", - "\"ENABLE_REQUEST_ANIMATION_FRAME=1\"", - "\"ENABLE_RUBY=1\"", - "\"ENABLE_SANDBOX=1\"", - "\"ENABLE_SCRIPTED_SPEECH=1\"", - "\"ENABLE_SHADOW_DOM=1\"", - "\"ENABLE_SMOOTH_SCROLLING=1\"", - "\"ENABLE_SQL_DATABASE=1\"", - "\"ENABLE_STYLE_SCOPED=1\"", - "\"ENABLE_SVG=1\"", - "\"ENABLE_SVG_FONTS=1\"", - "\"ENABLE_TOUCH_ADJUSTMENT=1\"", - "\"ENABLE_TOUCH_EVENTS=1\"", - "\"ENABLE_TOUCH_ICON_LOADING=0\"", - "\"ENABLE_V8_SCRIPT_DEBUG_SERVER=1\"", - "\"ENABLE_VIDEO=1\"", - "\"ENABLE_VIDEO_TRACK=1\"", - "\"ENABLE_VIEWPORT=1\"", - "\"ENABLE_WEBGL=1\"", - "\"ENABLE_WEB_SOCKETS=1\"", - "\"ENABLE_WEB_TIMING=1\"", - "\"ENABLE_WORKERS=1\"", - "\"ENABLE_XHR_RESPONSE_BLOB=1\"", - "\"ENABLE_XSLT=1\"", - "\"WTF_USE_LEVELDB=1\"", - "\"WTF_USE_BUILTIN_UTF8_CODEC=1\"", - "\"WTF_USE_OPENTYPE_SANITIZER=1\"", - "\"WTF_USE_RTL_SCROLLBAR=1\"", - "\"WTF_USE_SKIA_TEXT=1\"", - "\"WTF_USE_WEBP=1\"", - "\"WTF_USE_WEBKIT_IMAGE_DECODERS=1\"", - "\"ENABLE_CALENDAR_PICKER=1\"", - "\"ENABLE_FONT_BOOSTING=0\"", - "\"ENABLE_FULLSCREEN_MEDIA_CONTROLS=1\"", - "\"ENABLE_INPUT_SPEECH=1\"", - "\"ENABLE_JAVASCRIPT_I18N_API=1\"", - "\"ENABLE_LEGACY_NOTIFICATIONS=1\"", - "\"ENABLE_MEDIA_CAPTURE=0\"", - "\"ENABLE_MEDIA_STREAM=1\"", - "\"ENABLE_NOTIFICATIONS=1\"", - "\"ENABLE_ORIENTATION_EVENTS=0\"", - "\"ENABLE_OVERFLOW_SCROLLING=0\"", - "\"ENABLE_PAGE_POPUP=1\"", - "\"ENABLE_SHARED_WORKERS=1\"", - "\"ENABLE_WEB_AUDIO=1\"", - "\"ENABLE_INPUT_TYPE_COLOR=1\"", - "\"WTF_USE_ACCELERATED_COMPOSITING=1\"", - "\"ENABLE_3D_RENDERING=1\"", - "\"ENABLE_ACCELERATED_2D_CANVAS=1\"", - "\"ENABLE_RUBBER_BANDING=1\"", - "\"WTF_USE_SKIA_ON_MAC_CHROMIUM=1\"", - "\"BUILDING_CHROMIUM__=1\"", - "\"USE_SYSTEM_MALLOC=1\"", - "\"WTF_USE_NEW_THEME=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ../third_party/icu/public/i18n, - ../third_party/icu/public/common, - ., - ../third_party/WebKit/Source/WebKit/chromium/public, - "$(SHARED_INTERMEDIATE_DIR)/cef", - ../third_party/khronos, - .., - "$(SHARED_INTERMEDIATE_DIR)/content", - ../skia/config, - ../third_party/skia/include/config, - ../third_party/skia/include/core, - ../third_party/skia/include/effects, - ../third_party/skia/include/pdf, - ../third_party/skia/include/gpu, - ../third_party/skia/include/gpu/gl, - ../third_party/skia/include/ports, - ../third_party/skia/include/utils, - ../skia/ext, - ../third_party/skia/include/utils/mac, - ../third_party/libxml/mac/include, - ../third_party/libxml/src/include, - ../third_party/WebKit/Source/WebCore/, - ../third_party/WebKit/Source, - ../third_party/WebKit/Source/WebCore/Modules/battery, - ../third_party/WebKit/Source/WebCore/Modules/filesystem, - ../third_party/WebKit/Source/WebCore/Modules/filesystem/chromium, - ../third_party/WebKit/Source/WebCore/Modules/gamepad, - ../third_party/WebKit/Source/WebCore/Modules/geolocation, - ../third_party/WebKit/Source/WebCore/Modules/intents, - ../third_party/WebKit/Source/WebCore/Modules/indexeddb, - ../third_party/WebKit/Source/WebCore/Modules/mediastream, - ../third_party/WebKit/Source/WebCore/Modules/quota, - ../third_party/WebKit/Source/WebCore/Modules/speech, - ../third_party/WebKit/Source/WebCore/Modules/webaudio, - ../third_party/WebKit/Source/WebCore/Modules/webdatabase, - ../third_party/WebKit/Source/WebCore/Modules/webdatabase/chromium, - ../third_party/WebKit/Source/WebCore/Modules/websockets, - ../third_party/WebKit/Source/WebCore/accessibility, - ../third_party/WebKit/Source/WebCore/accessibility/chromium, - ../third_party/WebKit/Source/WebCore/bindings, - ../third_party/WebKit/Source/WebCore/bindings/generic, - ../third_party/WebKit/Source/WebCore/bindings/v8, - ../third_party/WebKit/Source/WebCore/bindings/v8/custom, - ../third_party/WebKit/Source/WebCore/bindings/v8/specialization, - ../third_party/WebKit/Source/WebCore/bridge, - ../third_party/WebKit/Source/WebCore/bridge/jni, - ../third_party/WebKit/Source/WebCore/bridge/jni/v8, - ../third_party/WebKit/Source/WebCore/css, - ../third_party/WebKit/Source/WebCore/dom, - ../third_party/WebKit/Source/WebCore/dom/default, - ../third_party/WebKit/Source/WebCore/editing, - ../third_party/WebKit/Source/WebCore/fileapi, - ../third_party/WebKit/Source/WebCore/history, - ../third_party/WebKit/Source/WebCore/html, - ../third_party/WebKit/Source/WebCore/html/canvas, - ../third_party/WebKit/Source/WebCore/html/parser, - ../third_party/WebKit/Source/WebCore/html/shadow, - ../third_party/WebKit/Source/WebCore/html/track, - ../third_party/WebKit/Source/WebCore/inspector, - ../third_party/WebKit/Source/WebCore/loader, - ../third_party/WebKit/Source/WebCore/loader/appcache, - ../third_party/WebKit/Source/WebCore/loader/archive, - ../third_party/WebKit/Source/WebCore/loader/archive/cf, - ../third_party/WebKit/Source/WebCore/loader/archive/mhtml, - ../third_party/WebKit/Source/WebCore/loader/cache, - ../third_party/WebKit/Source/WebCore/loader/icon, - ../third_party/WebKit/Source/WebCore/mathml, - ../third_party/WebKit/Source/WebCore/notifications, - ../third_party/WebKit/Source/WebCore/page, - ../third_party/WebKit/Source/WebCore/page/animation, - ../third_party/WebKit/Source/WebCore/page/chromium, - ../third_party/WebKit/Source/WebCore/page/scrolling, - ../third_party/WebKit/Source/WebCore/platform, - ../third_party/WebKit/Source/WebCore/platform/animation, - ../third_party/WebKit/Source/WebCore/platform/audio, - ../third_party/WebKit/Source/WebCore/platform/audio/chromium, - ../third_party/WebKit/Source/WebCore/platform/chromium, - ../third_party/WebKit/Source/WebCore/platform/chromium/support, - ../third_party/WebKit/Source/WebCore/platform/graphics, - ../third_party/WebKit/Source/WebCore/platform/graphics/chromium, - ../third_party/WebKit/Source/WebCore/platform/graphics/filters, - ../third_party/WebKit/Source/WebCore/platform/graphics/filters/arm, - ../third_party/WebKit/Source/WebCore/platform/graphics/gpu, - ../third_party/WebKit/Source/WebCore/platform/graphics/opentype, - ../third_party/WebKit/Source/WebCore/platform/graphics/skia, - ../third_party/WebKit/Source/WebCore/platform/graphics/transforms, - "../third_party/WebKit/Source/WebCore/platform/image-decoders", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/bmp", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/gif", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/ico", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/jpeg", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/png", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/skia", - "../third_party/WebKit/Source/WebCore/platform/image-decoders/webp", - "../third_party/WebKit/Source/WebCore/platform/image-encoders/skia", - ../third_party/WebKit/Source/WebCore/platform/leveldb, - ../third_party/WebKit/Source/WebCore/platform/mediastream, - ../third_party/WebKit/Source/WebCore/platform/mediastream/chromium, - ../third_party/WebKit/Source/WebCore/platform/mock, - ../third_party/WebKit/Source/WebCore/platform/network, - ../third_party/WebKit/Source/WebCore/platform/network/chromium, - ../third_party/WebKit/Source/WebCore/platform/sql, - ../third_party/WebKit/Source/WebCore/platform/text, - ../third_party/WebKit/Source/WebCore/platform/text/transcoder, - ../third_party/WebKit/Source/WebCore/plugins, - ../third_party/WebKit/Source/WebCore/plugins/chromium, - ../third_party/WebKit/Source/WebCore/rendering, - ../third_party/WebKit/Source/WebCore/rendering/style, - ../third_party/WebKit/Source/WebCore/rendering/svg, - ../third_party/WebKit/Source/WebCore/storage, - ../third_party/WebKit/Source/WebCore/storage/chromium, - ../third_party/WebKit/Source/WebCore/svg, - ../third_party/WebKit/Source/WebCore/svg/animation, - ../third_party/WebKit/Source/WebCore/svg/graphics, - ../third_party/WebKit/Source/WebCore/svg/graphics/filters, - ../third_party/WebKit/Source/WebCore/svg/properties, - ../third_party/WebKit/Source/ThirdParty/glu, - ../third_party/WebKit/Source/WebCore/workers, - ../third_party/WebKit/Source/WebCore/xml, - ../third_party/WebKit/Source/WebCore/xml/parser, - ../third_party/WebKit/Source/WebCore/platform/audio/mac, - ../third_party/WebKit/Source/WebCore/platform/cocoa, - ../third_party/WebKit/Source/WebCore/platform/graphics/cg, - ../third_party/WebKit/Source/WebCore/platform/graphics/cocoa, - ../third_party/WebKit/Source/WebCore/platform/graphics/mac, - ../third_party/WebKit/Source/WebCore/platform/mac, - ../third_party/WebKit/Source/WebCore/platform/text/mac, - ../third_party/WebKit/Source/WebCore/platform/graphics/harfbuzz, - ../third_party/WebKit/Source/WebCore/platform/graphics/harfbuzz/ng, - ../third_party/apple_webkit, - ../third_party/WebKit/Source/WebKit/mac/WebCoreSupport, - "$(SHARED_INTERMEDIATE_DIR)/webkit", - "$(SHARED_INTERMEDIATE_DIR)/webkit/bindings", - ../third_party/WebKit/Source/WTF/, - ../third_party/WebKit/Source/JavaScriptCore, - ../third_party/npapi, - ../third_party/npapi/bindings, - ../v8/include, - ); - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - PRODUCT_NAME = cef_static; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Release; - }; - ED2F2FA63588A86CCBF34C2A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - COPY_PHASE_STRIP = NO; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=1\"", - "\"WTF_USE_DYNAMIC_ANNOTATIONS=1\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - "$(SHARED_INTERMEDIATE_DIR)/webkit", - "$(SHARED_INTERMEDIATE_DIR)/content", - "$(SHARED_INTERMEDIATE_DIR)/net", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_resources", - "$(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard", - "$(SHARED_INTERMEDIATE_DIR)/cef", - ); - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-fno-strict-aliasing", - "-fstack-protector-all", - ); - OTHER_LDFLAGS = "-Wl,-search_paths_first"; - PRODUCT_NAME = cef_pak; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Debug; - }; - EFE1A56136EEB0B6CE0DEE03 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = cef_unittests; - }; - name = Debug; - }; - F9DBB8CFF74B9A46B526FA50 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = "-Wl,-search_paths_first"; - PRODUCT_NAME = cef_strings; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - ); - }; - name = Release; - }; - FAEBF57F5E49ADC357189D53 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CC = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang"; - CLANG_WARN_CXX0X_EXTENSIONS = NO; - DEAD_CODE_STRIPPING = YES; - GCC_CW_ASM_SYNTAX = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_PASCAL_STRINGS = NO; - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_OBJC_CALL_CXX_CDTORS = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "\"CHROMIUM_BUILD\"", - "\"ENABLE_ONE_CLICK_SIGNIN\"", - "\"ENABLE_REMOTING=1\"", - "\"ENABLE_WEBRTC=1\"", - "\"ENABLE_CONFIGURATION_POLICY\"", - "\"ENABLE_INPUT_SPEECH\"", - "\"ENABLE_NOTIFICATIONS\"", - "\"ENABLE_HIDPI=1\"", - "\"ENABLE_GPU=1\"", - "\"ENABLE_EGLIMAGE=1\"", - "\"USE_SKIA=1\"", - "\"ENABLE_TASK_MANAGER=1\"", - "\"ENABLE_WEB_INTENTS=1\"", - "\"ENABLE_EXTENSIONS=1\"", - "\"ENABLE_PLUGIN_INSTALLATION=1\"", - "\"ENABLE_PROTECTOR_SERVICE=1\"", - "\"ENABLE_SESSION_SERVICE=1\"", - "\"ENABLE_THEMES=1\"", - "\"ENABLE_BACKGROUND=1\"", - "\"ENABLE_PROMO_RESOURCE_SERVICE=1\"", - "\"ENABLE_AUTOMATION=1\"", - "\"ENABLE_PRINTING=1\"", - "\"ENABLE_CAPTIVE_PORTAL_DETECTION=1\"", - "\"USING_CEF_SHARED\"", - "\"__STDC_FORMAT_MACROS\"", - "\"NDEBUG\"", - "\"NVALGRIND\"", - "\"DYNAMIC_ANNOTATIONS_ENABLED=0\"", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - HEADER_SEARCH_PATHS = ( - ., - tests, - ../third_party/khronos, - .., - ); - INFOPLIST_FILE = "tests/cefclient/mac/helper-Info.plist"; - LDPLUSPLUS = "$(SOURCE_ROOT)/../third_party/llvm-build/Release+Asserts/bin/clang++"; - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/System/Library/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = "-fno-strict-aliasing"; - OTHER_LDFLAGS = ( - "-Wl,-headerpad_max_install_names", - "-Wl,-search_paths_first", - "-Wl,-ObjC", - "-Wl,-pie", - ); - PRODUCT_NAME = "Atom Helper"; - SHARED_PRECOMPS_DIR = "$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders"; - USE_HEADERMAP = NO; - WARNING_CFLAGS = ( - "-Wall", - "-Wendif-labels", - "-Wextra", - "-Wno-unused-parameter", - "-Wno-missing-field-initializers", - "-Wheader-hygiene", - "-Wno-char-subscripts", - "-Wno-unused-function", - "-Wno-unnamed-type-template-args", - "-Wno-c++11-extensions", - "-Wno-covered-switch-default", - "-Wexit-time-destructors", - ); - WRAPPER_PREFIX = ""; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 1174878B18A3C3D3A426A10D /* Build configuration list for PBXNativeTarget "Atom" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 495933C57FB159951816B3AB /* Debug */, - 48D37D50CFEC156A8F02584E /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 20C2C8546A145CE8C269BB10 /* Build configuration list for PBXAggregateTarget "cef_locales" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0CA785BAC652A740FEDD3EEA /* Debug */, - 9E40E0949E7E4D608BB46236 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 3C1ACB3AF7F069E5CDF14E2C /* Build configuration list for PBXNativeTarget "AtomHelperApp" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 8DA91A22864591030822BF75 /* Debug */, - FAEBF57F5E49ADC357189D53 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 5233A6F99A37C5BA2605AF11 /* Build configuration list for PBXAggregateTarget "cef_strings" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4BAAF65C8238704CBAF7A70D /* Debug */, - F9DBB8CFF74B9A46B526FA50 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 6BE12BAEC226B0826AF78434 /* Build configuration list for PBXNativeTarget "libcef_dll_wrapper" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9ED69BE9396DDA160FF9D394 /* Debug */, - B323320A87D9B6ABFF9772EB /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 705B3EDF846FDFBBD2B42764 /* Build configuration list for PBXProject "cef" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1EA5CC4C789D20059C96ED45 /* Debug */, - 39A28F6B600F8332458F5D57 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 7203AE8FFBEC111ABE94E8C0 /* Build configuration list for PBXAggregateTarget "cef_resources" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DA105689FBC605011197124A /* Debug */, - 7B196ABA18B800D1C54C9801 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 86C662A5BDD8770B165021CD /* Build configuration list for PBXNativeTarget "libcef" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0B11CAE87B86BCDA1071EFFF /* Debug */, - C292DF767D7DBC3A9B01F8B2 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 86D8C52813B1CC34CBABF3CC /* Build configuration list for PBXAggregateTarget "Run cef_unittests_helper_app" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4E0402305AA0A85B9CC1024F /* Debug */, - AFCB25F61F80B8DF9C126AA6 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 9368946EEA5D018D56087305 /* Build configuration list for PBXNativeTarget "cef_unittests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 3C9F01671BED3F3FE4770C7F /* Debug */, - B346823DF1A47C5E2FD97897 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - 94333E7E4BA1B40A7AC0BC4F /* Build configuration list for PBXAggregateTarget "Run cef_unittests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EFE1A56136EEB0B6CE0DEE03 /* Debug */, - 94A0D69031EE60C7C655BA8E /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - A55C7DEA6FC020BE2C1C1D74 /* Build configuration list for PBXAggregateTarget "Run All Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 64CEF8A17C9F2BE97232BDBC /* Debug */, - 5F9D7DDEA9133A4D5B650D84 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - C55EAE453ACD4BF4839354A4 /* Build configuration list for PBXNativeTarget "cef_unittests_helper_app" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - BA58EFEB072F3EDA6FC0B639 /* Debug */, - 1F2B12072EFE0FB85B1D218B /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - C86F3A4B24F8B2B0B678FE87 /* Build configuration list for PBXAggregateTarget "cef_pak" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - ED2F2FA63588A86CCBF34C2A /* Debug */, - 4911B1797B4CF1854E519A38 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - D100EFEBA06BEEA1A3F6A346 /* Build configuration list for PBXAggregateTarget "All" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1FEC448F6319CE585410BF7D /* Debug */, - B6F26756C398D91FBD18A76A /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - DC1D5F02BEA3B133DF72CAA5 /* Build configuration list for PBXNativeTarget "cefclient_helper_app" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 447FA390B7AABFB46F3CFF10 /* Debug */, - BA4F904BCC839492D1D61E27 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - DC556C973BE9072C58775672 /* Build configuration list for PBXNativeTarget "libcef_static" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 388EAAEB77349E4A43824356 /* Debug */, - DAAA25CDB0B58FF4FD22A4DC /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; - F8BE8D5B24FBDFFAE459ADFB /* Build configuration list for PBXNativeTarget "cefclient" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9362FF0A666E37006D1E8EA8 /* Debug */, - 79EF47A0598EC44A455BCEC5 /* Release */, - ); - defaultConfigurationIsVisible = 1; - defaultConfigurationName = Debug; - }; -/* End XCConfigurationList section */ - }; - rootObject = C2F20C4F45FBF5D7ACC93412 /* Project object */; -} diff --git a/cef/Resources/aliasCursor.png b/cef/Resources/aliasCursor.png new file mode 100644 index 000000000..d33d7e98f Binary files /dev/null and b/cef/Resources/aliasCursor.png differ diff --git a/cef/Resources/am.lproj/locale.pak b/cef/Resources/am.lproj/locale.pak new file mode 100644 index 000000000..ad835b65d Binary files /dev/null and b/cef/Resources/am.lproj/locale.pak differ diff --git a/cef/Resources/ar.lproj/locale.pak b/cef/Resources/ar.lproj/locale.pak new file mode 100644 index 000000000..af8e13e50 Binary files /dev/null and b/cef/Resources/ar.lproj/locale.pak differ diff --git a/cef/Resources/bg.lproj/locale.pak b/cef/Resources/bg.lproj/locale.pak new file mode 100644 index 000000000..38e14d6d9 Binary files /dev/null and b/cef/Resources/bg.lproj/locale.pak differ diff --git a/cef/Resources/blackberry/popupControlBlackBerry.css b/cef/Resources/blackberry/popupControlBlackBerry.css new file mode 100644 index 000000000..340bc61b1 --- /dev/null +++ b/cef/Resources/blackberry/popupControlBlackBerry.css @@ -0,0 +1,112 @@ +/* + * Copyright (C) Research In Motion Limited, 2012. All rights reserved. + */ + +html { + overflow: hidden; +} + +body { + padding: 0; + margin: 0; + font-family: "Myriad Pro", "Arial", "Helvetica", sans-serif; + font-size: 40px; + + -webkit-user-select: none; + user-select: none; + + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-box-align: center; + -webkit-box-pack: center; + + display: box; + box-orient: vertical; + box-align: center; + box-pack: center; +} + +.popup-area { + width: 100%; + height: 100%; + + display: -webkit-box; + display: box; + -webkit-box-orient: vertical; + box-orient: vertical; +} + + .popup-area>:first-child { + -webkit-box-flex: 1; + box-flex: 1; + } + + .popup-buttons { + display: -webkit-box; + -webkit-box-orient: horizontal; + -webkit-box-pack: center; + -webkit-box-align: stretch; + + border-image-source: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAB6CAMAAABwSXjiAAAAvVBMVEXc3Nzd3d3e3t7d3d3c3Nzd3d3f39/e3t7e3t7c3Nzc3Nzd3d3c3Nzc3Nzc3Nze3t7d3d3e3t7e3t7d3d3c3Nzd3d3c3Nzc3Nzd3d3c3Nzd3d3c3Nzd3d3c3Nzd3d3e3t7c3Nzf39/e3t7d3d3l5eXg4ODq6urj4+Pn5+fp6enk5OTm5ubo6Oji4uLh4eH09PT29vb6+vrx8fHw8PDv7+/u7u7t7e3r6+v19fX5+fn4+Pjz8/Py8vL39/fs7OxBzuRYAAAAIHRSTlMAAOqH6qj5xksJP1HJzIcG5JYDEuF+VFd4cud1CeSEk7PB98YAAADeSURBVHhezMlHEYBAAARBHF1OJP+ycDCfra2jv30kZv/Ffv8n2/4P2/6R2X8y+wdm/4vJfzP7ZyZ/YfavTP7G5O9M/pfJP5j6X3fzkYNAEANR1O7JkZxzztz/eDQaIRhB18byhr99KhXtcep+won9ihP7ESf2C07sW5y6n3FiP+DU/YYT+x33977DqfsKp+4h5JDMGmUogh7RAnqLYugxtQ26bxD3Nu6GTNwZO7k5tc6Z0zN+Os8d7HHlHPzkgF/OnmNtvarfXdabDahWMvI/1J8k9FVa5oW1Ii/TNzwAJkil621gpK4AAAAASUVORK5CYII="); + border-image-slice: 14 14 14 14 fill; + border-width: 14px; + + text-align: center; + } + + .popup-button-divider { + width: 2px; + background-color: rgba(0, 0, 0, 0.2); + border-width: 14px 0; + /* border image takes an image, so use a solid-colour gradient */ + border-image-source: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 0%); + border-image-slice: 1 0 1 0; + border-image-outset: 1 0 1 0; + } + + .popup-button { + color: inherit; + font: inherit; + text-shadow: rgba(255, 255, 255, 0.5) 0 -2px; + padding: 0; + margin: 0; + background: none; + line-height: 200%; + display: block; + + width: 0; + -webkit-box-flex: 1; + + border: 14px solid transparent; + } + + .popup-button:active { /* all current popups have at most two buttons, so this is unused atm */ + border-image-source: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAB4AQMAAAAJ9grDAAAAA1BMVEUAAACnej3aAAAAAXRSTlMz/za5cAAAABVJREFUeF7lwIEAAAAAgKD9qQepMAMA8AABd9vWlQAAAABJRU5ErkJggg=="); + border-image-slice: 1 0 1 0 fill; + padding: 14px; + margin: -14px; + } + + .popup-button:first-child:active { /* TODO: RTL */ + border-image-source: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAB4CAMAAADMioJkAAAAPFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQLyYwAAAAFHRSTlMzAC8BGygeDzIuEBoiGBEtAhcNKSH3iKYAAABFSURBVHhe7cy5AYAwEMTA27PN/9N/r0QQqAVW4QSKX+Wcc84NhCQ0QkfoCYUTrYQyAjQRNBO0EFQJ2naAjjNf+LpquyMeT+sA9bsu6t8AAAAASUVORK5CYII="); + border-image-slice: 14 0 14 14 fill; + border-image-width: 1 0 1 1; + padding: 14px; + margin: -14px; + } + + .popup-button:last-child:active { /* TODO: RTL */ + border-image-source: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAB3CAMAAAA93DCxAAAAM1BMVEUAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACin91XAAAAEXRSTlMzAAAvLhsCKBgyARAeDyIRFxtQtTsAAAA/SURBVHhe7ci3AYAAEAJA8YM57D+thY2wglx5w5+ZmZktGqExaewah0SsEvPIkS2xgaPAcYKjQJEXvhF3440HSAQAwP9T2mwAAAAASUVORK5CYII="); + border-image-slice: 14 14 14 0 fill; + border-image-width: 1 1 1 0; + padding: 14px; + margin: -14px; + } + + .popup-button:only-child:active { + border-image-source: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAB4CAMAAACkeQBcAAAAPFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQLyYwAAAAFHRSTlMzAC8bKAEuAjIeDxAXGCIRDSktGtImyaoAAABzSURBVHhe7c5LDsIwEATR6rGdkH+A+9+VRUQUCWx2rPptp0Zq/szMzMzMzMxuv85BU5Bpygw0DYw0jZSgIQpaaFiESkdV1wtpomqSkPSkIukItPLVqnegVPk/A22Pj32broH6ObiIudcBnfaU7wD3nHadXi1ZAc/vLQEmAAAAAElFTkSuQmCC"); + border-image-slice: 14 14 14 14 fill; + border-image-width: 1 1 1 1; + padding: 14px; + margin: -14px; + } diff --git a/cef/Resources/blackberry/selectControlBlackBerry.css b/cef/Resources/blackberry/selectControlBlackBerry.css new file mode 100644 index 000000000..5aaf1d75d --- /dev/null +++ b/cef/Resources/blackberry/selectControlBlackBerry.css @@ -0,0 +1,63 @@ +/* + * Copyright (C) Research In Motion Limited 2012. All rights reserved. + */ + +.select-area { + overflow-x: hidden; + overflow-y: auto; + white-space: nowrap; + + background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAtUAAAANCAYAAABmQZIAAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowODgwMTE3NDA3MjA2ODExOERCQkU3QjZERTFCNzVGNyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQzIwQ0ZFQTM0ODYxMUUxQkI0RkE0ODBENzFGMEVDRSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxQzIwQ0ZFOTM0ODYxMUUxQkI0RkE0ODBENzFGMEVDRSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjA4ODAxMTc0MDcyMDY4MTE4REJCRTdCNkRFMUI3NUY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjA4ODAxMTc0MDcyMDY4MTE4REJCRTdCNkRFMUI3NUY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YZtOWQAAA25JREFUeNrsnetuwyAMhYPH3v+FUzNV2qSpSsAXTCA550eltingC/BBaZpKKRsEQRAEQRAEQXbl90NKCZ6AtCK4AIIgCLqxGC6ApHpvUueJweyOybwaiGJAQV5AEITxGlp3zOYH+H0aGzOSFkC0aH5ggIYgCAJUw9f++QW5Mxk00UWJACCCbfAzBEEQBD13MUOBZQ+Daqo854PXSGgECZ3EHSClhxMJUDQNGEpjwQ/xBxYHEDR4UoWtqnGAJ/I7B9m4Sj5wcB708C93iG0LzF1+yA4ja89J6CRyJGsO7OhXl7tih50FqiW/uo2+5U0yTCx3AOo7QzW+Hr33wml/WGw4cBzU3PmgLArVd2snT9Zu7Y60Bdg5wo6s6KQaAKZGA+hgImbl4NBjcI88M+xpX+qQTLVvBvJA+1jp9zvvIj+tXsAkFhfQ9b7jG9dHwoUSDbBFstt7BnSa+b0sEqNdMO+zsn0S3uGDa3PD5hZ/iv2VlclKjQT5hHDa6kdBtFBNjo6WOnRW6tTZo8obWdaXsKMnZ/0c4AO6sIxRcLYKBCbjhOG9D2hxtvOpKoN8Zq1n9j9e4MH1WHflWAiDI2y1zgGszIujfH1dHF8O+gx3KLNVhoQRekH11oBq+rfoOdpc3H9fJ2GfYi1UHwExVaA6VyCUGkCejFBLgUCsKSM5wKYHeFvgiTpMftT5urPrI6C6ByDNBtW9y70KIkf9HgLHtuJBjwf5cvRObFkgBjNAdQnwjfWcLg+ISxG0m531eICZHTHjDj7dFfFr1cdKYOcKcH9Ct8vO3BjAqALVR5CdK1CdKu9twvdIcM1XI9k8MGg9ApMcIG2dqNNJh/k878sVX7LCxl5wNgJMrtypThPbZC0vdZxUpf7xTtgR596fANWaRU9xxicK3rz5OvuZ1lmOB8x0TrcYy2RhH2jB2CdUF4e9WrCO2iHWxvdbEZddEJfWcY4z7uKTz1MFumscyTUIriUENwDsDFrZCGzWFdneaONrIOhsFbD1DBTWHe6/WLwOfGKJUTK2IxLwJNdqvtJLg9o9G2Svenwkuu/2gvTZoLpc7NtIQJxlQTIKNCPqLpO0cfSOswSqJWW/OvGNNC4WP0o+w4780NSpOZ++V8p8bed3puPKAuqPlf7vrpMgHzi9/1YRgiAIgiAIgiC7fgQYALk6BVm+VKUFAAAAAElFTkSuQmCC") bottom no-repeat rgba(255, 255, 255, 0.5); + background-size: 100% auto; + border-top-left-radius: 10px; + border-top-right-radius: 10px; + border-image-source: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAcCAYAAACdz7SqAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGBw8oKjYFm6wAAAMkSURBVEjHxZbBThtXFIa/MzaejAs2aZKqbnHsSunG6kOwiJF4A4RhA1ElVGXLgteIKhQasUoRD5CmEs6CR/Ciu7YuBksjFZTa4Ho8tmdOF7kzOIi2CZjkSEdjX8093/3/e2bmiqoSReOg4QD3gE8YX/wNHBeKBS8akAh6eHB41wCpVqv2k++f3G0cNKZb7dYkIO8B0ensdKdQLLQef/f4pFwu+2b8+H7x/kkMPWoc5YBpgEffPvqsWq0WVDUC6RXUCYCIaLlcbjzbevanGW/lC3lXDhuHGeDLs7MzeVh++MB13dtACPiABwxGwPp/IHOdABzABqxcLvfXq+qr36amphRoWoLcFoTKUuUL13WzBtICXgMdA+6Z9P8jo3s8M++1qTNwXTdbWarkBEGQTy0RSb/46YVdq9U+BwLgGGibBoiyA5y9Q3YuzGsDJ0BQq9VyL39+mRKRtCUibP2wdccAT83NXbPid1V5mVrP1OmYusHTrad3RISkiFCv1zNA39jRM78Ds7fhFRrJMjk089uAXa/XsyLiJkWEbrebMCvtmmvfNE14je6NoGr+9z3Pm4iVDgaDoWmgCBjB9IovhGjBYuoBDHzfT8RQY+XwmpZeBo5UxvXfQC1hBDi8hqX/FsHIdSiWYBmlo3aOE8iFumFsr4joiKXjhkYRAipyrlRvGBjXH20kvUF736o/qvSDxUeEWh8YGj0yqVTq4jdx3GEBTE5OSmxvPp9H35xbrEuaahwpqqrFYvG8kebn5yOFzg0pdQDK5fK50tXVVQBVVQdIjhmYVNU0oMvLy7HSbqlU6q2vr6cMOauqto4nbFXNArqxsWGXSqWeiHTF87yMiHwVhuHMysrK6e7urmf2oWe+r4MrqJsA0sAtQBYWFpzt7e2MZVlNVf1DVBW/5+cSicQDEck8//F5d21t7dTzvOtvpOOwubmZWaospVW1HQTB7/Yt240P277v30skEt+ISLrZbA53dna8vb09f39/f/i+sNnZ2eTc3Jy9uLjozMzMJFW1GwTBL7ZtH791wgfo9/uOZVlfi0h+bC9d1aMwDH9NpVKxdf8AVVvibOaCYy8AAAAASUVORK5CYII="); + border-width: 12px 12px 0 12px; + border-image-slice: 12 12 12 12 fill; +} + +.select-area:last-child { + /* Nothing comes after us? Put the bottom border back and adjust the bottom shadow */ + border-bottom-width: 12px; + background-origin: border-box; +} + + .option { + overflow: hidden; + text-overflow: -blackberry-fade; + color: #262626; + text-shadow: rgba(0, 0, 0, 0.2) 0 -1px; + + box-sizing: border-box; + height: 99px; + + border: 2px solid rgba(0, 0, 0, 0.2); + border-bottom-width: 0; + + padding-left: 24px; + padding-top: 28px; + } + + .option:last-child, + .optgroup:last-child { + border-bottom-width: 2px; + } + + .selected { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAfCAYAAACPvW/2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowOTgwMTE3NDA3MjA2ODExOERCQkU3QjZERTFCNzVGNyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4QjlDOEZERjRFOEUxMUUxQTVCNEE5NzUyM0FFRjA5OSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4QjlDOEZERTRFOEUxMUUxQTVCNEE5NzUyM0FFRjA5OSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUzQUZFRkQwNDMyMDY4MTE5NDU3RDYyQTNCRTFFRDU2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjA5ODAxMTc0MDcyMDY4MTE4REJCRTdCNkRFMUI3NUY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Ei1rtAAAAxlJREFUeNrEl89rGkEUx1dXTWISPajxRzQhGkECIedCDvbQg9BbaQ6BQK8p9A9IDi2l2D8hJ9Eo/khMcmjVHJJLoYcWofaSXpJDyalJhIIUkYI/+n1DVyLurDHRdeHhzDgz++H73rx5q/H7/cIon/Pz846+ZoRANtgj2G/YF4A1aFDbarWEEdi6RqO5MBgMH/R6/Wf0v0MYBwHpRqDMi/Hx8YjZbBYBxQbq9fpypVKJoPlUR8RqwkxMTDAY6kjvFkVRmJqaCqmtEFPGZDKJciIYjcYaA1JJIaYMD4aelZWVExbUasLwJiwsLJTC4fB7NRTaIDchPsRms8mFiUQiW4D+NmwggolNT09z3UQw0WiUYE4pxocZ1BtjY2M9YWKxWAfMsBRiMEpu8nq9pd3d3S6YYWTqDWRfBsObQ8rE43EGMz8/36WGdhhu4k0gZRKJBBdGzmVLsGVYEfazX5jJyUlFN0kwc3Nz3DiRXEYSp7Ra7Q9IvoffC/Tf9uMmglFyUzKZZDAej6d1+z9ZhQDwCql7HRtL42KtVnsNoxLhZS9lsJarjM/nK6VSKQbjdrt7niAGZLFYnuHG7SBGDhFwG29Wq1WBA7UuwfBOKsGk02kGMzs7e6fjzILaZrPV5f7ECwW4YhPNHRmYBLmJtzHBZDKZvmDaMRQMBj+S5HKGAkrAppuYtyMVVxhLYEzkraGYkWBcLldLKQZlFdre3t4LhUJZ3iKKLYLC1BOCkdwkZ3Sa9vf32zD95g4WQ06n8xeed9Q+Pj5ek5tIUAj+JzqdTlCKmWw2y2Cw572ugHYecjgcZ1dXVwyqUCjIQgFI4J2mxcXFNgz2uvd91JEY7Xb72fX1tSIUD+bg4GALrjzFHg+6HLtuewmK2neBIpjDw8OBwHDLj9tQ+Xx+TS0YxfJjZmbm7ObmhrlPDopgjo6OGAzmDqyGUSzQJCicrHoul3veaDT0NB4IBIooId4MGoZ9Slut1p6TyuXy0uXl5eNisejCca6urq5+xfAnZPjmQwGwd/9A/xfSzWuC/QXIn0Ep0gWk8pdrz+efAAMAmYa9FmAD9lUAAAAASUVORK5CYII="), + -webkit-linear-gradient(top, #fafafa 0%, #dddddd 100%); + background-position: right 20px, 0% 0%; /* TODO: RTL */ + /* FIXME: the above should put the checkmark 20px from the right of the box, but webkit isn't supporting that part of CSS3 yet. So fake it */ + background-position: 97% 50%, 0% 0%; + background-repeat: no-repeat; + padding-right: 56px; /* this gets the overflow and fade to work. 36px for the image, about 20px for the right padding */ + } + + .optgroup { + /* need to do something with this */ + padding-left: 22px; + } + + .optgroup .option { + border-left-width: 0; /* TODO: RTL */ + } diff --git a/cef/Resources/blackberry/selectControlBlackBerry.js b/cef/Resources/blackberry/selectControlBlackBerry.js new file mode 100644 index 000000000..9d868a9fc --- /dev/null +++ b/cef/Resources/blackberry/selectControlBlackBerry.js @@ -0,0 +1,92 @@ +/* + * Copyright (C) Research In Motion Limited, 2012. All rights reserved. + */ + +// Upon the user making a selection, I will call window.setValueAndClosePopup with a binary string where +// the character at index i being '1' means that the option at index i is selected. +(function (){ + + var selectOption = function (event) { + for (var option = document.getElementById('select-area').firstChild; option; option = option.nextSibling) { + if (option === event.target) { + if (option.className.indexOf('selected') === -1) { + option.className += ' selected'; + } + } else { + option.className = option.className.replace('selected', ''); + } + } + done(); + }; + + var toggleOption = function (event) { + if (event.target.className.indexOf('selected') === -1) { + event.target.className += ' selected'; + } else { + event.target.className = event.target.className.replace('selected', ''); + } + }; + + var done = function () { + var result = ''; + for (var option = document.getElementById('select-area').firstChild; option; option = option.nextSibling) { + if (option.className.indexOf('selected') === -1) { + result += '0'; + } else { + result += '1'; + } + } + window.setValueAndClosePopup(result, window.popUp); + }; + + /* multiple - a boolean + * labels - an array of strings + * enableds - an array of booleans. + * -I will assume that the HTML "disabled optgroups disable all options in the optgroup" hasn't been applied, + * so if the index corresponds to an optgroup, I will render all of its options as disabled + * itemTypes - an array of integers, 0 === option, 1 === optgroup, 2 === option in optgroup + * selecteds - an array of booleans + * buttonText - a string to use for the button presented when multiple is true. Like "OK" or "Done" or something. + */ + var show = function (multiple, labels, enableds, itemTypes, selecteds, buttonText) { + var i, + size = labels.length, + popup = document.createElement('div'), + select = document.createElement('div'); + + popup.className = 'popup-area'; + select.className = 'select-area'; + select.id = 'select-area'; + popup.appendChild(select); + + for (i = 0; i < size; i++) { + // TODO: handle itemTypes + var option = document.createElement('div'); + option.className = 'option' + (enableds[i] ? '' : ' disabled') + (selecteds[i] ? ' selected' : ''); + option.appendChild(document.createTextNode(labels[i])); + if (!multiple) { + option.addEventListener('click', selectOption); + } else if (enableds[i]) { + option.addEventListener('click', toggleOption); + } + + select.appendChild(option); + } + + if (multiple) { + var okButton = document.createElement('button'), + buttons = document.createElement('div'); + buttons.className = 'popup-buttons'; + okButton.className = 'popup-button'; + okButton.addEventListener('click', done); + okButton.appendChild(document.createTextNode(buttonText)); + buttons.appendChild(okButton); + popup.appendChild(buttons); + } + + document.body.appendChild(popup); + }; + + window.select = window.select || {}; + window.select.show = show; +}()); diff --git a/cef/Resources/bn.lproj/locale.pak b/cef/Resources/bn.lproj/locale.pak new file mode 100644 index 000000000..c1b5f29e9 Binary files /dev/null and b/cef/Resources/bn.lproj/locale.pak differ diff --git a/cef/Resources/ca.lproj/locale.pak b/cef/Resources/ca.lproj/locale.pak new file mode 100644 index 000000000..25facf952 Binary files /dev/null and b/cef/Resources/ca.lproj/locale.pak differ diff --git a/cef/Resources/calendarPicker.css b/cef/Resources/calendarPicker.css new file mode 100644 index 000000000..eef0b106d --- /dev/null +++ b/cef/Resources/calendarPicker.css @@ -0,0 +1,177 @@ +/* + * Copyright (C) 2012 Google Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +body { + -webkit-user-select: none; + background-color: white; + font: -webkit-small-control; + margin: 0; + overflow: hidden; +} + +.no-focus-ring :focus { + outline: none; +} + +#main { + background-color: white; + border: solid 1px #8899aa; + box-shadow: inset 2px 2px 2px white, + inset -2px -2px 1px rgba(0,0,0,0.1); + padding: 6px; + whitespace: nowrap; + /* width and opacity are reset in the JS code. */ + width: 500px; + opacity: 0; +} + +.year-month-area { +} + +.year-month-upper { + /* display:-webkit-box; is added in the JS code. */ +} + +.year-selector { + text-align: right; + width: 6em; +} + +.month-selector-box { + display: inline-block; + text-align: center; + -webkit-box-flex: 2; +} + +.month-selector { + background-color: white; + cursor: pointer; + display: inline-block; + padding: 3px 6px 3px 6px; +} +.month-selector:after { + content: " ▼"; + font-size: smaller; +} + +.month-selector-popup { + display: none; + outline: none; + z-index: 2; +} + +.month-selector-wall { + display: none; + height: 100%; + left: 0px; + position: absolute; + top: 0px; + width: 100%; +} + +.year-month-button-left { + display: inline-block; +} + +.year-month-button-right { + display: inline-block; +} + +.days-area-container { + background-color: white; + border: solid 1px black; + margin-bottom: 4px; + margin-top: 4px; + overflow: hidden; +} + +.days-area { /* */ + background-color: white; + border-collapse: separate; + border-spacing: 0px; + font: -webkit-small-control; + /* table-layout:fixed and width:100% are added in the JS code. */ +} + +.day-label { /*
*/ + -webkit-box-sizing: border-box; + background-color: #e3e9ff; + border-left-color: #f0f4ff; + border-top-color: #f0f4ff; + border: solid 1px #d0d4f0; + color: #20c; + font-weight: normal; + text-align: center; +} + +.day { /* */ + padding: 1px; + text-align: center; + background-color: white; + border: 1px solid white; + -webkit-box-sizing: border-box; +} + +.available { + cursor: default; + font-weight: 700; + background-color: white; + border: 1px solid white; + border-radius: 5px; + -webkit-transition: all 0.2s ease; +} + +.not-this-month { + color: graytext; + font-weight: 400; + text-shadow: none; +} + +.available.day-selected { + background-color: highlight; + color: highlighttext; + text-shadow: none; +} + +.unavailable { + cursor: default; + color: graytext; + background-color: #eee; + border: 1px solid #eee; + -webkit-transition: border-color 0.2s ease; +} + +.unavailable.day-selected { + border: 1px solid highlight; +} + +.cancel-button { + float: right; +} diff --git a/cef/Resources/calendarPicker.js b/cef/Resources/calendarPicker.js new file mode 100644 index 000000000..4a7ef06ac --- /dev/null +++ b/cef/Resources/calendarPicker.js @@ -0,0 +1,1128 @@ +"use strict"; +/* + * Copyright (C) 2012 Google Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +// FIXME: +// - Touch event + +/** + * CSS class names. + * + * @enum {string} + */ +var ClassNames = { + Available: "available", + CancelButton: "cancel-button", + ClearButton: "clear-button", + Day: "day", + DayLabel: "day-label", + DayLabelContainer: "day-label-container", + DaysArea: "days-area", + DaysAreaContainer: "days-area-container", + MonthSelector: "month-selector", + MonthSelectorBox: "month-selector-box", + MonthSelectorPopup: "month-selector-popup", + MonthSelectorWall: "month-selector-wall", + NoFocusRing: "no-focus-ring", + NotThisMonth: "not-this-month", + Selected: "day-selected", + TodayButton: "today-button", + TodayClearArea: "today-clear-area", + Unavailable: "unavailable", + WeekContainer: "week-container", + YearMonthArea: "year-month-area", + YearMonthButton: "year-month-button", + YearMonthButtonLeft: "year-month-button-left", + YearMonthButtonRight: "year-month-button-right", + YearMonthUpper: "year-month-upper" +}; + +/** + * @type {Object} + */ +var global = { + argumentsReceived: false, + hadKeyEvent: false, + params: null +}; + +// ---------------------------------------------------------------- +// Utility functions + +/** + * @param {!string} id + */ +function $(id) { + return document.getElementById(id); +} + +function bind(func, context) { + return function() { + return func.apply(context, arguments); + }; +} + +/** + * @param {!string} tagName + * @param {string=} opt_class + * @param {string=} opt_text + * @return {!Element} + */ +function createElement(tagName, opt_class, opt_text) { + var element = document.createElement(tagName); + if (opt_class) + element.setAttribute("class", opt_class); + if (opt_text) + element.appendChild(document.createTextNode(opt_text)); + return element; +} + +/** + * @return {!string} lowercase locale name. e.g. "en-us" + */ +function getLocale() { + return (global.params.locale || "en-us").toLowerCase(); +} + +/** + * @return {!string} lowercase language code. e.g. "en" + */ +function getLanguage() { + var locale = getLocale(); + var result = locale.match(/^([a-z]+)/); + if (!result) + return "en"; + return result[1]; +} + +/* + * @const + * @type {number} + */ +var ImperialEraLimit = 2087; + +/** + * @param {!number} year + * @param {!number} month + * @return {!string} + */ +function formatJapaneseImperialEra(year, month) { + // We don't show an imperial era if it is greater than 99 becase of space + // limitation. + if (year > ImperialEraLimit) + return ""; + if (year > 1989) + return "(平成" + (year - 1988) + "年)"; + if (year == 1989) + return "(平成元年)"; + if (year >= 1927) + return "(昭和" + (year - 1925) + "年)"; + if (year > 1912) + return "(大正" + (year - 1911) + "年)"; + if (year == 1912 && month >= 7) + return "(大正元年)"; + if (year > 1868) + return "(明治" + (year - 1867) + "年)"; + if (year == 1868) + return "(明治元年)"; + return ""; +} + +/** + * @param {!number} year + * @param {!number} month + * @return {!string} + */ +function formatYearMonth(year, month) { + // FIXME: Need localized number? + var yearString = String(year); + var monthString = global.params.monthLabels[month]; + switch (getLanguage()) { + case "eu": + case "fil": + case "lt": + case "ml": + case "mt": + case "tl": + case "ur": + return yearString + " " + monthString; + case "hu": + return yearString + ". " + monthString; + case "ja": + return yearString + "年" + formatJapaneseImperialEra(year, month) + " " + monthString; + case "zh": + return yearString + "年" + monthString; + case "ko": + return yearString + "년 " + monthString; + case "lv": + return yearString + ". g. " + monthString; + case "pt": + return monthString + " de " + yearString; + case "sr": + return monthString + ". " + yearString; + default: + return monthString + " " + yearString; + } +} + +/** + * @param {string=} opt_current + * @return {!Date} + */ +function parseDateString(opt_current) { + if (opt_current) { + var result = opt_current.match(/(\d+)-(\d+)-(\d+)/); + if (result) + return new Date(Date.UTC(Number(result[1]), Number(result[2]) - 1, Number(result[3]))); + } + var now = new Date(); + // Create UTC date with same numbers as local date. + return new Date(Date.UTC(now.getFullYear(), now.getMonth(), now.getDate())); +} + +/** + * @param {!number} year + * @param {!number} month + * @param {!number} day + * @return {!string} + */ +function serializeDate(year, month, day) { + var yearString = String(year); + if (yearString.length < 4) + yearString = ("000" + yearString).substr(-4, 4); + return yearString + "-" + ("0" + (month + 1)).substr(-2, 2) + "-" + ("0" + day).substr(-2, 2); +} + +// ---------------------------------------------------------------- +// Initialization + +/** + * @param {Event} event + */ +function handleMessage(event) { + if (global.argumentsReceived) + return; + global.argumentsReceived = true; + initialize(JSON.parse(event.data)); +} + +function handleArgumentsTimeout() { + if (global.argumentsReceived) + return; + var args = { + monthLabels : ["m1", "m2", "m3", "m4", "m5", "m6", + "m7", "m8", "m9", "m10", "m11", "m12"], + dayLabels : ["d1", "d2", "d3", "d4", "d5", "d6", "d7"], + todayLabel : "Today", + clearLabel : "Clear", + cancelLabel : "Cancel", + currentValue : "", + weekStartDay : 0, + step : 1 + }; + initialize(args); +} + +/** + * @param {!Object} args + * @return {?string} An error message, or null if the argument has no errors. + */ +function validateArguments(args) { + if (!args.monthLabels) + return "No monthLabels."; + if (args.monthLabels.length != 12) + return "monthLabels is not an array with 12 elements."; + if (!args.dayLabels) + return "No dayLabels."; + if (args.dayLabels.length != 7) + return "dayLabels is not an array with 7 elements."; + if (!args.clearLabel) + return "No clearLabel."; + if (!args.todayLabel) + return "No todayLabel."; + if (args.weekStartDay) { + if (args.weekStartDay < 0 || args.weekStartDay > 6) + return "Invalid weekStartDay: " + args.weekStartDay; + } + return null; +} + +/** + * @param {!Object} args + */ +function initialize(args) { + var main = $("main"); + main.classList.add(ClassNames.NoFocusRing); + + var errorString = validateArguments(args); + if (errorString) + main.textContent = "Internal error: " + errorString; + else { + global.params = args; + checkLimits(); + layout(); + + var initialDate = parseDateString(args.currentValue); + if (initialDate < global.minimumDate) + initialDate = global.minimumDate; + else if (initialDate > global.maximumDate) + initialDate = global.maximumDate; + global.daysTable.selectDate(initialDate); + + setTimeout(fixWindowSize, 0); + } +} + +function fixWindowSize() { + var yearMonthRightElement = document.getElementsByClassName(ClassNames.YearMonthButtonRight)[0]; + var daysAreaElement = document.getElementsByClassName(ClassNames.DaysArea)[0]; + var headers = daysAreaElement.getElementsByClassName(ClassNames.DayLabel); + var maxCellWidth = 0; + for (var i = 0; i < headers.length; ++i) { + if (maxCellWidth < headers[i].offsetWidth) + maxCellWidth = headers[i].offsetWidth; + } + var DaysAreaContainerBorder = 1; + var maxRight = Math.max(yearMonthRightElement.offsetLeft + yearMonthRightElement.offsetWidth, + daysAreaElement.offsetLeft + maxCellWidth * 7 + DaysAreaContainerBorder); + var MainPadding = 6; + var MainBorder = 1; + var desiredBodyWidth = maxRight + MainPadding + MainBorder; + + var main = $("main"); + var mainHeight = main.offsetHeight; + main.style.width = "auto"; + daysAreaElement.style.width = "100%"; + daysAreaElement.style.tableLayout = "fixed"; + document.getElementsByClassName(ClassNames.YearMonthUpper)[0].style.display = "-webkit-box"; + document.getElementsByClassName(ClassNames.MonthSelectorBox)[0].style.display = "block"; + main.style.webkitTransition = "opacity 0.1s ease"; + main.style.opacity = "1"; + if (window.frameElement) { + window.frameElement.style.width = desiredBodyWidth + "px"; + window.frameElement.style.height = mainHeight + "px"; + } else { + window.resizeTo(desiredBodyWidth, mainHeight); + } +} + +function checkLimits() { + // Hard limits of type=date. See WebCore/platform/DateComponents.h. + global.minimumDate = new Date(-62135596800000.0); + global.maximumDate = new Date(8640000000000000.0); + // See WebCore/html/DateInputType.cpp. + global.step = 86400000; + + if (global.params.min) { + // We assume params.min is a valid date. + global.minimumDate = parseDateString(global.params.min); + } + if (global.params.max) { + // We assume params.max is a valid date. + global.maximumDate = parseDateString(global.params.max); + } + if (global.params.step) + global.step *= global.params.step; +} + +function layout() { + if (global.params.isRTL) + document.body.dir = "rtl"; + var main = $("main"); + var params = global.params; + main.removeChild(main.firstChild); + document.body.addEventListener("keydown", handleGlobalKey, false); + + global.yearMonthController = new YearMonthController(); + global.yearMonthController.attachTo(main); + global.daysTable = new DaysTable(); + global.daysTable.attachTo(main); + layoutButtons(main); +} + +/** + * @param {Element} main + */ +function layoutButtons(main) { + var container = createElement("div", ClassNames.TodayClearArea); + global.today = createElement("input", ClassNames.TodayButton); + global.today.type = "button"; + global.today.value = global.params.todayLabel; + global.today.addEventListener("click", handleToday, false); + container.appendChild(global.today); + global.clear = null; + if (!global.params.required) { + global.clear = createElement("input", ClassNames.ClearButton); + global.clear.type = "button"; + global.clear.value = global.params.clearLabel; + global.clear.addEventListener("click", handleClear, false); + container.appendChild(global.clear); + } + main.appendChild(container); + + global.lastFocusableControl = global.clear || global.today; +} + +// ---------------------------------------------------------------- + +/** + * @constructor + */ +function YearMonthController() { + /** + * @type {!number} + */ + this._currentYear = -1; + /** + * @type {!number} + */ + this._currentMonth = -1; +} + +/** + * @param {!Element} main + */ +YearMonthController.prototype.attachTo = function(main) { + var outerContainer = createElement("div", ClassNames.YearMonthArea); + + var innerContainer = createElement("div", ClassNames.YearMonthUpper); + outerContainer.appendChild(innerContainer); + + this._attachLeftButtonsTo(innerContainer); + + var box = createElement("div", ClassNames.MonthSelectorBox); + innerContainer.appendChild(box); + // We can't use