Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: BUILD.gn

Issue 1674263002: headless: Initial headless embedder API implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove provisional client API for now. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | headless/BUILD.gn » ('j') | headless/app/headless_shell.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 } 742 }
743 } 743 }
744 744
745 if (is_android) { 745 if (is_android) {
746 deps += [ 746 deps += [
747 "//build/android/gyp/test:hello_world", 747 "//build/android/gyp/test:hello_world",
748 "//build/android/incremental_install:bootstrap_java", 748 "//build/android/incremental_install:bootstrap_java",
749 ] 749 ]
750 } 750 }
751 751
752 if (is_linux && use_ozone) {
753 deps += [
754 "//headless",
755 "//headless:headless_tests",
756 ]
757 }
758
752 if (!is_chromecast && (is_android || is_linux || is_chromeos)) { 759 if (!is_chromecast && (is_android || is_linux || is_chromeos)) {
753 deps += [ 760 deps += [
754 "//blimp", 761 "//blimp",
755 "//blimp:blimp_tests", 762 "//blimp:blimp_tests",
756 ] 763 ]
757 } 764 }
758 } 765 }
759 766
760 group("gn_mojo_targets") { 767 group("gn_mojo_targets") {
761 testonly = true 768 testonly = true
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 ] 897 ]
891 898
892 if (target_cpu == "x86") { 899 if (target_cpu == "x86") {
893 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] 900 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
894 } 901 }
895 } else { 902 } else {
896 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 903 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
897 } 904 }
898 } 905 }
899 } 906 }
OLDNEW
« no previous file with comments | « no previous file | headless/BUILD.gn » ('j') | headless/app/headless_shell.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698