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

Side by Side Diff: webrtc/test/BUILD.gn

Issue 2054903002: GN: Enable api,media,pc and p2p for the 'webrtc' target. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.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 | « webrtc/modules/utility/BUILD.gn ('k') | 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) 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/ui.gni") 9 import("//build/config/ui.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 if (is_clang && !is_nacl) { 379 if (is_clang && !is_nacl) {
380 # Suppress warnings from the Chromium Clang plugin. 380 # Suppress warnings from the Chromium Clang plugin.
381 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 381 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
382 configs -= [ "//build/config/clang:find_bad_constructs" ] 382 configs -= [ "//build/config/clang:find_bad_constructs" ]
383 } 383 }
384 384
385 deps = [ 385 deps = [
386 ":rtp_test_utils", 386 ":rtp_test_utils",
387 ":test_support", 387 ":test_support",
388 ":video_test_common", 388 ":video_test_common",
389 "..:webrtc",
390 "..:webrtc_common", 389 "..:webrtc_common",
390 "../audio",
391 "../base:rtc_base_approved", 391 "../base:rtc_base_approved",
392 "../call",
392 "../modules/media_file", 393 "../modules/media_file",
394 "../video",
393 "//testing/gmock", 395 "//testing/gmock",
394 "//testing/gtest", 396 "//testing/gtest",
395 "//third_party/gflags", 397 "//third_party/gflags",
396 ] 398 ]
397 } 399 }
398 400
399 config("test_renderer_exported_config") { 401 config("test_renderer_exported_config") {
400 if (is_win && is_clang) { 402 if (is_win && is_clang) {
401 # GN orders flags on a target before flags from configs. The default config 403 # GN orders flags on a target before flags from configs. The default config
402 # adds -Wall, and this flag have to be after -Wall -- so they need to 404 # adds -Wall, and this flag have to be after -Wall -- so they need to
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 configs -= [ "//build/config/clang:find_bad_constructs" ] 468 configs -= [ "//build/config/clang:find_bad_constructs" ]
467 } 469 }
468 470
469 deps = [ 471 deps = [
470 ":test_support", 472 ":test_support",
471 ":video_test_common", 473 ":video_test_common",
472 "../modules/media_file", 474 "../modules/media_file",
473 "//testing/gtest", 475 "//testing/gtest",
474 ] 476 ]
475 } 477 }
OLDNEW
« no previous file with comments | « webrtc/modules/utility/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698