| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "common/shell_content_client.cc", | 137 "common/shell_content_client.cc", |
| 138 "common/shell_content_client.h", | 138 "common/shell_content_client.h", |
| 139 "common/shell_messages.cc", | 139 "common/shell_messages.cc", |
| 140 "common/shell_messages.h", | 140 "common/shell_messages.h", |
| 141 "common/shell_switches.cc", | 141 "common/shell_switches.cc", |
| 142 "common/shell_switches.h", | 142 "common/shell_switches.h", |
| 143 "common/shell_test_configuration.cc", | 143 "common/shell_test_configuration.cc", |
| 144 "common/shell_test_configuration.h", | 144 "common/shell_test_configuration.h", |
| 145 "common/test_runner/test_preferences.cc", | 145 "common/test_runner/test_preferences.cc", |
| 146 "common/test_runner/test_preferences.h", | 146 "common/test_runner/test_preferences.h", |
| 147 "common/webkit_test_helpers.cc", | |
| 148 "common/webkit_test_helpers.h", | |
| 149 "renderer/ipc_echo.cc", | 147 "renderer/ipc_echo.cc", |
| 150 "renderer/ipc_echo.h", | 148 "renderer/ipc_echo.h", |
| 149 "renderer/layout_test/blink_test_helpers.cc", |
| 150 "renderer/layout_test/blink_test_helpers.h", |
| 151 "renderer/layout_test/blink_test_runner.cc", | 151 "renderer/layout_test/blink_test_runner.cc", |
| 152 "renderer/layout_test/blink_test_runner.h", | 152 "renderer/layout_test/blink_test_runner.h", |
| 153 "renderer/layout_test/gc_controller.cc", | 153 "renderer/layout_test/gc_controller.cc", |
| 154 "renderer/layout_test/gc_controller.h", | 154 "renderer/layout_test/gc_controller.h", |
| 155 "renderer/layout_test/layout_test_content_renderer_client.cc", | 155 "renderer/layout_test/layout_test_content_renderer_client.cc", |
| 156 "renderer/layout_test/layout_test_content_renderer_client.h", | 156 "renderer/layout_test/layout_test_content_renderer_client.h", |
| 157 "renderer/layout_test/layout_test_render_frame_observer.cc", | 157 "renderer/layout_test/layout_test_render_frame_observer.cc", |
| 158 "renderer/layout_test/layout_test_render_frame_observer.h", | 158 "renderer/layout_test/layout_test_render_frame_observer.h", |
| 159 "renderer/layout_test/layout_test_render_process_observer.cc", | 159 "renderer/layout_test/layout_test_render_process_observer.cc", |
| 160 "renderer/layout_test/layout_test_render_process_observer.h", | 160 "renderer/layout_test/layout_test_render_process_observer.h", |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 } | 534 } |
| 535 } | 535 } |
| 536 } else { | 536 } else { |
| 537 group("content_shell") { | 537 group("content_shell") { |
| 538 testonly = true | 538 testonly = true |
| 539 deps = [ | 539 deps = [ |
| 540 ":content_shell_lib", | 540 ":content_shell_lib", |
| 541 ] | 541 ] |
| 542 } | 542 } |
| 543 } | 543 } |
| OLD | NEW |