| 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/crypto.gni") | 9 import("//build/config/crypto.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 "transformadapter.h", | 556 "transformadapter.h", |
| 557 "virtualsocketserver.cc", | 557 "virtualsocketserver.cc", |
| 558 "virtualsocketserver.h", | 558 "virtualsocketserver.h", |
| 559 "window.h", | 559 "window.h", |
| 560 ] | 560 ] |
| 561 | 561 |
| 562 if (is_win) { | 562 if (is_win) { |
| 563 sources += [ | 563 sources += [ |
| 564 "diskcache_win32.cc", | 564 "diskcache_win32.cc", |
| 565 "diskcache_win32.h", | 565 "diskcache_win32.h", |
| 566 "win32regkey.cc", | |
| 567 "win32regkey.h", | |
| 568 "win32socketinit.cc", | 566 "win32socketinit.cc", |
| 569 "win32socketinit.h", | 567 "win32socketinit.h", |
| 570 "win32socketserver.cc", | 568 "win32socketserver.cc", |
| 571 "win32socketserver.h", | 569 "win32socketserver.h", |
| 572 ] | 570 ] |
| 573 } | 571 } |
| 574 | 572 |
| 575 if (rtc_build_json) { | 573 if (rtc_build_json) { |
| 576 deps += [ "//third_party/jsoncpp" ] | 574 deps += [ "//third_party/jsoncpp" ] |
| 577 } else { | 575 } else { |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 | 764 |
| 767 deps = [ | 765 deps = [ |
| 768 "//base:base_java", | 766 "//base:base_java", |
| 769 ] | 767 ] |
| 770 | 768 |
| 771 data = [ | 769 data = [ |
| 772 "//webrtc/build/android/test_runner.py", | 770 "//webrtc/build/android/test_runner.py", |
| 773 ] | 771 ] |
| 774 } | 772 } |
| 775 } | 773 } |
| OLD | NEW |