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

Side by Side Diff: net/net.gyp

Issue 270363003: Reduce footprint of registry controlled domain table (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review feedback 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_DIRNAME)/<(RULE_INPUT_R OOT)-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_DIRNAME)/<(RULE_INPUT_R OOT)-inc.cc',
74 ],
75 },
76 ],
77 'direct_dependent_settings': {
78 'include_dirs': [
79 '<(SHARED_INTERMEDIATE_DIR)'
80 ],
81 },
82 },
83 {
48 'target_name': 'net', 84 'target_name': 'net',
49 'type': '<(component)', 85 'type': '<(component)',
50 'variables': { 'enable_wexit_time_destructors': 1, }, 86 'variables': { 'enable_wexit_time_destructors': 1, },
51 'dependencies': [ 87 'dependencies': [
52 '../base/base.gyp:base', 88 '../base/base.gyp:base',
53 '../base/base.gyp:base_i18n', 89 '../base/base.gyp:base_i18n',
54 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 90 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
55 '../crypto/crypto.gyp:crypto', 91 '../crypto/crypto.gyp:crypto',
56 '../sdch/sdch.gyp:sdch', 92 '../sdch/sdch.gyp:sdch',
57 '../third_party/icu/icu.gyp:icui18n', 93 '../third_party/icu/icu.gyp:icui18n',
58 '../third_party/icu/icu.gyp:icuuc', 94 '../third_party/icu/icu.gyp:icuuc',
59 '../third_party/zlib/zlib.gyp:zlib', 95 '../third_party/zlib/zlib.gyp:zlib',
60 '../url/url.gyp:url_lib', 96 '../url/url.gyp:url_lib',
97 'net_derived_sources',
61 'net_resources', 98 'net_resources',
62 ], 99 ],
63 'sources': [ 100 'sources': [
64 '<@(net_nacl_common_sources)', 101 '<@(net_nacl_common_sources)',
65 '<@(net_non_nacl_sources)', 102 '<@(net_non_nacl_sources)',
66 ], 103 ],
67 'defines': [ 104 'defines': [
68 'NET_IMPLEMENTATION', 105 'NET_IMPLEMENTATION',
69 ], 106 ],
70 'export_dependent_settings': [ 107 'export_dependent_settings': [
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 '../base/base.gyp:base', 519 '../base/base.gyp:base',
483 '../base/base.gyp:base_i18n', 520 '../base/base.gyp:base_i18n',
484 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 521 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
485 '../crypto/crypto.gyp:crypto', 522 '../crypto/crypto.gyp:crypto',
486 '../testing/gmock.gyp:gmock', 523 '../testing/gmock.gyp:gmock',
487 '../testing/gtest.gyp:gtest', 524 '../testing/gtest.gyp:gtest',
488 '../third_party/zlib/zlib.gyp:zlib', 525 '../third_party/zlib/zlib.gyp:zlib',
489 '../url/url.gyp:url_lib', 526 '../url/url.gyp:url_lib',
490 'http_server', 527 'http_server',
491 'net', 528 'net',
492 'net_test_support' 529 'net_derived_sources',
530 'net_test_support',
493 ], 531 ],
494 'sources': [ 532 'sources': [
495 '<@(net_test_sources)', 533 '<@(net_test_sources)',
496 ], 534 ],
497 'conditions': [ 535 'conditions': [
498 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 536 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
499 'dependencies': [ 537 'dependencies': [
500 'balsa', 538 'balsa',
501 'epoll_server', 539 'epoll_server',
502 'flip_in_mem_edsm_server_base', 540 'flip_in_mem_edsm_server_base',
(...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after
1597 'net_unittests.isolate', 1635 'net_unittests.isolate',
1598 ], 1636 ],
1599 'sources': [ 1637 'sources': [
1600 'net_unittests.isolate', 1638 'net_unittests.isolate',
1601 ], 1639 ],
1602 }, 1640 },
1603 ], 1641 ],
1604 }], 1642 }],
1605 ], 1643 ],
1606 } 1644 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698