| 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 if (enable_ipc_fuzzer && (is_linux || is_mac || is_win)) { |
| 598 deps += [ "//tools/ipc_fuzzer:ipc_fuzzer_all" ] |
| 599 } |
| 596 } | 600 } |
| 597 | 601 |
| 598 # This group contains all the targets needed to run mojo's apptest_runner. | 602 # This group contains all the targets needed to run mojo's apptest_runner. |
| 599 group("mojo_apptests") { | 603 group("mojo_apptests") { |
| 600 testonly = true | 604 testonly = true |
| 601 | 605 |
| 602 deps = [] | 606 deps = [] |
| 603 | 607 |
| 604 if (is_win || is_linux) { | 608 if (is_win || is_linux) { |
| 605 deps += [ | 609 deps += [ |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 assert(target_name != "") # Mark as used. | 914 assert(target_name != "") # Mark as used. |
| 911 sources = invoker.actual_sources | 915 sources = invoker.actual_sources |
| 912 assert( | 916 assert( |
| 913 sources == invoker.actual_sources, | 917 sources == invoker.actual_sources, |
| 914 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 918 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 915 } | 919 } |
| 916 | 920 |
| 917 assert_valid_out_dir("_unused") { | 921 assert_valid_out_dir("_unused") { |
| 918 actual_sources = [ "$root_build_dir/foo" ] | 922 actual_sources = [ "$root_build_dir/foo" ] |
| 919 } | 923 } |
| OLD | NEW |