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

Side by Side Diff: BUILD.gn

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

Powered by Google App Engine
This is Rietveld 408576698