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 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', | 58 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
59 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl', | 59 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl', |
60 '../plugin/toolband/toolband.gyp:toolband_idl', | 60 '<(DEPTH)/net/net.gyp:net_base', |
61 ], | 61 ], |
62 'sources': [ | 62 'sources': [ |
63 'api_registration.h', | 63 'api_registration.h', |
| 64 'ceee_util.cc', |
| 65 'ceee_util.h', |
64 'chrome_frame_host.cc', | 66 'chrome_frame_host.cc', |
65 'chrome_frame_host.h', | 67 'chrome_frame_host.h', |
66 'constants.cc', | 68 'constants.cc', |
67 'constants.h', | 69 'constants.h', |
68 'crash_reporter.cc', | 70 'crash_reporter.cc', |
69 'crash_reporter.h', | 71 'crash_reporter.h', |
70 'extension_manifest.cc', | 72 'extension_manifest.cc', |
71 'extension_manifest.h', | 73 'extension_manifest.h', |
72 'ie_tab_interfaces.cc', | 74 'ie_tab_interfaces.cc', |
73 'ie_tab_interfaces.h', | 75 'ie_tab_interfaces.h', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 'include_dirs': [ | 116 'include_dirs': [ |
115 # Because we use some of the chrome files above directly, we need | 117 # Because we use some of the chrome files above directly, we need |
116 # to specify thess include paths which they depend on. | 118 # to specify thess include paths which they depend on. |
117 '../../../skia/config/win', | 119 '../../../skia/config/win', |
118 '../../../third_party/skia/include/config', | 120 '../../../third_party/skia/include/config', |
119 ], | 121 ], |
120 }, | 122 }, |
121 }, | 123 }, |
122 ] | 124 ] |
123 } | 125 } |
OLD | NEW |