| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 ] | 606 ] |
| 607 }], | 607 }], |
| 608 # TODO(jrg): remove the OS=="android" section? | 608 # TODO(jrg): remove the OS=="android" section? |
| 609 # http://crbug.com/113172 | 609 # http://crbug.com/113172 |
| 610 # Understand better how media_stream_ is tied into Chromium. | 610 # Understand better how media_stream_ is tied into Chromium. |
| 611 ['enable_webrtc==0 and OS=="android"', { | 611 ['enable_webrtc==0 and OS=="android"', { |
| 612 'sources/': [ | 612 'sources/': [ |
| 613 ['exclude', '^renderer/media/media_stream_'], | 613 ['exclude', '^renderer/media/media_stream_'], |
| 614 ], | 614 ], |
| 615 }], | 615 }], |
| 616 ['java_bridge==1', { |
| 617 'defines': [ |
| 618 'ENABLE_JAVA_BRIDGE', |
| 619 ], |
| 620 }, { |
| 621 'sources/': [ |
| 622 ['exclude', '^browser/renderer_host/java/'], |
| 623 ], |
| 624 }], |
| 616 ['input_speech==0', { | 625 ['input_speech==0', { |
| 617 'sources/': [ | 626 'sources/': [ |
| 618 ['exclude', '^browser/speech/'], | 627 ['exclude', '^browser/speech/'], |
| 619 ] | 628 ] |
| 620 }], | 629 }], |
| 621 ['notifications==0', { | 630 ['notifications==0', { |
| 622 'sources!': [ | 631 'sources!': [ |
| 623 'renderer/active_notification_tracker_unittest.cc', | 632 'renderer/active_notification_tracker_unittest.cc', |
| 624 ], | 633 ], |
| 625 }], | 634 }], |
| (...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 'resource_dir': 'shell/android/shell_apk/res', | 1186 'resource_dir': 'shell/android/shell_apk/res', |
| 1178 'additional_src_dirs': ['public/android/javatests/',], | 1187 'additional_src_dirs': ['public/android/javatests/',], |
| 1179 'is_test_apk': 1, | 1188 'is_test_apk': 1, |
| 1180 }, | 1189 }, |
| 1181 'includes': [ '../build/java_apk.gypi' ], | 1190 'includes': [ '../build/java_apk.gypi' ], |
| 1182 }, | 1191 }, |
| 1183 ], | 1192 ], |
| 1184 }], | 1193 }], |
| 1185 ], | 1194 ], |
| 1186 } | 1195 } |
| OLD | NEW |