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 523 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 } |
| 544 |
| 545 if (is_mac || is_win) { |
| 546 # GYP version: content/content_shell_and_tests.gyp:layout_test_helper |
| 547 executable("layout_test_helper") { |
| 548 sources = [ |
| 549 "renderer/test_runner/helper/layout_test_helper_mac.mm", |
| 550 "renderer/test_runner/helper/layout_test_helper_win.cc", |
| 551 ] |
| 552 |
| 553 if (is_mac) { |
| 554 libs = [ "AppKit.framework" ] |
| 555 } |
| 556 } |
| 557 } |
OLD | NEW |