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

Side by Side Diff: BUILD.gn

Issue 2022543002: GN build of angle_unittests on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 "//device:device_unittests", 442 "//device:device_unittests",
443 "//gin:gin_shell", 443 "//gin:gin_shell",
444 "//gin:gin_unittests", 444 "//gin:gin_unittests",
445 "//google_apis/gcm:mcs_probe", 445 "//google_apis/gcm:mcs_probe",
446 "//gpu:gl_tests", 446 "//gpu:gl_tests",
447 "//gpu:gpu_perftests", 447 "//gpu:gpu_perftests",
448 "//ipc:ipc_perftests", 448 "//ipc:ipc_perftests",
449 "//media:media_perftests", 449 "//media:media_perftests",
450 "//net:dump_cache", 450 "//net:dump_cache",
451 "//sync:run_sync_testserver", 451 "//sync:run_sync_testserver",
452 "//third_party/angle/src/tests:angle_unittests",
452 "//third_party/codesighs:maptsvdifftool", 453 "//third_party/codesighs:maptsvdifftool",
453 "//third_party/libphonenumber:libphonenumber_unittests", 454 "//third_party/libphonenumber:libphonenumber_unittests",
454 "//ui/compositor:compositor_unittests", 455 "//ui/compositor:compositor_unittests",
455 ] 456 ]
456 457
457 # TODO(GYP): Figure out which of these should (and can) build 458 # TODO(GYP): Figure out which of these should (and can) build
458 # for chromeos/mac/ios. 459 # for chromeos/mac/ios.
459 if (!is_android) { 460 if (!is_android) {
460 deps += [ 461 deps += [
461 "//chrome/test:load_library_perf_tests", 462 "//chrome/test:load_library_perf_tests",
(...skipping 10 matching lines...) Expand all
472 "//net:crl_set_dump", 473 "//net:crl_set_dump",
473 "//net:dns_fuzz_stub", 474 "//net:dns_fuzz_stub",
474 "//net:gdig", 475 "//net:gdig",
475 "//net:get_server_time", 476 "//net:get_server_time",
476 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_ in_net 477 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_ in_net
477 "//net:run_testserver", 478 "//net:run_testserver",
478 "//net:stress_cache", 479 "//net:stress_cache",
479 "//net:tld_cleanup", 480 "//net:tld_cleanup",
480 "//ppapi:pepper_hash_for_uma", 481 "//ppapi:pepper_hash_for_uma",
481 "//ppapi:ppapi_perftests", 482 "//ppapi:ppapi_perftests",
482 "//third_party/angle/src/tests:angle_unittests",
483 "//third_party/leveldatabase:env_chromium_unittests", 483 "//third_party/leveldatabase:env_chromium_unittests",
484 "//third_party/libaddressinput:libaddressinput_unittests", 484 "//third_party/libaddressinput:libaddressinput_unittests",
485 ] 485 ]
486 } 486 }
487 if (!is_android && !is_linux) { 487 if (!is_android && !is_linux) {
488 # TODO(dpranke): Re-enable this once 488 # TODO(dpranke): Re-enable this once
489 # https://chromium-review.googlesource.com/#/c/312298/1 is rolled 489 # https://chromium-review.googlesource.com/#/c/312298/1 is rolled
490 # into chromium. 490 # into chromium.
491 deps += [ "//third_party/angle/src/tests:angle_end2end_tests" ] 491 deps += [ "//third_party/angle/src/tests:angle_end2end_tests" ]
492 } 492 }
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
951 assert(target_name != "") # Mark as used. 951 assert(target_name != "") # Mark as used.
952 sources = invoker.actual_sources 952 sources = invoker.actual_sources
953 assert( 953 assert(
954 sources == invoker.actual_sources, 954 sources == invoker.actual_sources,
955 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") 955 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283")
956 } 956 }
957 957
958 assert_valid_out_dir("_unused") { 958 assert_valid_out_dir("_unused") {
959 actual_sources = [ "$root_build_dir/foo" ] 959 actual_sources = [ "$root_build_dir/foo" ]
960 } 960 }
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