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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 'base64.cc', | 213 'base64.cc', |
214 'base64.h', | 214 'base64.h', |
215 'common.cc', | 215 'common.cc', |
216 'common.h', | 216 'common.h', |
217 'crc32.cc', | 217 'crc32.cc', |
218 'crc32.h', | 218 'crc32.h', |
219 'cryptstring.cc', | 219 'cryptstring.cc', |
220 'cryptstring.h', | 220 'cryptstring.h', |
221 'diskcache.cc', | 221 'diskcache.cc', |
222 'diskcache.h', | 222 'diskcache.h', |
| 223 'file.cc', |
| 224 'file.h', |
223 'filerotatingstream.cc', | 225 'filerotatingstream.cc', |
224 'filerotatingstream.h', | 226 'filerotatingstream.h', |
225 'fileutils.cc', | 227 'fileutils.cc', |
226 'fileutils.h', | 228 'fileutils.h', |
227 'firewallsocketserver.cc', | 229 'firewallsocketserver.cc', |
228 'firewallsocketserver.h', | 230 'firewallsocketserver.h', |
229 'flags.cc', | 231 'flags.cc', |
230 'flags.h', | 232 'flags.h', |
231 'format_macros.h', | 233 'format_macros.h', |
232 'gunit_prod.h', | 234 'gunit_prod.h', |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 'dbus.cc', | 440 'dbus.cc', |
439 'dbus.h', | 441 'dbus.h', |
440 'libdbusglibsymboltable.cc', | 442 'libdbusglibsymboltable.cc', |
441 'libdbusglibsymboltable.h', | 443 'libdbusglibsymboltable.h', |
442 'linuxfdwalk.c', | 444 'linuxfdwalk.c', |
443 'linuxfdwalk.h', | 445 'linuxfdwalk.h', |
444 ], | 446 ], |
445 }], | 447 }], |
446 ['os_posix==1', { | 448 ['os_posix==1', { |
447 'sources': [ | 449 'sources': [ |
| 450 'file_posix.cc', |
448 'latebindingsymboltable.cc', | 451 'latebindingsymboltable.cc', |
449 'latebindingsymboltable.h', | 452 'latebindingsymboltable.h', |
450 'posix.cc', | 453 'posix.cc', |
451 'posix.h', | 454 'posix.h', |
452 ], | 455 ], |
453 }], | 456 }], |
454 ['OS=="mac"', { | 457 ['OS=="mac"', { |
455 'sources': [ | 458 'sources': [ |
456 'macasyncsocket.cc', | 459 'macasyncsocket.cc', |
457 'macasyncsocket.h', | 460 'macasyncsocket.h', |
458 'maccocoasocketserver.h', | 461 'maccocoasocketserver.h', |
459 'maccocoasocketserver.mm', | 462 'maccocoasocketserver.mm', |
460 'macsocketserver.cc', | 463 'macsocketserver.cc', |
461 'macsocketserver.h', | 464 'macsocketserver.h', |
462 'macwindowpicker.cc', | 465 'macwindowpicker.cc', |
463 'macwindowpicker.h', | 466 'macwindowpicker.h', |
464 ], | 467 ], |
465 }], | 468 }], |
466 ['OS=="win"', { | 469 ['OS=="win"', { |
467 'sources': [ | 470 'sources': [ |
468 'diskcache_win32.cc', | 471 'diskcache_win32.cc', |
469 'diskcache_win32.h', | 472 'diskcache_win32.h', |
| 473 'file_win.cc', |
470 'win32regkey.cc', | 474 'win32regkey.cc', |
471 'win32regkey.h', | 475 'win32regkey.h', |
472 'win32socketinit.cc', | 476 'win32socketinit.cc', |
473 'win32socketinit.h', | 477 'win32socketinit.h', |
474 'win32socketserver.cc', | 478 'win32socketserver.cc', |
475 'win32socketserver.h', | 479 'win32socketserver.h', |
476 ], | 480 ], |
477 }], | 481 }], |
478 ['OS=="win" and clang==1', { | 482 ['OS=="win" and clang==1', { |
479 'msvs_settings': { | 483 'msvs_settings': { |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 }, | 656 }, |
653 { | 657 { |
654 'target_name': 'gtest_prod', | 658 'target_name': 'gtest_prod', |
655 'type': 'static_library', | 659 'type': 'static_library', |
656 'sources': [ | 660 'sources': [ |
657 'gtest_prod_util.h', | 661 'gtest_prod_util.h', |
658 ], | 662 ], |
659 }, | 663 }, |
660 ], | 664 ], |
661 } | 665 } |
OLD | NEW |