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

Side by Side Diff: net/net.gyp

Issue 2063683002: Migrate components/data_reduction_proxy to Mojo interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and move AddService call into RegisterRenderProcessMojoServices() Created 4 years, 6 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 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 'conditions': [ 9 'conditions': [
10 ['chromeos==1 or embedded==1 or OS=="ios"', { 10 ['chromeos==1 or embedded==1 or OS=="ios"', {
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 'dependencies': [ 863 'dependencies': [
864 '../base/base.gyp:base', 864 '../base/base.gyp:base',
865 'net', 865 'net',
866 'net_derived_sources', 866 'net_derived_sources',
867 ], 867 ],
868 'sources': [ 868 'sources': [
869 'base/stale_while_revalidate_experiment_domains.cc', 869 'base/stale_while_revalidate_experiment_domains.cc',
870 'base/stale_while_revalidate_experiment_domains.h', 870 'base/stale_while_revalidate_experiment_domains.h',
871 ], 871 ],
872 }, 872 },
873 {
874 # GN version: //net/base/mojo:interfaces
875 'target_name': 'net_base_mojo_bindings',
876 'type': 'static_library',
877 'sources': [
878 'base/mojo/net_base.mojom',
879 ],
880 'dependencies': [
881 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
882 'net',
883 ],
884 'export_dependent_settings': [
885 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
886 ],
887 'variables': {
888 'mojom_typemaps': [
889 'base/mojo/net_base.typemap',
890 ],
891 },
892 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
893 },
873 ], 894 ],
874 'conditions': [ 895 'conditions': [
875 ['use_v8_in_net == 1', { 896 ['use_v8_in_net == 1', {
876 'targets': [ 897 'targets': [
877 { 898 {
878 'target_name': 'net_with_v8', 899 'target_name': 'net_with_v8',
879 'type': '<(component)', 900 'type': '<(component)',
880 'variables': { 'enable_wexit_time_destructors': 1, }, 901 'variables': { 'enable_wexit_time_destructors': 1, },
881 'dependencies': [ 902 'dependencies': [
882 '../base/base.gyp:base', 903 '../base/base.gyp:base',
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
1762 '../build/isolate.gypi', 1783 '../build/isolate.gypi',
1763 ], 1784 ],
1764 'sources': [ 1785 'sources': [
1765 'net_unittests.isolate', 1786 'net_unittests.isolate',
1766 ], 1787 ],
1767 }, 1788 },
1768 ], 1789 ],
1769 }], 1790 }],
1770 ], 1791 ],
1771 } 1792 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698