OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../../../build/common.gypi', | 10 '../../../build/common.gypi', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 '../../..', | 42 '../../..', |
43 # For chrome_tab.h | 43 # For chrome_tab.h |
44 '<(SHARED_INTERMEDIATE_DIR)', | 44 '<(SHARED_INTERMEDIATE_DIR)', |
45 ], | 45 ], |
46 }, | 46 }, |
47 { | 47 { |
48 'target_name': 'ie_common', | 48 'target_name': 'ie_common', |
49 'type': 'static_library', | 49 'type': 'static_library', |
50 'dependencies': [ | 50 'dependencies': [ |
51 'ie_common_settings', | 51 'ie_common_settings', |
52 '../../../base/base.gyp:base', | 52 '<(DEPTH)/base/base.gyp:base', |
53 '../../../breakpad/breakpad.gyp:breakpad_handler', | 53 '<(DEPTH)/breakpad/breakpad.gyp:breakpad_handler', |
54 '../../../build/temp_gyp/googleurl.gyp:googleurl', | 54 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', |
55 '../../../net/net.gyp:net_base', | 55 '<(DEPTH)/ceee/common/common.gyp:initializing_coclass', |
56 '../../../ceee/common/common.gyp:initializing_coclass', | 56 '<(DEPTH)/ceee/common/common.gyp:ceee_common', |
57 '../../../ceee/common/common.gyp:ceee_common', | 57 '<(DEPTH)/ceee/ie/plugin/toolband/toolband.gyp:toolband_idl', |
58 # TODO(joi@chromium.org) Why? Can we remove? | 58 # TODO(joi@chromium.org) Why? Can we remove? |
59 '../../../ceee/testing/utils/test_utils.gyp:test_utils', | 59 '<(DEPTH)/ceee/testing/utils/test_utils.gyp:test_utils', |
60 '../../../ceee/testing/utils/test_utils.gyp:mshtml_mocks', | 60 '<(DEPTH)/ceee/testing/utils/test_utils.gyp:mshtml_mocks', |
61 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', | 61 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
62 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl', | 62 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl', |
63 '../plugin/toolband/toolband.gyp:toolband_idl', | 63 '<(DEPTH)/net/net.gyp:net_base', |
64 ], | 64 ], |
65 'sources': [ | 65 'sources': [ |
66 'api_registration.h', | 66 'api_registration.h', |
| 67 'ceee_util.cc', |
| 68 'ceee_util.h', |
67 'chrome_frame_host.cc', | 69 'chrome_frame_host.cc', |
68 'chrome_frame_host.h', | 70 'chrome_frame_host.h', |
69 'constants.cc', | 71 'constants.cc', |
70 'constants.h', | 72 'constants.h', |
71 'crash_reporter.cc', | 73 'crash_reporter.cc', |
72 'crash_reporter.h', | 74 'crash_reporter.h', |
73 'extension_manifest.cc', | 75 'extension_manifest.cc', |
74 'extension_manifest.h', | 76 'extension_manifest.h', |
75 'ie_tab_interfaces.cc', | 77 'ie_tab_interfaces.cc', |
76 'ie_tab_interfaces.h', | 78 'ie_tab_interfaces.h', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 'include_dirs': [ | 119 'include_dirs': [ |
118 # Because we use some of the chrome files above directly, we need | 120 # Because we use some of the chrome files above directly, we need |
119 # to specify thess include paths which they depend on. | 121 # to specify thess include paths which they depend on. |
120 '../../../skia/config/win', | 122 '../../../skia/config/win', |
121 '../../../third_party/skia/include/config', | 123 '../../../third_party/skia/include/config', |
122 ], | 124 ], |
123 }, | 125 }, |
124 }, | 126 }, |
125 ] | 127 ] |
126 } | 128 } |
OLD | NEW |