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

Side by Side Diff: net/net.gyp

Issue 274443003: Reduce footprint of registry controlled domain table (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 {
48 'target_name': 'net', 79 'target_name': 'net',
49 'type': '<(component)', 80 'type': '<(component)',
50 'variables': { 'enable_wexit_time_destructors': 1, }, 81 'variables': { 'enable_wexit_time_destructors': 1, },
51 'dependencies': [ 82 'dependencies': [
52 '../base/base.gyp:base', 83 '../base/base.gyp:base',
53 '../base/base.gyp:base_i18n', 84 '../base/base.gyp:base_i18n',
54 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 85 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
55 '../crypto/crypto.gyp:crypto', 86 '../crypto/crypto.gyp:crypto',
56 '../sdch/sdch.gyp:sdch', 87 '../sdch/sdch.gyp:sdch',
57 '../third_party/icu/icu.gyp:icui18n', 88 '../third_party/icu/icu.gyp:icui18n',
58 '../third_party/icu/icu.gyp:icuuc', 89 '../third_party/icu/icu.gyp:icuuc',
59 '../third_party/zlib/zlib.gyp:zlib', 90 '../third_party/zlib/zlib.gyp:zlib',
60 '../url/url.gyp:url_lib', 91 '../url/url.gyp:url_lib',
61 'net_resources', 92 'net_resources',
93 'net_derived_sources',
94 ],
95 'include_dirs': [
96 '<(SHARED_INTERMEDIATE_DIR)/net',
62 ], 97 ],
63 'sources': [ 98 'sources': [
64 '<@(net_nacl_common_sources)', 99 '<@(net_nacl_common_sources)',
65 '<@(net_non_nacl_sources)', 100 '<@(net_non_nacl_sources)',
66 ], 101 ],
67 'defines': [ 102 'defines': [
68 'NET_IMPLEMENTATION', 103 'NET_IMPLEMENTATION',
69 ], 104 ],
70 'export_dependent_settings': [ 105 'export_dependent_settings': [
71 '../base/base.gyp:base', 106 '../base/base.gyp:base',
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 501 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
467 '../crypto/crypto.gyp:crypto', 502 '../crypto/crypto.gyp:crypto',
468 '../testing/gmock.gyp:gmock', 503 '../testing/gmock.gyp:gmock',
469 '../testing/gtest.gyp:gtest', 504 '../testing/gtest.gyp:gtest',
470 '../third_party/zlib/zlib.gyp:zlib', 505 '../third_party/zlib/zlib.gyp:zlib',
471 '../url/url.gyp:url_lib', 506 '../url/url.gyp:url_lib',
472 'http_server', 507 'http_server',
473 'net', 508 'net',
474 'net_test_support' 509 'net_test_support'
475 ], 510 ],
511 'include_dirs': [
512 '<(SHARED_INTERMEDIATE_DIR)/net',
513 ],
476 'sources': [ 514 'sources': [
477 '<@(net_test_sources)', 515 '<@(net_test_sources)',
478 ], 516 ],
479 'conditions': [ 517 'conditions': [
480 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 518 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
481 'dependencies': [ 519 'dependencies': [
482 'balsa', 520 'balsa',
483 'epoll_server', 521 'epoll_server',
484 'flip_in_mem_edsm_server_base', 522 'flip_in_mem_edsm_server_base',
485 'quic_base', 523 'quic_base',
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1573 'net_unittests.isolate', 1611 'net_unittests.isolate',
1574 ], 1612 ],
1575 'sources': [ 1613 'sources': [
1576 'net_unittests.isolate', 1614 'net_unittests.isolate',
1577 ], 1615 ],
1578 }, 1616 },
1579 ], 1617 ],
1580 }], 1618 }],
1581 ], 1619 ],
1582 } 1620 }
OLDNEW
« no previous file with comments | « net/base/registry_controlled_domains/registry_controlled_domain_unittest.cc ('k') | net/tools/tld_cleanup/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698