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

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: Fix trybots failure 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 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 'dependencies': [ 868 'dependencies': [
869 '../base/base.gyp:base', 869 '../base/base.gyp:base',
870 'net', 870 'net',
871 'net_derived_sources', 871 'net_derived_sources',
872 ], 872 ],
873 'sources': [ 873 'sources': [
874 'base/stale_while_revalidate_experiment_domains.cc', 874 'base/stale_while_revalidate_experiment_domains.cc',
875 'base/stale_while_revalidate_experiment_domains.h', 875 'base/stale_while_revalidate_experiment_domains.h',
876 ], 876 ],
877 }, 877 },
878 {
879 # GN version: //net/base/mojo:interfaces
880 'target_name': 'net_base_mojo_bindings',
881 'type': 'static_library',
882 'sources': [
883 'base/mojo/net_base.mojom',
884 ],
885 'dependencies': [
886 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
887 'net',
888 ],
889 'export_dependent_settings': [
890 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
891 ],
892 'variables': {
893 'mojom_typemaps': [
894 'base/mojo/net_base.typemap',
895 ],
896 },
897 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
898 },
878 ], 899 ],
879 'conditions': [ 900 'conditions': [
880 ['use_v8_in_net == 1', { 901 ['use_v8_in_net == 1', {
881 'targets': [ 902 'targets': [
882 { 903 {
883 'target_name': 'net_with_v8', 904 'target_name': 'net_with_v8',
884 'type': '<(component)', 905 'type': '<(component)',
885 'variables': { 'enable_wexit_time_destructors': 1, }, 906 'variables': { 'enable_wexit_time_destructors': 1, },
886 'dependencies': [ 907 'dependencies': [
887 '../base/base.gyp:base', 908 '../base/base.gyp:base',
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
1773 '../build/isolate.gypi', 1794 '../build/isolate.gypi',
1774 ], 1795 ],
1775 'sources': [ 1796 'sources': [
1776 'net_unittests.isolate', 1797 'net_unittests.isolate',
1777 ], 1798 ],
1778 }, 1799 },
1779 ], 1800 ],
1780 }], 1801 }],
1781 ], 1802 ],
1782 } 1803 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698