| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "app/shell_main_delegate.h", | 34 "app/shell_main_delegate.h", |
| 35 "app/shell_main_delegate_mac.h", | 35 "app/shell_main_delegate_mac.h", |
| 36 "app/shell_main_delegate_mac.mm", | 36 "app/shell_main_delegate_mac.mm", |
| 37 "app/webkit_test_platform_support_android.cc", | 37 "app/webkit_test_platform_support_android.cc", |
| 38 "app/webkit_test_platform_support.h", | 38 "app/webkit_test_platform_support.h", |
| 39 "app/webkit_test_platform_support_linux.cc", | 39 "app/webkit_test_platform_support_linux.cc", |
| 40 "app/webkit_test_platform_support_mac.mm", | 40 "app/webkit_test_platform_support_mac.mm", |
| 41 "app/webkit_test_platform_support_win.cc", | 41 "app/webkit_test_platform_support_win.cc", |
| 42 "browser/ipc_echo_message_filter.cc", | 42 "browser/ipc_echo_message_filter.cc", |
| 43 "browser/ipc_echo_message_filter.h", | 43 "browser/ipc_echo_message_filter.h", |
| 44 "browser/layout_test/layout_test_devtools_frontend.cc", |
| 45 "browser/layout_test/layout_test_devtools_frontend.h", |
| 44 "browser/layout_test/layout_test_javascript_dialog_manager.cc", | 46 "browser/layout_test/layout_test_javascript_dialog_manager.cc", |
| 45 "browser/layout_test/layout_test_javascript_dialog_manager.h", | 47 "browser/layout_test/layout_test_javascript_dialog_manager.h", |
| 46 "browser/layout_test/layout_test_resource_dispatcher_host_delegate.cc", | 48 "browser/layout_test/layout_test_resource_dispatcher_host_delegate.cc", |
| 47 "browser/layout_test/layout_test_resource_dispatcher_host_delegate.h", | 49 "browser/layout_test/layout_test_resource_dispatcher_host_delegate.h", |
| 48 "browser/notify_done_forwarder.cc", | 50 "browser/notify_done_forwarder.cc", |
| 49 "browser/notify_done_forwarder.h", | 51 "browser/notify_done_forwarder.h", |
| 50 "browser/shell_android.cc", | 52 "browser/shell_android.cc", |
| 51 "browser/shell_application_mac.h", | 53 "browser/shell_application_mac.h", |
| 52 "browser/shell_application_mac.mm", | 54 "browser/shell_application_mac.mm", |
| 53 "browser/shell_browser_context.cc", | 55 "browser/shell_browser_context.cc", |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 if (is_android && !is_android_webview_build) { | 482 if (is_android && !is_android_webview_build) { |
| 481 # Some tests rely on this tool. It might be nicer if these tests relied on | 483 # Some tests rely on this tool. It might be nicer if these tests relied on |
| 482 # image diff rather than having content shell depend on it. | 484 # image diff rather than having content shell depend on it. |
| 483 datadeps = [ | 485 datadeps = [ |
| 484 "//tools/imagediff($host_toolchain)", | 486 "//tools/imagediff($host_toolchain)", |
| 485 ] | 487 ] |
| 486 } | 488 } |
| 487 } | 489 } |
| 488 | 490 |
| 489 } | 491 } |
| OLD | NEW |