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

Side by Side Diff: BUILD.gn

Issue 2226733003: Color: Clean up color profile handling for layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master2
Patch Set: Update TODOs Created 4 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 | build/all.gyp » ('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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 "//components/test_runner:layout_test_helper", 904 "//components/test_runner:layout_test_helper",
905 "//content/shell:content_shell_crash_service", 905 "//content/shell:content_shell_crash_service",
906 ] 906 ]
907 } 907 }
908 908
909 if (!is_win && !is_android) { 909 if (!is_win && !is_android) {
910 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 910 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
911 } 911 }
912 912
913 if (is_mac) { 913 if (is_mac) {
914 deps += [ 914 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
915 "//breakpad:dump_syms($host_toolchain)",
916 "//components/test_runner:layout_test_helper",
917 ]
918 } 915 }
919 916
920 if (is_linux) { 917 if (is_linux) {
921 deps += [ "//breakpad:dump_syms($host_toolchain)" ] 918 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
922 } 919 }
923 920
924 data = [ 921 data = [
925 "//third_party/WebKit/LayoutTests/", 922 "//third_party/WebKit/LayoutTests/",
926 "//third_party/WebKit/Tools/Scripts/", 923 "//third_party/WebKit/Tools/Scripts/",
927 ] 924 ]
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 "//ui/display:display_unittests", 1125 "//ui/display:display_unittests",
1129 "//ui/events:events_unittests", 1126 "//ui/events:events_unittests",
1130 "//ui/gfx:gfx_unittests", 1127 "//ui/gfx:gfx_unittests",
1131 "//ui/gl:gl_unittests", 1128 "//ui/gl:gl_unittests",
1132 "//ui/keyboard:keyboard_unittests", 1129 "//ui/keyboard:keyboard_unittests",
1133 "//ui/touch_selection:ui_touch_selection_unittests", 1130 "//ui/touch_selection:ui_touch_selection_unittests",
1134 "//url:url_unittests", 1131 "//url:url_unittests",
1135 ] 1132 ]
1136 } 1133 }
1137 } 1134 }
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698