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

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

Issue 1467173006: Create webrtc/base/objc and move some logging code there (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add ARC flag Created 5 years 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
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/crypto.gni") 9 import("//build/config/crypto.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 "linux.cc", 598 "linux.cc",
599 "linux.h", 599 "linux.h",
600 ] 600 ]
601 } 601 }
602 602
603 if (is_nacl) { 603 if (is_nacl) {
604 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] 604 deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
605 defines += [ "timezone=_timezone" ] 605 defines += [ "timezone=_timezone" ]
606 } 606 }
607 } 607 }
608
609 if (is_ios) {
610 static_library("rtc_base_objc") {
kjellander_webrtc 2015/11/26 08:36:16 I believe GN prefers source_set unless static_libr
611 deps = [
612 ":rtc_base",
613 ]
614 cflags = [ "-fobjc-arc" ]
615 configs += [ "..:common_config" ]
616 public_configs = [ "..:common_inherited_config" ]
617
618 sources = [
619 "objc/RTCLogging.h",
620 "objc/RTCLogging.mm",
621 ]
622 }
623 }
OLDNEW
« no previous file with comments | « PRESUBMIT.py ('k') | webrtc/base/base.gyp » ('j') | webrtc/base/base.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698