| 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 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 'renderer/media/crypto/ppapi_decryptor.h', | 687 'renderer/media/crypto/ppapi_decryptor.h', |
| 688 ], | 688 ], |
| 689 }], | 689 }], |
| 690 ['enable_gpu!=1', { | 690 ['enable_gpu!=1', { |
| 691 'sources!': [ | 691 'sources!': [ |
| 692 'renderer/pepper/ppb_graphics_3d_impl.cc', | 692 'renderer/pepper/ppb_graphics_3d_impl.cc', |
| 693 'renderer/pepper/ppb_graphics_3d_impl.h', | 693 'renderer/pepper/ppb_graphics_3d_impl.h', |
| 694 'renderer/pepper/ppb_open_gl_es_impl.cc', | 694 'renderer/pepper/ppb_open_gl_es_impl.cc', |
| 695 ], | 695 ], |
| 696 }], | 696 }], |
| 697 # TODO(bryaneyler): Add OpenSSL implementation. Issue 267888. |
| 698 ['use_nss==1', { |
| 699 'sources': [ |
| 700 'renderer/webcrypto_digest_nss.cc', |
| 701 ], |
| 702 }], |
| 697 ], | 703 ], |
| 698 'target_conditions': [ | 704 'target_conditions': [ |
| 699 ['OS=="android"', { | 705 ['OS=="android"', { |
| 700 'sources/': [ | 706 'sources/': [ |
| 701 ['include', '^renderer/render_view_linux\\.cc$'], | 707 ['include', '^renderer/render_view_linux\\.cc$'], |
| 702 ], | 708 ], |
| 703 }], | 709 }], |
| 704 ], | 710 ], |
| 705 } | 711 } |
| OLD | NEW |