| 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 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 static_library("content_shell_lib") { | 22 static_library("content_shell_lib") { |
| 23 testonly = true | 23 testonly = true |
| 24 sources = [ | 24 sources = [ |
| 25 "android/shell_jni_registrar.cc", | 25 "android/shell_jni_registrar.cc", |
| 26 "android/shell_jni_registrar.h", | 26 "android/shell_jni_registrar.h", |
| 27 "android/shell_manager.cc", | 27 "android/shell_manager.cc", |
| 28 "android/shell_manager.h", | 28 "android/shell_manager.h", |
| 29 "app/paths_mac.h", | 29 "app/paths_mac.h", |
| 30 "app/paths_mac.mm", | 30 "app/paths_mac.mm", |
| 31 "app/shell_breakpad_client.cc", | 31 "app/shell_crash_reporter_client.cc", |
| 32 "app/shell_breakpad_client.h", | 32 "app/shell_crash_reporter_client.h", |
| 33 "app/shell_main_delegate.cc", | 33 "app/shell_main_delegate.cc", |
| 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", |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 if (is_android && !is_android_webview_build) { | 474 if (is_android && !is_android_webview_build) { |
| 475 # Some tests rely on this tool. It might be nicer if these tests relied on | 475 # Some tests rely on this tool. It might be nicer if these tests relied on |
| 476 # image diff rather than having content shell depend on it. | 476 # image diff rather than having content shell depend on it. |
| 477 datadeps = [ | 477 datadeps = [ |
| 478 "//tools/imagediff($host_toolchain)", | 478 "//tools/imagediff($host_toolchain)", |
| 479 ] | 479 ] |
| 480 } | 480 } |
| 481 } | 481 } |
| 482 | 482 |
| 483 } | 483 } |
| OLD | NEW |