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

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: Fix windows Created 4 years, 4 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 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 "//components/test_runner:layout_test_helper", 896 "//components/test_runner:layout_test_helper",
897 "//content/shell:content_shell_crash_service", 897 "//content/shell:content_shell_crash_service",
898 ] 898 ]
899 } 899 }
900 900
901 if (!is_win && !is_android) { 901 if (!is_win && !is_android) {
902 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 902 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
903 } 903 }
904 904
905 if (is_mac) { 905 if (is_mac) {
906 deps += [ 906 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
907 "//breakpad:dump_syms($host_toolchain)",
908 "//components/test_runner:layout_test_helper",
909 ]
910 } 907 }
911 908
912 if (is_linux) { 909 if (is_linux) {
913 deps += [ "//breakpad:dump_syms($host_toolchain)" ] 910 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
914 } 911 }
915 912
916 data = [ 913 data = [
917 "//third_party/WebKit/LayoutTests/", 914 "//third_party/WebKit/LayoutTests/",
918 "//third_party/WebKit/Tools/Scripts/", 915 "//third_party/WebKit/Tools/Scripts/",
919 ] 916 ]
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 "//ui/display:display_unittests", 1115 "//ui/display:display_unittests",
1119 "//ui/events:events_unittests", 1116 "//ui/events:events_unittests",
1120 "//ui/gfx:gfx_unittests", 1117 "//ui/gfx:gfx_unittests",
1121 "//ui/gl:gl_unittests", 1118 "//ui/gl:gl_unittests",
1122 "//ui/keyboard:keyboard_unittests", 1119 "//ui/keyboard:keyboard_unittests",
1123 "//ui/touch_selection:ui_touch_selection_unittests", 1120 "//ui/touch_selection:ui_touch_selection_unittests",
1124 "//url:url_unittests", 1121 "//url:url_unittests",
1125 ] 1122 ]
1126 } 1123 }
1127 } 1124 }
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | content/shell/renderer/layout_test/layout_test_content_renderer_client.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698