| 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/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/console_app.gni") | 8 import("//build/config/win/console_app.gni") |
| 9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "common/layout_test/layout_test_messages.h", | 155 "common/layout_test/layout_test_messages.h", |
| 156 "common/layout_test/layout_test_switches.cc", | 156 "common/layout_test/layout_test_switches.cc", |
| 157 "common/layout_test/layout_test_switches.h", | 157 "common/layout_test/layout_test_switches.h", |
| 158 "common/leak_detection_result.h", | 158 "common/leak_detection_result.h", |
| 159 "common/shell_content_client.cc", | 159 "common/shell_content_client.cc", |
| 160 "common/shell_content_client.h", | 160 "common/shell_content_client.h", |
| 161 "common/shell_messages.cc", | 161 "common/shell_messages.cc", |
| 162 "common/shell_messages.h", | 162 "common/shell_messages.h", |
| 163 "common/shell_origin_trial_policy.cc", | 163 "common/shell_origin_trial_policy.cc", |
| 164 "common/shell_origin_trial_policy.h", | 164 "common/shell_origin_trial_policy.h", |
| 165 "common/shell_param_traits.cc", |
| 166 "common/shell_param_traits.h", |
| 165 "common/shell_switches.cc", | 167 "common/shell_switches.cc", |
| 166 "common/shell_switches.h", | 168 "common/shell_switches.h", |
| 167 "common/shell_test_configuration.cc", | 169 "common/shell_test_configuration.cc", |
| 168 "common/shell_test_configuration.h", | 170 "common/shell_test_configuration.h", |
| 169 "renderer/layout_test/blink_test_helpers.cc", | 171 "renderer/layout_test/blink_test_helpers.cc", |
| 170 "renderer/layout_test/blink_test_helpers.h", | 172 "renderer/layout_test/blink_test_helpers.h", |
| 171 "renderer/layout_test/blink_test_runner.cc", | 173 "renderer/layout_test/blink_test_runner.cc", |
| 172 "renderer/layout_test/blink_test_runner.h", | 174 "renderer/layout_test/blink_test_runner.h", |
| 173 "renderer/layout_test/interface_registry_js_wrapper.cc", | 175 "renderer/layout_test/interface_registry_js_wrapper.cc", |
| 174 "renderer/layout_test/interface_registry_js_wrapper.h", | 176 "renderer/layout_test/interface_registry_js_wrapper.h", |
| (...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 "app/app.icns", | 755 "app/app.icns", |
| 754 ] | 756 ] |
| 755 outputs = [ | 757 outputs = [ |
| 756 "{{bundle_resources_dir}}/{{source_file_part}}", | 758 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 757 ] | 759 ] |
| 758 } | 760 } |
| 759 } | 761 } |
| 760 | 762 |
| 761 mojom("mojo_bindings") { | 763 mojom("mojo_bindings") { |
| 762 sources = [ | 764 sources = [ |
| 765 "common/layout_test.mojom", |
| 763 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 766 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
| 764 ] | 767 ] |
| 768 public_deps = [ |
| 769 "//ui/gfx/geometry/mojo", |
| 770 "//url/mojo:url_mojom_gurl", |
| 771 ] |
| 765 } | 772 } |
| OLD | NEW |