| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 '../third_party/icu38/icu38.gyp:icui18n', | 120 '../third_party/icu38/icu38.gyp:icui18n', |
| 121 '../third_party/icu38/icu38.gyp:icuuc', | 121 '../third_party/icu38/icu38.gyp:icuuc', |
| 122 ], | 122 ], |
| 123 'include_dirs': [ | 123 'include_dirs': [ |
| 124 '..', | 124 '..', |
| 125 ], | 125 ], |
| 126 'sources': [ | 126 'sources': [ |
| 127 # All .cc, .h, and .mm files under app/ except for tests. | 127 # All .cc, .h, and .mm files under app/ except for tests. |
| 128 '../app/animation.cc', | 128 '../app/animation.cc', |
| 129 '../app/animation.h', | 129 '../app/animation.h', |
| 130 '../app/drag_drop_types.cc', |
| 131 '../app/drag_drop_types.h', |
| 130 '../app/gfx/chrome_canvas.cc', | 132 '../app/gfx/chrome_canvas.cc', |
| 131 '../app/gfx/chrome_canvas.h', | 133 '../app/gfx/chrome_canvas.h', |
| 132 '../app/gfx/chrome_canvas_linux.cc', | 134 '../app/gfx/chrome_canvas_linux.cc', |
| 133 '../app/gfx/chrome_canvas_win.cc', | 135 '../app/gfx/chrome_canvas_win.cc', |
| 134 '../app/gfx/chrome_font.h', | 136 '../app/gfx/chrome_font.h', |
| 135 '../app/gfx/chrome_font_gtk.cc', | 137 '../app/gfx/chrome_font_gtk.cc', |
| 136 '../app/gfx/chrome_font_mac.mm', | 138 '../app/gfx/chrome_font_mac.mm', |
| 137 '../app/gfx/chrome_font_skia.cc', | 139 '../app/gfx/chrome_font_skia.cc', |
| 138 '../app/gfx/chrome_font_win.cc', | 140 '../app/gfx/chrome_font_win.cc', |
| 141 '../app/gfx/favicon_size.h', |
| 142 '../app/gfx/icon_util.cc', |
| 143 '../app/gfx/icon_util.h', |
| 144 '../app/gfx/insets.h', |
| 145 '../app/gfx/path_gtk.cc', |
| 146 '../app/gfx/path_win.cc', |
| 147 '../app/gfx/path.h', |
| 139 '../app/l10n_util.cc', | 148 '../app/l10n_util.cc', |
| 140 '../app/l10n_util.h', | 149 '../app/l10n_util.h', |
| 141 '../app/l10n_util_posix.cc', | 150 '../app/l10n_util_posix.cc', |
| 142 '../app/l10n_util_win.cc', | 151 '../app/l10n_util_win.cc', |
| 143 '../app/l10n_util_win.h', | 152 '../app/l10n_util_win.h', |
| 153 '../app/message_box_flags.h', |
| 154 '../app/os_exchange_data.cc', |
| 155 '../app/os_exchange_data.h', |
| 144 '../app/resource_bundle.cc', | 156 '../app/resource_bundle.cc', |
| 145 '../app/resource_bundle.h', | 157 '../app/resource_bundle.h', |
| 146 '../app/resource_bundle_win.cc', | 158 '../app/resource_bundle_win.cc', |
| 147 '../app/resource_bundle_linux.cc', | 159 '../app/resource_bundle_linux.cc', |
| 148 '../app/resource_bundle_mac.mm', | 160 '../app/resource_bundle_mac.mm', |
| 149 '../app/slide_animation.cc', | 161 '../app/slide_animation.cc', |
| 150 '../app/slide_animation.h', | 162 '../app/slide_animation.h', |
| 151 '../app/throb_animation.cc', | 163 '../app/throb_animation.cc', |
| 152 '../app/throb_animation.h', | 164 '../app/throb_animation.h', |
| 153 ], | 165 ], |
| 154 'direct_dependent_settings': { | 166 'direct_dependent_settings': { |
| 155 'include_dirs': [ | 167 'include_dirs': [ |
| 156 '..', | 168 '..', |
| 157 ], | 169 ], |
| 158 }, | 170 }, |
| 159 'conditions': [ | 171 'conditions': [ |
| 160 ['OS=="linux"', { | 172 ['OS=="linux"', { |
| 161 'dependencies': [ | 173 'dependencies': [ |
| 162 '../build/linux/system.gyp:gtk', | 174 '../build/linux/system.gyp:gtk', |
| 163 ], | 175 ], |
| 164 }], | 176 }], |
| 177 ['OS!="win"', { |
| 178 'sources!': [ |
| 179 '../app/drag_drop_types.cc', |
| 180 '../app/drag_drop_types.h', |
| 181 '../app/gfx/icon_util.cc', |
| 182 '../app/gfx/icon_util.h', |
| 183 '../app/os_exchange_data.cc', |
| 184 '../app/os_exchange_data.h', |
| 185 ], |
| 186 }], |
| 165 ], | 187 ], |
| 166 }, | 188 }, |
| 167 { | 189 { |
| 168 # theme_resources also generates a .cc file, so it can't use the rules abo
ve. | 190 # theme_resources also generates a .cc file, so it can't use the rules abo
ve. |
| 169 'target_name': 'theme_resources', | 191 'target_name': 'theme_resources', |
| 170 'type': 'none', | 192 'type': 'none', |
| 171 'variables': { | 193 'variables': { |
| 172 'grit_path': '../tools/grit/grit.py', | 194 'grit_path': '../tools/grit/grit.py', |
| 173 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 195 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 174 }, | 196 }, |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 'sources': [ | 245 'sources': [ |
| 224 # All .cc, .h, and .mm files under chrome/common except for tests. | 246 # All .cc, .h, and .mm files under chrome/common except for tests. |
| 225 'common/extensions/url_pattern.cc', | 247 'common/extensions/url_pattern.cc', |
| 226 'common/extensions/url_pattern.h', | 248 'common/extensions/url_pattern.h', |
| 227 'common/extensions/user_script.cc', | 249 'common/extensions/user_script.cc', |
| 228 'common/extensions/user_script.h', | 250 'common/extensions/user_script.h', |
| 229 'common/gfx/color_utils.cc', | 251 'common/gfx/color_utils.cc', |
| 230 'common/gfx/color_utils.h', | 252 'common/gfx/color_utils.h', |
| 231 'common/gfx/emf.cc', | 253 'common/gfx/emf.cc', |
| 232 'common/gfx/emf.h', | 254 'common/gfx/emf.h', |
| 233 'common/gfx/favicon_size.h', | |
| 234 'common/gfx/icon_util.cc', | |
| 235 'common/gfx/icon_util.h', | |
| 236 'common/gfx/insets.h', | |
| 237 'common/gfx/path_gtk.cc', | |
| 238 'common/gfx/path_win.cc', | |
| 239 'common/gfx/path.h', | |
| 240 'common/gfx/text_elider.cc', | 255 'common/gfx/text_elider.cc', |
| 241 'common/gfx/text_elider.h', | 256 'common/gfx/text_elider.h', |
| 242 'common/gfx/utils.h', | 257 'common/gfx/utils.h', |
| 243 'common/gtk_util.cc', | 258 'common/gtk_util.cc', |
| 244 'common/gtk_util.h', | 259 'common/gtk_util.h', |
| 245 'common/net/cookie_monster_sqlite.cc', | 260 'common/net/cookie_monster_sqlite.cc', |
| 246 'common/net/cookie_monster_sqlite.h', | 261 'common/net/cookie_monster_sqlite.h', |
| 247 'common/net/dns.h', | 262 'common/net/dns.h', |
| 248 'common/net/url_request_intercept_job.cc', | 263 'common/net/url_request_intercept_job.cc', |
| 249 'common/net/url_request_intercept_job.h', | 264 'common/net/url_request_intercept_job.h', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 280 'common/chrome_plugin_util.h', | 295 'common/chrome_plugin_util.h', |
| 281 'common/chrome_switches.cc', | 296 'common/chrome_switches.cc', |
| 282 'common/chrome_switches.h', | 297 'common/chrome_switches.h', |
| 283 'common/classfactory.cc', | 298 'common/classfactory.cc', |
| 284 'common/classfactory.h', | 299 'common/classfactory.h', |
| 285 'common/common_glue.cc', | 300 'common/common_glue.cc', |
| 286 'common/debug_flags.cc', | 301 'common/debug_flags.cc', |
| 287 'common/debug_flags.h', | 302 'common/debug_flags.h', |
| 288 'common/devtools_messages.h', | 303 'common/devtools_messages.h', |
| 289 'common/devtools_messages_internal.h', | 304 'common/devtools_messages_internal.h', |
| 290 'common/drag_drop_types.cc', | |
| 291 'common/drag_drop_types.h', | |
| 292 'common/env_vars.cc', | 305 'common/env_vars.cc', |
| 293 'common/env_vars.h', | 306 'common/env_vars.h', |
| 294 'common/file_descriptor_set_posix.cc', | 307 'common/file_descriptor_set_posix.cc', |
| 295 'common/file_descriptor_set_posix.h', | 308 'common/file_descriptor_set_posix.h', |
| 296 'common/filter_policy.h', | 309 'common/filter_policy.h', |
| 297 'common/gears_api.h', | 310 'common/gears_api.h', |
| 298 'common/important_file_writer.cc', | 311 'common/important_file_writer.cc', |
| 299 'common/important_file_writer.h', | 312 'common/important_file_writer.h', |
| 300 'common/ipc_channel.h', | 313 'common/ipc_channel.h', |
| 301 'common/ipc_channel_posix.cc', | 314 'common/ipc_channel_posix.cc', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 317 'common/ipc_sync_message.h', | 330 'common/ipc_sync_message.h', |
| 318 'common/json_value_serializer.cc', | 331 'common/json_value_serializer.cc', |
| 319 'common/json_value_serializer.h', | 332 'common/json_value_serializer.h', |
| 320 'common/jstemplate_builder.cc', | 333 'common/jstemplate_builder.cc', |
| 321 'common/jstemplate_builder.h', | 334 'common/jstemplate_builder.h', |
| 322 'common/libxml_utils.cc', | 335 'common/libxml_utils.cc', |
| 323 'common/libxml_utils.h', | 336 'common/libxml_utils.h', |
| 324 'common/logging_chrome.cc', | 337 'common/logging_chrome.cc', |
| 325 'common/logging_chrome.h', | 338 'common/logging_chrome.h', |
| 326 'common/main_function_params.h', | 339 'common/main_function_params.h', |
| 327 'common/message_box_flags.h', | |
| 328 'common/message_router.cc', | 340 'common/message_router.cc', |
| 329 'common/message_router.h', | 341 'common/message_router.h', |
| 330 'common/modal_dialog_event.h', | 342 'common/modal_dialog_event.h', |
| 331 'common/mru_cache.h', | 343 'common/mru_cache.h', |
| 332 'common/navigation_types.h', | 344 'common/navigation_types.h', |
| 333 'common/native_web_keyboard_event.h', | 345 'common/native_web_keyboard_event.h', |
| 334 'common/native_web_keyboard_event_linux.cc', | 346 'common/native_web_keyboard_event_linux.cc', |
| 335 'common/native_web_keyboard_event_mac.mm', | 347 'common/native_web_keyboard_event_mac.mm', |
| 336 'common/native_web_keyboard_event_win.cc', | 348 'common/native_web_keyboard_event_win.cc', |
| 337 'common/notification_details.h', | 349 'common/notification_details.h', |
| 338 'common/notification_observer.h', | 350 'common/notification_observer.h', |
| 339 'common/notification_registrar.cc', | 351 'common/notification_registrar.cc', |
| 340 'common/notification_registrar.h', | 352 'common/notification_registrar.h', |
| 341 'common/notification_service.cc', | 353 'common/notification_service.cc', |
| 342 'common/notification_service.h', | 354 'common/notification_service.h', |
| 343 'common/notification_source.h', | 355 'common/notification_source.h', |
| 344 'common/notification_type.h', | 356 'common/notification_type.h', |
| 345 'common/os_exchange_data.cc', | |
| 346 'common/os_exchange_data.h', | |
| 347 'common/owned_widget_gtk.cc', | 357 'common/owned_widget_gtk.cc', |
| 348 'common/owned_widget_gtk.h', | 358 'common/owned_widget_gtk.h', |
| 349 'common/page_action.h', | 359 'common/page_action.h', |
| 350 'common/page_action.cc', | 360 'common/page_action.cc', |
| 351 'common/page_transition_types.h', | 361 'common/page_transition_types.h', |
| 352 'common/page_zoom.h', | 362 'common/page_zoom.h', |
| 353 'common/platform_util.h', | 363 'common/platform_util.h', |
| 354 'common/platform_util_linux.cc', | 364 'common/platform_util_linux.cc', |
| 355 'common/platform_util_mac.mm', | 365 'common/platform_util_mac.mm', |
| 356 'common/platform_util_win.cc', | 366 'common/platform_util_win.cc', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 'include_dirs': [ | 452 'include_dirs': [ |
| 443 'third_party/wtl/include', | 453 'third_party/wtl/include', |
| 444 ], | 454 ], |
| 445 'sources!': [ | 455 'sources!': [ |
| 446 'common/temp_scaffolding_stubs.cc', | 456 'common/temp_scaffolding_stubs.cc', |
| 447 'common/temp_scaffolding_stubs.h', | 457 'common/temp_scaffolding_stubs.h', |
| 448 ], | 458 ], |
| 449 }, { # else: OS != "win" | 459 }, { # else: OS != "win" |
| 450 'sources!': [ | 460 'sources!': [ |
| 451 'common/gfx/emf.cc', | 461 'common/gfx/emf.cc', |
| 452 'common/gfx/icon_util.cc', | |
| 453 'common/classfactory.cc', | 462 'common/classfactory.cc', |
| 454 'common/drag_drop_types.cc', | |
| 455 'common/os_exchange_data.cc', | |
| 456 ], | 463 ], |
| 457 }], | 464 }], |
| 458 ], | 465 ], |
| 459 }, | 466 }, |
| 460 { | 467 { |
| 461 'target_name': 'browser', | 468 'target_name': 'browser', |
| 462 'type': '<(library)', | 469 'type': '<(library)', |
| 463 'dependencies': [ | 470 'dependencies': [ |
| 464 'common', | 471 'common', |
| 465 'chrome_resources', | 472 'chrome_resources', |
| (...skipping 2025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2491 'browser/webdata/web_database_unittest.cc', | 2498 'browser/webdata/web_database_unittest.cc', |
| 2492 'browser/window_sizer_unittest.cc', | 2499 'browser/window_sizer_unittest.cc', |
| 2493 '../app/animation_unittest.cc', | 2500 '../app/animation_unittest.cc', |
| 2494 'common/bzip2_unittest.cc', | 2501 'common/bzip2_unittest.cc', |
| 2495 'common/chrome_plugin_unittest.cc', | 2502 'common/chrome_plugin_unittest.cc', |
| 2496 'common/extensions/url_pattern_unittest.cc', | 2503 'common/extensions/url_pattern_unittest.cc', |
| 2497 'common/extensions/user_script_unittest.cc', | 2504 'common/extensions/user_script_unittest.cc', |
| 2498 'common/file_descriptor_set_unittest.cc', | 2505 'common/file_descriptor_set_unittest.cc', |
| 2499 '../app/gfx/chrome_font_unittest.cc', | 2506 '../app/gfx/chrome_font_unittest.cc', |
| 2500 'common/gfx/emf_unittest.cc', | 2507 'common/gfx/emf_unittest.cc', |
| 2501 'common/gfx/icon_util_unittest.cc', | 2508 '../app/gfx/icon_util_unittest.cc', |
| 2502 'common/gfx/text_elider_unittest.cc', | 2509 'common/gfx/text_elider_unittest.cc', |
| 2503 'common/important_file_writer_unittest.cc', | 2510 'common/important_file_writer_unittest.cc', |
| 2504 'common/ipc_message_unittest.cc', | 2511 'common/ipc_message_unittest.cc', |
| 2505 'common/ipc_sync_channel_unittest.cc', | 2512 'common/ipc_sync_channel_unittest.cc', |
| 2506 'common/ipc_sync_message_unittest.cc', | 2513 'common/ipc_sync_message_unittest.cc', |
| 2507 'common/ipc_sync_message_unittest.h', | 2514 'common/ipc_sync_message_unittest.h', |
| 2508 'common/json_value_serializer_unittest.cc', | 2515 'common/json_value_serializer_unittest.cc', |
| 2509 '../app/l10n_util_unittest.cc', | 2516 '../app/l10n_util_unittest.cc', |
| 2510 'common/mru_cache_unittest.cc', | 2517 'common/mru_cache_unittest.cc', |
| 2511 'common/net/url_util_unittest.cc', | 2518 'common/net/url_util_unittest.cc', |
| 2512 'common/notification_service_unittest.cc', | 2519 'common/notification_service_unittest.cc', |
| 2513 'common/os_exchange_data_unittest.cc', | 2520 '../app/os_exchange_data_unittest.cc', |
| 2514 'common/pref_member_unittest.cc', | 2521 'common/pref_member_unittest.cc', |
| 2515 'common/pref_service_unittest.cc', | 2522 'common/pref_service_unittest.cc', |
| 2516 'common/property_bag_unittest.cc', | 2523 'common/property_bag_unittest.cc', |
| 2517 'common/resource_dispatcher_unittest.cc', | 2524 'common/resource_dispatcher_unittest.cc', |
| 2518 'common/time_format_unittest.cc', | 2525 'common/time_format_unittest.cc', |
| 2519 'common/unzip_unittest.cc', | 2526 'common/unzip_unittest.cc', |
| 2520 'common/win_util_unittest.cc', | 2527 'common/win_util_unittest.cc', |
| 2521 'common/worker_thread_ticker_unittest.cc', | 2528 'common/worker_thread_ticker_unittest.cc', |
| 2522 'renderer/extensions/extension_api_client_unittest.cc', | 2529 'renderer/extensions/extension_api_client_unittest.cc', |
| 2523 'renderer/extensions/greasemonkey_api_unittest.cc', | 2530 'renderer/extensions/greasemonkey_api_unittest.cc', |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2620 'browser/printing/print_job_unittest.cc', | 2627 'browser/printing/print_job_unittest.cc', |
| 2621 'browser/rlz/rlz_unittest.cc', | 2628 'browser/rlz/rlz_unittest.cc', |
| 2622 'browser/tabs/tab_strip_model_unittest.cc', | 2629 'browser/tabs/tab_strip_model_unittest.cc', |
| 2623 'browser/task_manager_unittest.cc', | 2630 'browser/task_manager_unittest.cc', |
| 2624 'browser/views/bookmark_editor_view_unittest.cc', | 2631 'browser/views/bookmark_editor_view_unittest.cc', |
| 2625 'browser/views/find_bar_win_unittest.cc', | 2632 'browser/views/find_bar_win_unittest.cc', |
| 2626 'browser/views/keyword_editor_view_unittest.cc', | 2633 'browser/views/keyword_editor_view_unittest.cc', |
| 2627 'browser/window_sizer_unittest.cc', | 2634 'browser/window_sizer_unittest.cc', |
| 2628 'common/chrome_plugin_unittest.cc', | 2635 'common/chrome_plugin_unittest.cc', |
| 2629 'common/gfx/emf_unittest.cc', | 2636 'common/gfx/emf_unittest.cc', |
| 2630 'common/gfx/icon_util_unittest.cc', | 2637 '../app/gfx/icon_util_unittest.cc', |
| 2631 'common/net/url_util_unittest.cc', | 2638 'common/net/url_util_unittest.cc', |
| 2632 'common/os_exchange_data_unittest.cc', | 2639 '../app/os_exchange_data_unittest.cc', |
| 2633 'test/browser_with_test_window_test.cc', | 2640 'test/browser_with_test_window_test.cc', |
| 2634 'test/browser_with_test_window_test.h', | 2641 'test/browser_with_test_window_test.h', |
| 2635 'views/controls/label_unittest.cc', | 2642 'views/controls/label_unittest.cc', |
| 2636 'views/controls/table/table_view_unittest.cc', | 2643 'views/controls/table/table_view_unittest.cc', |
| 2637 'views/focus/focus_manager_unittest.cc', | 2644 'views/focus/focus_manager_unittest.cc', |
| 2638 'views/grid_layout_unittest.cc', | 2645 'views/grid_layout_unittest.cc', |
| 2639 'views/view_unittest.cc', | 2646 'views/view_unittest.cc', |
| 2640 ], | 2647 ], |
| 2641 }], | 2648 }], |
| 2642 ], | 2649 ], |
| (...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3244 # Use outputs of this action as inputs for the main target build. | 3251 # Use outputs of this action as inputs for the main target build. |
| 3245 # Seems as a misnomer but makes this happy on Linux (scons). | 3252 # Seems as a misnomer but makes this happy on Linux (scons). |
| 3246 'process_outputs_as_sources': 1, | 3253 'process_outputs_as_sources': 1, |
| 3247 }, | 3254 }, |
| 3248 ], # 'actions' | 3255 ], # 'actions' |
| 3249 }, | 3256 }, |
| 3250 ] | 3257 ] |
| 3251 }], | 3258 }], |
| 3252 ], # 'conditions' | 3259 ], # 'conditions' |
| 3253 } | 3260 } |
| OLD | NEW |