| 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_common', | 8 'target_name': 'content_common', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../ipc/ipc.gyp:ipc', | 11 '../ipc/ipc.gyp:ipc', |
| 12 '../skia/skia.gyp:skia', |
| 12 '../third_party/icu/icu.gyp:icuuc', | 13 '../third_party/icu/icu.gyp:icuuc', |
| 13 '../third_party/npapi/npapi.gyp:npapi', | 14 '../third_party/npapi/npapi.gyp:npapi', |
| 14 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 15 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 15 '../webkit/support/webkit_support.gyp:appcache', | 16 '../webkit/support/webkit_support.gyp:appcache', |
| 16 '../webkit/support/webkit_support.gyp:blob', | 17 '../webkit/support/webkit_support.gyp:blob', |
| 17 '../webkit/support/webkit_support.gyp:database', | 18 '../webkit/support/webkit_support.gyp:database', |
| 18 '../webkit/support/webkit_support.gyp:fileapi', | 19 '../webkit/support/webkit_support.gyp:fileapi', |
| 19 ], | 20 ], |
| 20 'include_dirs': [ | 21 'include_dirs': [ |
| 21 '..', | 22 '..', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'common/database_util.cc', | 61 'common/database_util.cc', |
| 61 'common/database_util.h', | 62 'common/database_util.h', |
| 62 'common/db_message_filter.cc', | 63 'common/db_message_filter.cc', |
| 63 'common/db_message_filter.h', | 64 'common/db_message_filter.h', |
| 64 'common/debug_flags.cc', | 65 'common/debug_flags.cc', |
| 65 'common/debug_flags.h', | 66 'common/debug_flags.h', |
| 66 'common/desktop_notification_messages.h', | 67 'common/desktop_notification_messages.h', |
| 67 'common/device_orientation_messages.h', | 68 'common/device_orientation_messages.h', |
| 68 'common/dom_storage_common.h', | 69 'common/dom_storage_common.h', |
| 69 'common/dom_storage_messages.h', | 70 'common/dom_storage_messages.h', |
| 71 'common/drag_messages.h', |
| 70 'common/dx_diag_node.cc', | 72 'common/dx_diag_node.cc', |
| 71 'common/dx_diag_node.h', | 73 'common/dx_diag_node.h', |
| 72 'common/edit_command.h', | 74 'common/edit_command.h', |
| 73 'common/file_path_watcher/file_path_watcher.cc', | 75 'common/file_path_watcher/file_path_watcher.cc', |
| 74 'common/file_path_watcher/file_path_watcher.h', | 76 'common/file_path_watcher/file_path_watcher.h', |
| 75 'common/file_path_watcher/file_path_watcher_inotify.cc', | 77 'common/file_path_watcher/file_path_watcher_inotify.cc', |
| 76 'common/file_path_watcher/file_path_watcher_mac.cc', | 78 'common/file_path_watcher/file_path_watcher_mac.cc', |
| 77 'common/file_path_watcher/file_path_watcher_win.cc', | 79 'common/file_path_watcher/file_path_watcher_win.cc', |
| 78 'common/file_system/file_system_dispatcher.cc', | 80 'common/file_system/file_system_dispatcher.cc', |
| 79 'common/file_system/file_system_dispatcher.h', | 81 'common/file_system/file_system_dispatcher.h', |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 }], | 215 }], |
| 214 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 216 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 215 'dependencies': [ | 217 'dependencies': [ |
| 216 '../build/linux/system.gyp:gtk', | 218 '../build/linux/system.gyp:gtk', |
| 217 ], | 219 ], |
| 218 }], | 220 }], |
| 219 ], | 221 ], |
| 220 }, | 222 }, |
| 221 ], | 223 ], |
| 222 } | 224 } |
| OLD | NEW |