OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... |
39 ] | 39 ] |
40 } | 40 } |
41 | 41 |
42 executable("frame_analyzer") { | 42 executable("frame_analyzer") { |
43 sources = [ | 43 sources = [ |
44 "frame_analyzer/frame_analyzer.cc", | 44 "frame_analyzer/frame_analyzer.cc", |
45 ] | 45 ] |
46 deps = [ | 46 deps = [ |
47 ":command_line_parser", | 47 ":command_line_parser", |
48 ":video_quality_analysis", | 48 ":video_quality_analysis", |
| 49 "//build/win:default_exe_manifest", |
49 ] | 50 ] |
50 } | 51 } |
51 | 52 |
52 executable("rgba_to_i420_converter") { | 53 executable("rgba_to_i420_converter") { |
53 sources = [ | 54 sources = [ |
54 "converter/converter.cc", | 55 "converter/converter.cc", |
55 "converter/converter.h", | 56 "converter/converter.h", |
56 "converter/rgba_to_i420_converter.cc", | 57 "converter/rgba_to_i420_converter.cc", |
57 ] | 58 ] |
58 deps = [ | 59 deps = [ |
59 ":command_line_parser", | 60 ":command_line_parser", |
60 "../common_video", | 61 "../common_video", |
| 62 "//build/win:default_exe_manifest", |
61 ] | 63 ] |
62 } | 64 } |
63 | 65 |
64 # TODO(kjellander): Convert all of tools.gyp into GN here. | 66 # TODO(kjellander): Convert all of tools.gyp into GN here. |
65 | 67 |
66 if (!build_with_chromium) { | 68 if (!build_with_chromium) { |
67 executable("tools_unittests") { | 69 executable("tools_unittests") { |
68 testonly = true | 70 testonly = true |
69 | 71 |
70 sources = [ | 72 sources = [ |
71 "simple_command_line_parser_unittest.cc", | 73 "simple_command_line_parser_unittest.cc", |
72 ] | 74 ] |
73 | 75 |
74 configs += [ "..:common_config" ] | 76 configs += [ "..:common_config" ] |
75 public_configs = [ "..:common_inherited_config" ] | 77 public_configs = [ "..:common_inherited_config" ] |
76 | 78 |
77 deps = [ | 79 deps = [ |
78 ":command_line_parser", | 80 ":command_line_parser", |
79 "../test:test_support_main", | 81 "../test:test_support_main", |
| 82 "//build/win:default_exe_manifest", |
80 "//testing/gtest", | 83 "//testing/gtest", |
81 ] | 84 ] |
82 } | 85 } |
83 } | 86 } |
OLD | NEW |