Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(758)

Side by Side Diff: extensions/extensions.gyp

Issue 423403002: Implement more of chrome.serial on the Mojo SerialConnection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@js-serial
Patch Set: add missing semicolons Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 # unit_tests target. They should be moved here, which may require some 788 # unit_tests target. They should be moved here, which may require some
789 # refactoring (ExtensionsBrowserClient, TestingProfile, etc.). 789 # refactoring (ExtensionsBrowserClient, TestingProfile, etc.).
790 # http://crbug.com/348066 790 # http://crbug.com/348066
791 'target_name': 'extensions_unittests', 791 'target_name': 'extensions_unittests',
792 'type': 'executable', 792 'type': 'executable',
793 'dependencies': [ 793 'dependencies': [
794 '../base/base.gyp:base', 794 '../base/base.gyp:base',
795 '../base/base.gyp:test_support_base', 795 '../base/base.gyp:test_support_base',
796 '../content/content_shell_and_tests.gyp:test_support_content', 796 '../content/content_shell_and_tests.gyp:test_support_content',
797 '../device/serial/serial.gyp:device_serial', 797 '../device/serial/serial.gyp:device_serial',
798 '../device/serial/serial.gyp:device_serial_test_util',
798 '../mojo/mojo_base.gyp:mojo_environment_chromium', 799 '../mojo/mojo_base.gyp:mojo_environment_chromium',
799 '../mojo/mojo_base.gyp:mojo_cpp_bindings', 800 '../mojo/mojo_base.gyp:mojo_cpp_bindings',
800 '../mojo/mojo_base.gyp:mojo_js_bindings_lib', 801 '../mojo/mojo_base.gyp:mojo_js_bindings_lib',
801 '../mojo/mojo_base.gyp:mojo_system_impl', 802 '../mojo/mojo_base.gyp:mojo_system_impl',
802 '../testing/gmock.gyp:gmock', 803 '../testing/gmock.gyp:gmock',
803 '../testing/gtest.gyp:gtest', 804 '../testing/gtest.gyp:gtest',
804 'extensions_common', 805 'extensions_common',
805 'extensions_renderer', 806 'extensions_renderer',
806 'extensions_resources.gyp:extensions_resources', 807 'extensions_resources.gyp:extensions_resources',
807 'extensions_shell_and_test_pak', 808 'extensions_shell_and_test_pak',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 'type': 'static_library', 853 'type': 'static_library',
853 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], 854 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ],
854 'variables': { 855 'variables': {
855 'proto_in_dir': 'browser/api/cast_channel', 856 'proto_in_dir': 'browser/api/cast_channel',
856 'proto_out_dir': 'extensions/browser/api/cast_channel', 857 'proto_out_dir': 'extensions/browser/api/cast_channel',
857 }, 858 },
858 'includes': [ '../build/protoc.gypi' ] 859 'includes': [ '../build/protoc.gypi' ]
859 }, 860 },
860 ] 861 ]
861 } 862 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698