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

Side by Side Diff: trunk/src/net/net.gyp

Issue 270503004: Revert 268650 "Reduce footprint of registry controlled domain table" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
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 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 27 matching lines...) Expand all
38 'enable_built_in_dns%': 1, 38 'enable_built_in_dns%': 1,
39 }], 39 }],
40 ], 40 ],
41 }, 41 },
42 'includes': [ 42 'includes': [
43 '../build/win_precompile.gypi', 43 '../build/win_precompile.gypi',
44 'net.gypi', 44 'net.gypi',
45 ], 45 ],
46 'targets': [ 46 'targets': [
47 { 47 {
48 'target_name': 'net_derived_sources',
49 'type': 'none',
50 'sources': [
51 'base/registry_controlled_domains/effective_tld_names.gperf',
52 'base/registry_controlled_domains/effective_tld_names_unittest1.gperf',
53 'base/registry_controlled_domains/effective_tld_names_unittest2.gperf',
54 'base/registry_controlled_domains/effective_tld_names_unittest3.gperf',
55 'base/registry_controlled_domains/effective_tld_names_unittest4.gperf',
56 'base/registry_controlled_domains/effective_tld_names_unittest5.gperf',
57 'base/registry_controlled_domains/effective_tld_names_unittest6.gperf',
58 ],
59 'rules': [
60 {
61 'rule_name': 'dafsa',
62 'extension': 'gperf',
63 'outputs': [
64 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_ROOT)-inc.cc',
65 ],
66 'inputs': [
67 'tools/tld_cleanup/make_dafsa.py',
68 ],
69 'action': [
70 'python',
71 'tools/tld_cleanup/make_dafsa.py',
72 '<(RULE_INPUT_PATH)',
73 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_ROOT)-inc.cc',
74 ],
75 },
76 ],
77 },
78 {
79 'target_name': 'net', 48 'target_name': 'net',
80 'type': '<(component)', 49 'type': '<(component)',
81 'variables': { 'enable_wexit_time_destructors': 1, }, 50 'variables': { 'enable_wexit_time_destructors': 1, },
82 'dependencies': [ 51 'dependencies': [
83 '../base/base.gyp:base', 52 '../base/base.gyp:base',
84 '../base/base.gyp:base_i18n', 53 '../base/base.gyp:base_i18n',
85 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 54 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
86 '../crypto/crypto.gyp:crypto', 55 '../crypto/crypto.gyp:crypto',
87 '../sdch/sdch.gyp:sdch', 56 '../sdch/sdch.gyp:sdch',
88 '../third_party/icu/icu.gyp:icui18n', 57 '../third_party/icu/icu.gyp:icui18n',
89 '../third_party/icu/icu.gyp:icuuc', 58 '../third_party/icu/icu.gyp:icuuc',
90 '../third_party/zlib/zlib.gyp:zlib', 59 '../third_party/zlib/zlib.gyp:zlib',
91 '../url/url.gyp:url_lib', 60 '../url/url.gyp:url_lib',
92 'net_resources', 61 'net_resources',
93 'net_derived_sources',
94 ],
95 'include_dirs': [
96 '<(SHARED_INTERMEDIATE_DIR)/net',
97 ], 62 ],
98 'sources': [ 63 'sources': [
99 '<@(net_nacl_common_sources)', 64 '<@(net_nacl_common_sources)',
100 '<@(net_non_nacl_sources)', 65 '<@(net_non_nacl_sources)',
101 ], 66 ],
102 'defines': [ 67 'defines': [
103 'NET_IMPLEMENTATION', 68 'NET_IMPLEMENTATION',
104 ], 69 ],
105 'export_dependent_settings': [ 70 'export_dependent_settings': [
106 '../base/base.gyp:base', 71 '../base/base.gyp:base',
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 466 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
502 '../crypto/crypto.gyp:crypto', 467 '../crypto/crypto.gyp:crypto',
503 '../testing/gmock.gyp:gmock', 468 '../testing/gmock.gyp:gmock',
504 '../testing/gtest.gyp:gtest', 469 '../testing/gtest.gyp:gtest',
505 '../third_party/zlib/zlib.gyp:zlib', 470 '../third_party/zlib/zlib.gyp:zlib',
506 '../url/url.gyp:url_lib', 471 '../url/url.gyp:url_lib',
507 'http_server', 472 'http_server',
508 'net', 473 'net',
509 'net_test_support' 474 'net_test_support'
510 ], 475 ],
511 'include_dirs': [
512 '<(SHARED_INTERMEDIATE_DIR)/net',
513 ],
514 'sources': [ 476 'sources': [
515 '<@(net_test_sources)', 477 '<@(net_test_sources)',
516 ], 478 ],
517 'conditions': [ 479 'conditions': [
518 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 480 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
519 'dependencies': [ 481 'dependencies': [
520 'balsa', 482 'balsa',
521 'epoll_server', 483 'epoll_server',
522 'flip_in_mem_edsm_server_base', 484 'flip_in_mem_edsm_server_base',
523 'quic_base', 485 'quic_base',
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1611 'net_unittests.isolate', 1573 'net_unittests.isolate',
1612 ], 1574 ],
1613 'sources': [ 1575 'sources': [
1614 'net_unittests.isolate', 1576 'net_unittests.isolate',
1615 ], 1577 ],
1616 }, 1578 },
1617 ], 1579 ],
1618 }], 1580 }],
1619 ], 1581 ],
1620 } 1582 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698