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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
586 deps += [ "//media/cast:cast_h264_vt_encoder_unittests" ] | 586 deps += [ "//media/cast:cast_h264_vt_encoder_unittests" ] |
587 } | 587 } |
588 | 588 |
589 if (use_openh264) { | 589 if (use_openh264) { |
590 deps += [ | 590 deps += [ |
591 "//third_party/openh264:common", | 591 "//third_party/openh264:common", |
592 "//third_party/openh264:encoder", | 592 "//third_party/openh264:encoder", |
593 "//third_party/openh264:processing", | 593 "//third_party/openh264:processing", |
594 ] | 594 ] |
595 } | 595 } |
596 | |
597 deps += [ "//tools/ipc_fuzzer:ipc_fuzzer_all" ] | |
Dirk Pranke
2016/04/25 18:48:58
since this is now unconditionally added, you shoul
Oliver Chang
2016/04/25 19:25:50
Done.
| |
596 } | 598 } |
597 | 599 |
598 # This group contains all the targets needed to run mojo's apptest_runner. | 600 # This group contains all the targets needed to run mojo's apptest_runner. |
599 group("mojo_apptests") { | 601 group("mojo_apptests") { |
600 testonly = true | 602 testonly = true |
601 | 603 |
602 deps = [] | 604 deps = [] |
603 | 605 |
604 if (is_win || is_linux) { | 606 if (is_win || is_linux) { |
605 deps += [ | 607 deps += [ |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
910 assert(target_name != "") # Mark as used. | 912 assert(target_name != "") # Mark as used. |
911 sources = invoker.actual_sources | 913 sources = invoker.actual_sources |
912 assert( | 914 assert( |
913 sources == invoker.actual_sources, | 915 sources == invoker.actual_sources, |
914 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") | 916 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") |
915 } | 917 } |
916 | 918 |
917 assert_valid_out_dir("_unused") { | 919 assert_valid_out_dir("_unused") { |
918 actual_sources = [ "$root_build_dir/foo" ] | 920 actual_sources = [ "$root_build_dir/foo" ] |
919 } | 921 } |
OLD | NEW |