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

Side by Side Diff: BUILD.gn

Issue 1324263003: Blimp: create MessageDispatcher class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp-protos
Patch Set: Addressed nyquist's feedback Created 5 years, 3 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 | blimp/BUILD.gn » ('j') | blimp/BUILD.gn » ('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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 610
611 if (!is_android && !is_ios) { 611 if (!is_android && !is_ios) {
612 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] 612 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
613 } 613 }
614 614
615 if (is_linux && !is_chromeos) { 615 if (is_linux && !is_chromeos) {
616 # TODO(GYP): Figure out if any of these should be in gn_all 616 # TODO(GYP): Figure out if any of these should be in gn_all
617 # and figure out how cross-platform they are 617 # and figure out how cross-platform they are
618 deps += [ 618 deps += [
619 ":gn_mojo_targets", 619 ":gn_mojo_targets",
620 "//blimp:unit_tests",
nyquist 2015/09/10 00:18:48 Could you add this to: //testing/buildbot/chromium
Kevin M 2015/09/10 18:11:17 Done From what I can tell, I can only add test ex
620 "//chrome/browser/resources:extension_resource_demo", 621 "//chrome/browser/resources:extension_resource_demo",
621 "//chrome/installer/util:strings", 622 "//chrome/installer/util:strings",
622 "//chrome:main_dll", 623 "//chrome:main_dll",
623 "//chrome/test:load_library_perf_tests", 624 "//chrome/test:load_library_perf_tests",
624 "//chrome/tools/convert_dict", 625 "//chrome/tools/convert_dict",
625 "//components/constrained_window:unit_tests", 626 "//components/constrained_window:unit_tests",
626 "//components/enhanced_bookmarks:test_support", 627 "//components/enhanced_bookmarks:test_support",
627 "//components/metrics:serialization", 628 "//components/metrics:serialization",
628 "//components/password_manager/content/renderer:browser_tests", 629 "//components/password_manager/content/renderer:browser_tests",
629 "//components/rappor:unit_tests", 630 "//components/rappor:unit_tests",
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 "//ui/views:views_unittests", # TooltipControllerTest failures 937 "//ui/views:views_unittests", # TooltipControllerTest failures
937 "//ui/wm:wm_unittests", # PASSES 4/21/2015 938 "//ui/wm:wm_unittests", # PASSES 4/21/2015
938 "//url:url_unittests", # PASSES 4/17/2015 939 "//url:url_unittests", # PASSES 4/17/2015
939 940
940 # TODO(GYP) nacl_integration 941 # TODO(GYP) nacl_integration
941 # TODO(GYP) telemetry_perf_unittests 942 # TODO(GYP) telemetry_perf_unittests
942 # TODO(GYP) telemetry_unittests 943 # TODO(GYP) telemetry_unittests
943 ] 944 ]
944 } 945 }
945 } 946 }
OLDNEW
« no previous file with comments | « no previous file | blimp/BUILD.gn » ('j') | blimp/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698