OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'content_browser', | 8 'target_name': 'content_browser', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 'browser/tab_contents/render_view_host_manager.cc', | 214 'browser/tab_contents/render_view_host_manager.cc', |
215 'browser/tab_contents/render_view_host_manager.h', | 215 'browser/tab_contents/render_view_host_manager.h', |
216 'browser/tab_contents/tab_contents.cc', | 216 'browser/tab_contents/tab_contents.cc', |
217 'browser/tab_contents/tab_contents.h', | 217 'browser/tab_contents/tab_contents.h', |
218 'browser/tab_contents/tab_contents_delegate.cc', | 218 'browser/tab_contents/tab_contents_delegate.cc', |
219 'browser/tab_contents/tab_contents_delegate.h', | 219 'browser/tab_contents/tab_contents_delegate.h', |
220 'browser/tab_contents/tab_contents_observer.cc', | 220 'browser/tab_contents/tab_contents_observer.cc', |
221 'browser/tab_contents/tab_contents_observer.h', | 221 'browser/tab_contents/tab_contents_observer.h', |
222 'browser/tab_contents/tab_contents_view.cc', | 222 'browser/tab_contents/tab_contents_view.cc', |
223 'browser/tab_contents/tab_contents_view.h', | 223 'browser/tab_contents/tab_contents_view.h', |
| 224 'browser/webui/web_ui.cc', |
| 225 'browser/webui/web_ui.h', |
| 226 'browser/webui/web_ui_factory.cc', |
| 227 'browser/webui/web_ui_factory.h', |
| 228 'browser/webui/web_ui_util.cc', |
| 229 'browser/webui/web_ui_util.h', |
224 'browser/zygote_host_linux.cc', | 230 'browser/zygote_host_linux.cc', |
225 'browser/zygote_host_linux.h', | 231 'browser/zygote_host_linux.h', |
226 'browser/zygote_main_linux.cc', | 232 'browser/zygote_main_linux.cc', |
227 ], | 233 ], |
228 'conditions': [ | 234 'conditions': [ |
229 ['OS=="win"', { | 235 ['OS=="win"', { |
230 'msvs_guid': '639DB58D-32C2-435A-A711-65A12F62E442', | 236 'msvs_guid': '639DB58D-32C2-435A-A711-65A12F62E442', |
231 }], | 237 }], |
232 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 238 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
233 'dependencies': [ | 239 'dependencies': [ |
(...skipping 16 matching lines...) Expand all Loading... |
250 'mac_bundle_resources': [ | 256 'mac_bundle_resources': [ |
251 'browser/gpu.sb', | 257 'browser/gpu.sb', |
252 'browser/worker.sb', | 258 'browser/worker.sb', |
253 ], | 259 ], |
254 }, | 260 }, |
255 }], | 261 }], |
256 ], | 262 ], |
257 }, | 263 }, |
258 ], | 264 ], |
259 } | 265 } |
OLD | NEW |