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 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 'thread_annotations.h', | 78 'thread_annotations.h', |
79 'thread_checker.h', | 79 'thread_checker.h', |
80 'thread_checker_impl.cc', | 80 'thread_checker_impl.cc', |
81 'thread_checker_impl.h', | 81 'thread_checker_impl.h', |
82 'timeutils.cc', | 82 'timeutils.cc', |
83 'timeutils.h', | 83 'timeutils.h', |
84 'trace_event.h', | 84 'trace_event.h', |
85 ], | 85 ], |
86 'conditions': [ | 86 'conditions': [ |
87 ['build_with_chromium==1', { | 87 ['build_with_chromium==1', { |
| 88 'dependencies': [ |
| 89 '<(DEPTH)/base/base.gyp:base', |
| 90 ], |
88 'include_dirs': [ | 91 'include_dirs': [ |
89 '../../webrtc_overrides', | 92 '../../webrtc_overrides', |
90 ], | 93 ], |
| 94 'sources': [ |
| 95 '../../webrtc_overrides/webrtc/base/logging.cc', |
| 96 '../../webrtc_overrides/webrtc/base/logging.h', |
| 97 ], |
91 'sources!': [ | 98 'sources!': [ |
92 'logging.cc', | 99 'logging.cc', |
93 'logging.h', | 100 'logging.h', |
94 ], | 101 ], |
95 }], | 102 }], |
96 ], | 103 ], |
97 }, | 104 }, |
98 { | 105 { |
99 'target_name': 'rtc_base', | 106 'target_name': 'rtc_base', |
100 'type': 'static_library', | 107 'type': 'static_library', |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 '../../third_party/jsoncpp/overrides/include', | 380 '../../third_party/jsoncpp/overrides/include', |
374 '../../third_party/jsoncpp/source/include', | 381 '../../third_party/jsoncpp/source/include', |
375 ], | 382 ], |
376 'conditions': [ | 383 'conditions': [ |
377 ['build_with_chromium==1', { | 384 ['build_with_chromium==1', { |
378 'include_dirs': [ | 385 'include_dirs': [ |
379 '../../webrtc_overrides', | 386 '../../webrtc_overrides', |
380 '../../boringssl/src/include', | 387 '../../boringssl/src/include', |
381 ], | 388 ], |
382 'sources': [ | 389 'sources': [ |
383 '../../webrtc_overrides/webrtc/base/logging.cc', | |
384 '../../webrtc_overrides/webrtc/base/logging.h', | |
385 '../../webrtc_overrides/webrtc/base/win32socketinit.cc', | 390 '../../webrtc_overrides/webrtc/base/win32socketinit.cc', |
386 ], | 391 ], |
387 'sources!': [ | 392 'sources!': [ |
388 'atomicops.h', | 393 'atomicops.h', |
389 'bandwidthsmoother.cc', | 394 'bandwidthsmoother.cc', |
390 'bandwidthsmoother.h', | 395 'bandwidthsmoother.h', |
391 'bind.h', | 396 'bind.h', |
392 'callback.h', | 397 'callback.h', |
393 'constructormagic.h', | 398 'constructormagic.h', |
394 'dbus.cc', | 399 'dbus.cc', |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 ], | 673 ], |
669 }, { | 674 }, { |
670 'include_dirs': [ | 675 'include_dirs': [ |
671 '<(ssl_root)', | 676 '<(ssl_root)', |
672 ], | 677 ], |
673 }], | 678 }], |
674 ], | 679 ], |
675 }, | 680 }, |
676 ], | 681 ], |
677 } | 682 } |
OLD | NEW |