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/config/arm.gni") | 9 import("//build/config/arm.gni") |
10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
435 proto_out_dir = "webrtc/modules/audio_processing" | 435 proto_out_dir = "webrtc/modules/audio_processing" |
436 } | 436 } |
437 | 437 |
438 source_set("audioproc_protobuf_utils") { | 438 source_set("audioproc_protobuf_utils") { |
439 sources = [ | 439 sources = [ |
440 "test/protobuf_utils.cc", | 440 "test/protobuf_utils.cc", |
441 "test/protobuf_utils.h", | 441 "test/protobuf_utils.h", |
442 ] | 442 ] |
443 | 443 |
444 deps = [ | 444 deps = [ |
445 ":audioproc_debug_proto", | |
ehmaldonado_webrtc
2016/08/17 11:32:17
For the protobuf error I told you about.
kjellander_webrtc
2016/08/17 12:19:22
Ah, this was an error. Since the GYP target only d
ehmaldonado_webrtc
2016/08/19 08:16:06
Done.
| |
445 ":audioproc_unittest_proto", | 446 ":audioproc_unittest_proto", |
446 ] | 447 ] |
447 } | 448 } |
448 } | 449 } |
449 } | 450 } |
OLD | NEW |