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

Side by Side Diff: BUILD.gn

Issue 2330173002: Adding target to build SwiftShader (Closed)
Patch Set: Back to original cl 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 | no next file » | 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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 } 493 }
494 494
495 if (is_ios || is_win || (is_linux && !is_chromeos)) { 495 if (is_ios || is_win || (is_linux && !is_chromeos)) {
496 deps += [ 496 deps += [
497 "//base:base_i18n_perftests", 497 "//base:base_i18n_perftests",
498 "//base:base_perftests", 498 "//base:base_perftests",
499 "//google_apis:google_apis_unittests", 499 "//google_apis:google_apis_unittests",
500 ] 500 ]
501 } 501 }
502 502
503 if (is_linux || is_win) {
504 deps += [ "//third_party/swiftshader" ]
505 }
506
503 # TODO(GYP): Figure out which of these should (and can) build 507 # TODO(GYP): Figure out which of these should (and can) build
504 # for chromeos/ios. 508 # for chromeos/ios.
505 if (!is_chromeos && !is_ios) { 509 if (!is_chromeos && !is_ios) {
506 deps += [ 510 deps += [
507 "//base:build_utf8_validator_tables", 511 "//base:build_utf8_validator_tables",
508 "//base:check_example", 512 "//base:check_example",
509 "//cc:cc_perftests", 513 "//cc:cc_perftests",
510 "//cc/blink:cc_blink_unittests", 514 "//cc/blink:cc_blink_unittests",
511 "//components:components_perftests", 515 "//components:components_perftests",
512 "//components/sync:run_sync_testserver", 516 "//components/sync:run_sync_testserver",
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 "//ui/display:display_unittests", 1132 "//ui/display:display_unittests",
1129 "//ui/events:events_unittests", 1133 "//ui/events:events_unittests",
1130 "//ui/gfx:gfx_unittests", 1134 "//ui/gfx:gfx_unittests",
1131 "//ui/gl:gl_unittests", 1135 "//ui/gl:gl_unittests",
1132 "//ui/keyboard:keyboard_unittests", 1136 "//ui/keyboard:keyboard_unittests",
1133 "//ui/touch_selection:ui_touch_selection_unittests", 1137 "//ui/touch_selection:ui_touch_selection_unittests",
1134 "//url:url_unittests", 1138 "//url:url_unittests",
1135 ] 1139 ]
1136 } 1140 }
1137 } 1141 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698