| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'dependencies': [ | 6 'dependencies': [ |
| 7 '../jingle/jingle.gyp:jingle_glue', | 7 '../jingle/jingle.gyp:jingle_glue', |
| 8 '../media/media.gyp:media', | 8 '../media/media.gyp:media', |
| 9 '../net/net.gyp:net', | 9 '../net/net.gyp:net', |
| 10 '../skia/skia.gyp:skia', | 10 '../skia/skia.gyp:skia', |
| (...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 'renderer/media/crypto/ppapi_decryptor.h', | 690 'renderer/media/crypto/ppapi_decryptor.h', |
| 691 ], | 691 ], |
| 692 }], | 692 }], |
| 693 ['enable_gpu!=1', { | 693 ['enable_gpu!=1', { |
| 694 'sources!': [ | 694 'sources!': [ |
| 695 'renderer/pepper/ppb_graphics_3d_impl.cc', | 695 'renderer/pepper/ppb_graphics_3d_impl.cc', |
| 696 'renderer/pepper/ppb_graphics_3d_impl.h', | 696 'renderer/pepper/ppb_graphics_3d_impl.h', |
| 697 'renderer/pepper/ppb_open_gl_es_impl.cc', | 697 'renderer/pepper/ppb_open_gl_es_impl.cc', |
| 698 ], | 698 ], |
| 699 }], | 699 }], |
| 700 # TODO(bryaneyler): Add OpenSSL implementation. |
| 701 ['use_nss==1', { |
| 702 'sources': [ |
| 703 'renderer/webcrypto_digest_nss.cc', |
| 704 ], |
| 705 }], |
| 700 ], | 706 ], |
| 701 'target_conditions': [ | 707 'target_conditions': [ |
| 702 ['OS=="android"', { | 708 ['OS=="android"', { |
| 703 'sources/': [ | 709 'sources/': [ |
| 704 ['include', '^renderer/render_view_linux\\.cc$'], | 710 ['include', '^renderer/render_view_linux\\.cc$'], |
| 705 ], | 711 ], |
| 706 }], | 712 }], |
| 707 ], | 713 ], |
| 708 } | 714 } |
| OLD | NEW |