OLD | NEW |
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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 } | 487 } |
488 | 488 |
489 if (is_ios || is_win || (is_linux && !is_chromeos)) { | 489 if (is_ios || is_win || (is_linux && !is_chromeos)) { |
490 deps += [ | 490 deps += [ |
491 "//base:base_i18n_perftests", | 491 "//base:base_i18n_perftests", |
492 "//base:base_perftests", | 492 "//base:base_perftests", |
493 "//google_apis:google_apis_unittests", | 493 "//google_apis:google_apis_unittests", |
494 ] | 494 ] |
495 } | 495 } |
496 | 496 |
| 497 # TODO(sugoi) bug 644737: Remove the '!is_clang' condition once __nop is suppo
rted by clang-cl |
| 498 if (is_linux || (is_win && !is_clang)) { |
| 499 deps += [ "//third_party/swiftshader" ] |
| 500 } |
| 501 |
497 # TODO(GYP): Figure out which of these should (and can) build | 502 # TODO(GYP): Figure out which of these should (and can) build |
498 # for chromeos/ios. | 503 # for chromeos/ios. |
499 if (!is_chromeos && !is_ios) { | 504 if (!is_chromeos && !is_ios) { |
500 deps += [ | 505 deps += [ |
501 "//base:build_utf8_validator_tables", | 506 "//base:build_utf8_validator_tables", |
502 "//base:check_example", | 507 "//base:check_example", |
503 "//cc:cc_perftests", | 508 "//cc:cc_perftests", |
504 "//cc/blink:cc_blink_unittests", | 509 "//cc/blink:cc_blink_unittests", |
505 "//components:components_perftests", | 510 "//components:components_perftests", |
506 "//components/sync:run_sync_testserver", | 511 "//components/sync:run_sync_testserver", |
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1126 "//ui/display:display_unittests", | 1131 "//ui/display:display_unittests", |
1127 "//ui/events:events_unittests", | 1132 "//ui/events:events_unittests", |
1128 "//ui/gfx:gfx_unittests", | 1133 "//ui/gfx:gfx_unittests", |
1129 "//ui/gl:gl_unittests", | 1134 "//ui/gl:gl_unittests", |
1130 "//ui/keyboard:keyboard_unittests", | 1135 "//ui/keyboard:keyboard_unittests", |
1131 "//ui/touch_selection:ui_touch_selection_unittests", | 1136 "//ui/touch_selection:ui_touch_selection_unittests", |
1132 "//url:url_unittests", | 1137 "//url:url_unittests", |
1133 ] | 1138 ] |
1134 } | 1139 } |
1135 } | 1140 } |
OLD | NEW |