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

Side by Side Diff: BUILD.gn

Issue 1408623002: Add cloud_print to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years, 2 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
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 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 "//third_party/WebKit/Source/web:webkit_unit_tests", 589 "//third_party/WebKit/Source/web:webkit_unit_tests",
590 ] 590 ]
591 } 591 }
592 592
593 if (is_win) { 593 if (is_win) {
594 deps += [ 594 deps += [
595 "//base:pe_image_test", 595 "//base:pe_image_test",
596 "//chrome/installer/setup:setup_unittests", 596 "//chrome/installer/setup:setup_unittests",
597 "//chrome_elf:chrome_elf_unittests", 597 "//chrome_elf:chrome_elf_unittests",
598 "//chrome_elf:dll_hash_main", 598 "//chrome_elf:dll_hash_main",
599 "//cloud_print/service/win:cloud_print_service",
600 "//cloud_print:cloud_print_unittests",
599 "//components/crash/content/tools:crash_service", 601 "//components/crash/content/tools:crash_service",
600 "//components/wifi:wifi_test", 602 "//components/wifi:wifi_test",
601 "//net:quic_client", 603 "//net:quic_client",
602 "//net:quic_server", 604 "//net:quic_server",
603 "//sandbox/win:pocdll", 605 "//sandbox/win:pocdll",
604 "//sandbox/win:sandbox_poc", 606 "//sandbox/win:sandbox_poc",
605 "//sandbox/win:sbox_integration_tests", 607 "//sandbox/win:sbox_integration_tests",
606 "//sandbox/win:sbox_unittests", 608 "//sandbox/win:sbox_unittests",
607 "//sandbox/win:sbox_validation_tests", 609 "//sandbox/win:sbox_validation_tests",
608 "//testing/gtest:gtest_main", 610 "//testing/gtest:gtest_main",
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 if (target_cpu == "x86") { 869 if (target_cpu == "x86") {
868 deps += [ 870 deps += [
869 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 871 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
870 ] 872 ]
871 } 873 }
872 } else { 874 } else {
873 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 875 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
874 } 876 }
875 } 877 }
876 } 878 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698